(3.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)   (0.2ms) select sqlite_version(*)  (1.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePostinoCampaigns (20150318021006)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "postino_campaigns" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar, "from_name" varchar, "from_email" varchar, "reply_email" varchar, "plain_content" text, "html_content" text, "query_string" varchar, "scheduled_at" datetime, "timezone" varchar, "state" varchar, "recipients_count" integer, "sent" boolean, "opens_count" integer, "clicks_count" integer, "parent_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE INDEX "index_postino_campaigns_on_parent_id" ON "postino_campaigns" ("parent_id") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318021006"]]  (2.6ms) commit transaction Migrating to CreatePostinoTemplates (20150318021239)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "postino_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318021239"]]  (1.7ms) commit transaction Migrating to CreatePostinoLists (20150318021424)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "postino_lists" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "state" varchar, "unsubscribe_count" integer, "bounced" integer, "active_count" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318021424"]]  (1.8ms) commit transaction Migrating to CreatePostinoSubscribers (20150318022506)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "postino_subscribers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "state" varchar, "list_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) CREATE INDEX "index_postino_subscribers_on_list_id" ON "postino_subscribers" ("list_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318022506"]]  (1.9ms) commit transaction Migrating to CreatePostinoAttachments (20150318023136)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "postino_attachments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "image" varchar, "content_type" varchar, "size" integer, "name" varchar, "campaign_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE INDEX "index_postino_attachments_on_campaign_id" ON "postino_attachments" ("campaign_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318023136"]]  (1.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  Started GET "/" for 127.0.0.1 at 2015-03-17 23:41:51 -0300 Processing by Rails::WelcomeController#index as HTML Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (64.1ms) Completed 200 OK in 140ms (Views: 140.1ms | ActiveRecord: 0.0ms) Started GET "/campaigns" for 127.0.0.1 at 2015-03-17 23:41:57 -0300 ActionController::RoutingError (No route matches [GET] "/campaigns"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (98.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (50.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (297.2ms) Started GET "/campaigns/campaigns" for 127.0.0.1 at 2015-03-17 23:42:50 -0300 ActionController::RoutingError (No route matches [GET] "/campaigns/campaigns"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (120.8ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-17 23:42:54 -0300 ActionController::RoutingError (uninitialized constant Postino::CampaignsController): activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (47.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (212.7ms) Started GET "/campaigns" for 127.0.0.1 at 2015-03-17 23:43:19 -0300 ActionController::RoutingError (No route matches [GET] "/campaigns"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (59.6ms) Started GET "/campaigns" for 127.0.0.1 at 2015-03-17 23:45:45 -0300 ActionController::RoutingError (No route matches [GET] "/campaigns"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (54.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (25.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (147.2ms) Started GET "/campaigns" for 127.0.0.1 at 2015-03-17 23:47:02 -0300 ActionController::RoutingError (No route matches [GET] "/campaigns"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (65.9ms) Started GET "/campaigns" for 127.0.0.1 at 2015-03-17 23:47:31 -0300 ActionController::RoutingError (No route matches [GET] "/campaigns"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.1ms) Started GET "/campaigns" for 127.0.0.1 at 2015-03-17 23:47:57 -0300 ActionController::RoutingError (No route matches [GET] "/campaigns"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (38.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.1ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-17 23:48:20 -0300 ActionController::RoutingError (uninitialized constant Postino::CampaignsController): activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (118.5ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-17 23:50:30 -0300 AbstractController::ActionNotFound (The action 'index' could not be found for Postino::CampaignsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (4.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-17 23:52:23 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (45.3ms) Completed 200 OK in 239ms (Views: 239.0ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaigns-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-17 23:52:24 -0300 Started GET "/assets/postino/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-03-17 23:52:24 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-17 23:52:24 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-17 23:52:24 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-17 23:52:50 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (0.8ms) Completed 200 OK in 26ms (Views: 25.7ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaigns-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-17 23:52:50 -0300 Started GET "/assets/postino/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-03-17 23:52:50 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-17 23:52:50 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-17 23:52:50 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-17 23:53:43 -0300 ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature: gem 'responders', '~> 2.0' Consult the Rails upgrade guide for details.): actionpack (4.2.0) lib/action_controller/metal/mime_responds.rb:10:in `respond_to' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:6:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:4:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:3:in `' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (16.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (162.6ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-17 23:54:01 -0300 Processing by Postino::CampaignsController#index as HTML Completed 500 Internal Server Error in 2ms NameError (uninitialized constant Postino::CampaignsController::Campaigns): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:9:in `index' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (14.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.2ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-17 23:54:11 -0300 Processing by Postino::CampaignsController#index as HTML Completed 500 Internal Server Error in 1ms NameError (uninitialized constant Postino::Campaigns): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:9:in `index' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-17 23:54:30 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (0.1ms) Completed 200 OK in 170ms (Views: 68.1ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaigns-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-17 23:54:30 -0300 Started GET "/assets/postino/application-4bd47aa5304440469cdae59cbeafed2c.css?body=1" for 127.0.0.1 at 2015-03-17 23:54:30 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-17 23:54:30 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-17 23:54:30 -0300 Started GET "/" for 127.0.0.1 at 2015-03-18 00:12:50 -0300 Processing by Rails::WelcomeController#index as HTML Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (20.0ms) Completed 200 OK in 98ms (Views: 97.8ms | ActiveRecord: 0.0ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 00:12:55 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (0.6ms) Completed 200 OK in 238ms (Views: 92.5ms | ActiveRecord: 0.0ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePostinoCampaignTemplates (20150318034043)  (0.2ms) begin transaction  (0.6ms) CREATE TABLE "postino_campaign_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "template_id" integer, "campaign_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) select sqlite_version(*)  (0.2ms) CREATE INDEX "index_postino_campaign_templates_on_template_id" ON "postino_campaign_templates" ("template_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'  (0.1ms) CREATE INDEX "index_postino_campaign_templates_on_campaign_id" ON "postino_campaign_templates" ("campaign_id") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318034043"]]  (2.6ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddReferenceToCampaign (20150318040633)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "campaigns" ADD "list_id" integer SQLite3::SQLException: no such table: campaigns: ALTER TABLE "campaigns" ADD "list_id" integer  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddReferenceToCampaign (20150318040633)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "campaigns" ADD "list_id" integer SQLite3::SQLException: no such table: campaigns: ALTER TABLE "campaigns" ADD "list_id" integer  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddReferenceToCampaign (20150318040633)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "postino_campaigns" ADD "list_id" integer  (0.1ms) select sqlite_version(*)  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'   (0.2ms) CREATE INDEX "index_postino_campaigns_on_list_id" ON "postino_campaigns" ("list_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318040633"]]  (6.4ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:11:43 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (0.1ms) Completed 200 OK in 37ms (Views: 26.5ms | ActiveRecord: 0.0ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:18:04 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (0.6ms) Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.0ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:19:16 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (0.1ms) Completed 200 OK in 64ms (Views: 63.9ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:19:16 -0300 Started GET "/assets/postino/application-2305b363cd12f92ee813e0493ba6f561.css?body=1" for 127.0.0.1 at 2015-03-18 01:19:16 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:20:36 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.6ms) Completed 200 OK in 118ms (Views: 117.3ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:20:37 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:20:37 -0300 Started GET "/assets/postino/application-2305b363cd12f92ee813e0493ba6f561.css?body=1" for 127.0.0.1 at 2015-03-18 01:20:37 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-18 01:20:37 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:21:31 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.5ms) Completed 200 OK in 27ms (Views: 26.6ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:21:31 -0300 Started GET "/assets/postino/application-2305b363cd12f92ee813e0493ba6f561.css?body=1" for 127.0.0.1 at 2015-03-18 01:21:31 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-18 01:21:31 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:21:31 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:21:56 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 30ms (Views: 29.2ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:21:56 -0300 Started GET "/assets/postino/application-2305b363cd12f92ee813e0493ba6f561.css?body=1" for 127.0.0.1 at 2015-03-18 01:21:56 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:21:56 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-18 01:21:56 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:22:55 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.8ms) Completed 200 OK in 29ms (Views: 28.4ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:22:55 -0300 Started GET "/assets/postino/application-2305b363cd12f92ee813e0493ba6f561.css?body=1" for 127.0.0.1 at 2015-03-18 01:22:55 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-18 01:22:55 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:22:55 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:23:20 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 31ms (Views: 30.8ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:23:20 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:23:20 -0300 Started GET "/assets/postino/application-2305b363cd12f92ee813e0493ba6f561.css?body=1" for 127.0.0.1 at 2015-03-18 01:23:20 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-18 01:23:20 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:24:05 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (4.0ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (34.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 61ms (Views: 56.2ms | ActiveRecord: 4.4ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:24:05 -0300 Started GET "/assets/postino/application-2305b363cd12f92ee813e0493ba6f561.css?body=1" for 127.0.0.1 at 2015-03-18 01:24:05 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:24:05 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-18 01:24:05 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:25:15 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (2.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 34ms (Views: 32.0ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:25:15 -0300 Started GET "/assets/postino/application-2305b363cd12f92ee813e0493ba6f561.css?body=1" for 127.0.0.1 at 2015-03-18 01:25:15 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:25:15 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-18 01:25:15 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:25:30 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (2.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 35ms (Views: 34.1ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:25:30 -0300 Started GET "/assets/postino/application-2305b363cd12f92ee813e0493ba6f561.css?body=1" for 127.0.0.1 at 2015-03-18 01:25:30 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:25:30 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-18 01:25:30 -0300 Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:25:33 -0300 AbstractController::ActionNotFound (The action 'new' could not be found for Postino::CampaignsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.9ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:26:27 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 110ms (Views: 28.7ms | ActiveRecord: 0.9ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:26:27 -0300 Started GET "/assets/postino/application-2305b363cd12f92ee813e0493ba6f561.css?body=1" for 127.0.0.1 at 2015-03-18 01:26:27 -0300 Started GET "/assets/postino/application-9dd4861a92e4f9a660455c3058cf3a14.js?body=1" for 127.0.0.1 at 2015-03-18 01:26:27 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:26:27 -0300 Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:31:41 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 162ms (Views: 80.4ms | ActiveRecord: 0.8ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:31:41 -0300 Started GET "/assets/postino/application-d04b70165d5efc708bf130814581675b.css?body=1" for 127.0.0.1 at 2015-03-18 01:31:41 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:31:41 -0300 Started GET "/assets/postino/application-4b320f9e75328e484b9c911c3d1ec6f9.js?body=1" for 127.0.0.1 at 2015-03-18 01:31:41 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:31:48 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (1.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 103ms (Views: 102.6ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/wizard" for 127.0.0.1 at 2015-03-18 01:32:00 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"wizard"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 0]] Completed 404 Not Found in 25ms ActiveRecord::RecordNotFound (Couldn't find Postino::Campaign with 'id'=wizard): activerecord (4.2.0) lib/active_record/core.rb:154:in `find' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:11:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.8ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:36:59 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 131ms (Views: 97.3ms | ActiveRecord: 1.2ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:37:58 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (5.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 45ms (Views: 44.2ms | ActiveRecord: 0.0ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:39:06 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (3.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 89ms (Views: 88.4ms | ActiveRecord: 0.0ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:39:31 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (4.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 51ms (Views: 50.2ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:39:31 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:39:31 -0300 Started GET "/assets/postino/application-d04b70165d5efc708bf130814581675b.css?body=1" for 127.0.0.1 at 2015-03-18 01:39:31 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:39:31 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:39:31 -0300 Started GET "/assets/postino/application-4b320f9e75328e484b9c911c3d1ec6f9.js?body=1" for 127.0.0.1 at 2015-03-18 01:39:31 -0300 Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:40:06 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (5.1ms) Completed 500 Internal Server Error in 12ms ActionView::Template::Error (undefined method `text_field' for nil:NilClass): 5: 6: <%= form_tag @campaign do |f| %> 7: <%= label_tag(:q, "Search for:") %> 8: <%= f.text_field(:list) %> 9: 10: <%= f.submit("Search") %> 11: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb:8:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_erb__2603428772757861362_70117603064440' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_tag_helper.rb:70:in `form_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb:6:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_erb__2603428772757861362_70117603064440' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.7ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:40:14 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (3.9ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (undefined method `text' for nil:NilClass): 5: 6: <%= form_tag @campaign do |f| %> 7: <%= label_tag(:q, "Search for:") %> 8: <%= f.text(:list) %> 9: 10: <%= f.submit("Search") %> 11: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb:8:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_erb__2603428772757861362_70117586697360' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_tag_helper.rb:70:in `form_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb:6:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_erb__2603428772757861362_70117586697360' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (40.9ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:40:27 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (2.8ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (undefined method `text_field' for nil:NilClass): 5: 6: <%= form_tag @campaign do |f| %> 7: <%= label_tag(:q, "Search for:") %> 8: <%= f.text_field(:list) %> 9: 10: <%= f.submit("Search") %> 11: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb:8:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_erb__2603428772757861362_70117597482800' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_tag_helper.rb:70:in `form_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb:6:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_erb__2603428772757861362_70117597482800' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (18.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.3ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:40:51 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (3.1ms) Completed 500 Internal Server Error in 7ms ActionView::Template::Error (undefined method `text_field' for nil:NilClass): 5: 6: <%= form_tag @campaign do |f| %> 7: 8: <%= f.text_field :name %> 9: 10: <%= f.submit("Search") %> 11: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb:8:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_erb__2603428772757861362_70117602890340' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_tag_helper.rb:70:in `form_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb:6:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_erb__2603428772757861362_70117602890340' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.6ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:41:12 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (113.3ms) Completed 500 Internal Server Error in 117ms ActionView::Template::Error (undefined method `name' for #): 5: 6: <%= form_for @campaign do |f| %> 7: 8: <%= f.text_field :name %> 9: 10: <%= f.submit("Search") %> 11: activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:28:in `public_send' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:28:in `value' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:37:in `value_before_type_cast' actionview (4.2.0) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' actionview (4.2.0) lib/action_view/helpers/tags/text_field.rb:13:in `fetch' actionview (4.2.0) lib/action_view/helpers/tags/text_field.rb:13:in `render' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:787:in `text_field' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1322:in `text_field' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb:8:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_erb__2603428772757861362_70117603691680' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb:6:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_erb__2603428772757861362_70117603691680' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (21.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.5ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:42:52 -0300 Processing by Postino::CampaignsController#new as HTML  (0.1ms) SELECT COUNT(*) FROM "postino_lists" Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (92.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 125ms (Views: 124.3ms | ActiveRecord: 0.6ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:42:53 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:42:53 -0300 Started GET "/assets/postino/application-d04b70165d5efc708bf130814581675b.css?body=1" for 127.0.0.1 at 2015-03-18 01:42:53 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:42:53 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:42:53 -0300 Started GET "/assets/postino/application-4b320f9e75328e484b9c911c3d1ec6f9.js?body=1" for 127.0.0.1 at 2015-03-18 01:42:53 -0300 Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:43:11 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rBJm8wsgT/1q0UYsSu/NiAb9VCVejjAmPyLzJLezEaYjoR+WwrtjLApaxJ/VfY7qwky0tDtrNTil/u3zhbJXNQ==", "commit"=>"Search"} Completed 500 Internal Server Error in 2ms NameError (undefined local variable or method `campaign_params' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:19:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.0ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:45:31 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rBJm8wsgT/1q0UYsSu/NiAb9VCVejjAmPyLzJLezEaYjoR+WwrtjLApaxJ/VfY7qwky0tDtrNTil/u3zhbJXNQ==", "commit"=>"Search"} Completed 400 Bad Request in 8ms ActionController::ParameterMissing (param is missing or the value is empty: campaign): actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:249:in `require' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:30:in `resource_params' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:19:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (51.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (74.8ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:46:07 -0300 Processing by Postino::CampaignsController#new as HTML  (0.1ms) SELECT COUNT(*) FROM "postino_lists" Postino::List Load (0.1ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (14.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 144ms (Views: 49.4ms | ActiveRecord: 1.4ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:46:09 -0300 Processing by Postino::CampaignsController#new as HTML  (0.3ms) SELECT COUNT(*) FROM "postino_lists" Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (5.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 89ms (Views: 88.4ms | ActiveRecord: 0.5ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:46:23 -0300 Processing by Postino::CampaignsController#new as HTML  (0.2ms) SELECT COUNT(*) FROM "postino_lists" Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (5.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 39ms (Views: 38.3ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:46:23 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:46:23 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:46:23 -0300 Started GET "/assets/postino/application-d04b70165d5efc708bf130814581675b.css?body=1" for 127.0.0.1 at 2015-03-18 01:46:23 -0300 Started GET "/assets/postino/application-4b320f9e75328e484b9c911c3d1ec6f9.js?body=1" for 127.0.0.1 at 2015-03-18 01:46:23 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:46:23 -0300 Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:46:25 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"rE8BVf6YPTm5/HOBNNWWqb+cD/JHRstA5M+D8fxLYlgj/HgwNwMR6Nl38TKrR9XLey3vYyKjzl5+E50mzkokyw==", "commit"=>"Create Campaign"} Completed 400 Bad Request in 0ms ActionController::ParameterMissing (param is missing or the value is empty: campaign): actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:249:in `require' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:30:in `resource_params' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:19:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (35.7ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:46:53 -0300 Processing by Postino::CampaignsController#new as HTML  (0.2ms) SELECT COUNT(*) FROM "postino_lists" Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (5.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 41ms (Views: 40.4ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:46:53 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:46:53 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:46:53 -0300 Started GET "/assets/postino/application-d04b70165d5efc708bf130814581675b.css?body=1" for 127.0.0.1 at 2015-03-18 01:46:53 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:46:53 -0300 Started GET "/assets/postino/application-4b320f9e75328e484b9c911c3d1ec6f9.js?body=1" for 127.0.0.1 at 2015-03-18 01:46:53 -0300 Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:46:54 -0300 Processing by Postino::CampaignsController#new as HTML  (0.2ms) SELECT COUNT(*) FROM "postino_lists" Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (59.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 91ms (Views: 90.3ms | ActiveRecord: 0.4ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 01:46:58 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"68lDG+utGMZaGLEffgjf3GgxADaeTXqAMRX/ko1t8ERkejp+IjY0FzqTM6zhmpy+rIDgp/uof56ryeFFv2y21w==", "commit"=>"Create Campaign"} Completed 400 Bad Request in 0ms ActionController::ParameterMissing (param is missing or the value is empty: campaign): actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:249:in `require' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:30:in `resource_params' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:19:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.3ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:47:24 -0300 Processing by Postino::CampaignsController#new as HTML  (0.2ms) SELECT COUNT(*) FROM "postino_lists" Postino::List Load (0.1ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (61.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.1ms) Completed 200 OK in 139ms (Views: 137.8ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 01:48:20 -0300 Processing by Postino::CampaignsController#new as HTML  (0.2ms) SELECT COUNT(*) FROM "postino_lists" Postino::List Load (0.1ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (4.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (1.3ms) Completed 200 OK in 40ms (Views: 39.1ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:48:20 -0300 Started GET "/assets/postino/application-d04b70165d5efc708bf130814581675b.css?body=1" for 127.0.0.1 at 2015-03-18 01:48:20 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:48:20 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:48:20 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:48:20 -0300 Started GET "/assets/postino/application-4b320f9e75328e484b9c911c3d1ec6f9.js?body=1" for 127.0.0.1 at 2015-03-18 01:48:20 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:48:22 -0300 ActionController::RoutingError (uninitialized constant Postino::ListsController): activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (17.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (156.5ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:49:39 -0300 Processing by Postino::ListsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.4ms) Completed 200 OK in 194ms (Views: 194.0ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:49:39 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:49:39 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:49:39 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:49:39 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:49:39 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:49:40 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:49:40 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:49:40 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:50:19 -0300 Processing by Postino::ListsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.2ms) Completed 200 OK in 45ms (Views: 44.5ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:50:19 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:50:19 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:50:19 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:50:19 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:50:19 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:50:19 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:50:19 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:50:19 -0300 Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-18 01:50:21 -0300 Processing by Postino::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb within layouts/postino/application (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.4ms) Completed 200 OK in 103ms (Views: 102.2ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:50:22 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:50:22 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:50:22 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:50:22 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:50:22 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:50:22 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:50:22 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:50:22 -0300 Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-18 01:51:36 -0300 Processing by Postino::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb within layouts/postino/application (1.6ms) Completed 500 Internal Server Error in 7ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb:9: syntax error, unexpected keyword_end '.freeze;@output_buffer.append=( end );@output_buffer.to_s ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb:10: syntax error, unexpected keyword_ensure, expecting ')' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb:12: syntax error, unexpected keyword_end, expecting ')'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb:9: syntax error, unexpected keyword_end '.freeze;@output_buffer.append=( end );@output_buffer.to_s ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb:10: syntax error, unexpected keyword_ensure, expecting ')' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb:12: syntax error, unexpected keyword_end, expecting ')' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (19.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.2ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-18 01:51:46 -0300 Processing by Postino::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb within layouts/postino/application (3.0ms) Completed 500 Internal Server Error in 7ms ActionView::Template::Error (First argument in form cannot contain nil or be empty): 1:

new list

2: 3: 4: <% form_for @list do |f| %> 5: 6: <%= f.text_field :name %> 7: <%= f.submit "crear" %> actionview (4.2.0) lib/action_view/helpers/form_helper.rb:432:in `form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb:4:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_lists_new_erb__3681386261551632486_70117597100800' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (18.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (41.5ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-18 01:53:33 -0300 Processing by Postino::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb within layouts/postino/application (3.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.2ms) Completed 200 OK in 120ms (Views: 104.2ms | ActiveRecord: 0.9ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:53:33 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:53:33 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:53:33 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:53:33 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:53:33 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:53:33 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:53:33 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:53:33 -0300 Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-18 01:53:46 -0300 Processing by Postino::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/new.erb within layouts/postino/application (3.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.5ms) Completed 200 OK in 103ms (Views: 102.0ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:53:46 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:53:46 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:53:46 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:53:46 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:53:46 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:53:46 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:53:46 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:53:46 -0300 Started POST "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:53:50 -0300 Processing by Postino::ListsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"w1YjbLOBM0zqDwIQrecSpxt50rndzAb624Q3BYqcDClM5VoJehofnYqEgKMydVHF38gyKLgpA+RBWCnSuJ1Kug==", "list"=>{"name"=>"joij"}, "commit"=>"crear"}  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_lists" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "joij"], ["created_at", "2015-03-18 04:53:50.877301"], ["updated_at", "2015-03-18 04:53:50.877301"]]  (22.8ms) commit transaction Completed 500 Internal Server Error in 32ms ActionView::MissingTemplate (Missing template postino/lists/create, postino/application/create with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (39.4ms) Started POST "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:54:20 -0300 Processing by Postino::ListsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"w1YjbLOBM0zqDwIQrecSpxt50rndzAb624Q3BYqcDClM5VoJehofnYqEgKMydVHF38gyKLgpA+RBWCnSuJ1Kug==", "list"=>{"name"=>"joij"}, "commit"=>"crear"}  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_lists" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "joij"], ["created_at", "2015-03-18 04:54:21.136208"], ["updated_at", "2015-03-18 04:54:21.136208"]]  (6.1ms) commit transaction Redirected to http://localhost:3000/postino/manage/lists Completed 302 Found in 29ms (ActiveRecord: 7.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:54:21 -0300 Processing by Postino::ListsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.4ms) Completed 200 OK in 104ms (Views: 103.2ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:54:21 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:54:21 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:54:21 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:54:21 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:54:21 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:54:21 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:54:21 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:54:21 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:54:56 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (12.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.4ms) Completed 200 OK in 62ms (Views: 56.0ms | ActiveRecord: 1.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:54:56 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:54:56 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:54:56 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:54:56 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:54:56 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:54:56 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:54:56 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:54:56 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:55:08 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (3.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.2ms) Completed 200 OK in 44ms (Views: 43.4ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:08 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:08 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:08 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:08 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:08 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:08 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:08 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:08 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:55:27 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (3.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.3ms) Completed 200 OK in 50ms (Views: 48.9ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:27 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:27 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:27 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:28 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:28 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:28 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:28 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:28 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:55:38 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (3.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.3ms) Completed 200 OK in 108ms (Views: 106.9ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:39 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:39 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:39 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:39 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:39 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:39 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:39 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:39 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:55:49 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (4.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.3ms) Completed 200 OK in 50ms (Views: 48.8ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:50 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:50 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:50 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:55:50 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:50 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:50 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:50 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:55:50 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:56:22 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (5.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.3ms) Completed 200 OK in 49ms (Views: 47.8ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:56:22 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:56:22 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:56:22 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:56:22 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:56:22 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:56:22 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:56:22 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:56:22 -0300 Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-18 01:56:24 -0300 AbstractController::ActionNotFound (The action 'edit' could not be found for Postino::ListsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (1.0ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-18 01:57:19 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 23ms ActionView::MissingTemplate (Missing template postino/lists/edit, postino/application/edit with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (40.8ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-18 01:58:16 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.erb (4.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.erb within layouts/postino/application (7.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.3ms) Completed 200 OK in 51ms (Views: 49.5ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:58:16 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:58:16 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 01:58:16 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:58:16 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:58:16 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:58:16 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:58:16 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:58:16 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:59:24 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (2.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.4ms) Completed 200 OK in 100ms (Views: 99.3ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:59:24 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 01:59:24 -0300 Started GET "/assets/postino/application-fd402983db8f159f29ae614eba3ab2f5.css?body=1" for 127.0.0.1 at 2015-03-18 01:59:24 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:59:24 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:59:24 -0300 Started GET "/assets/postino/application-2a4f82d5560725cd43ac251a8f926e7e.js?body=1" for 127.0.0.1 at 2015-03-18 01:59:24 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 01:59:24 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:59:27 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (3.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.4ms) Completed 200 OK in 52ms (Views: 51.4ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 01:59:57 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (3.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (14.5ms) Completed 500 Internal Server Error in 70ms ActionView::Template::Error (undefined local variable or method `templates_path' for #<#:0x007f8b0d8b4c60>): 2: 7: /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb:5:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_shared__main_nav_erb__2584102208660626156_70117597481480' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.erb:47:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_erb___4117505235309087903_70117603240380' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (60.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (88.8ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 02:00:24 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (15.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.9ms) Completed 200 OK in 188ms (Views: 182.7ms | ActiveRecord: 1.0ms) Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:00:25 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:00:25 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:00:25 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:00:25 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-18 02:00:26 -0300 AbstractController::ActionNotFound (The action 'index' could not be found for Postino::TemplatesController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.6ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-18 02:02:43 -0300 Processing by Postino::TemplatesController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.erb within layouts/postino/application (2.6ms) Completed 500 Internal Server Error in 9ms ActionView::Template::Error (undefined method `each' for nil:NilClass): 6: 7:
8: 9: <% @templates.each do |template| %> 10: 11:
12: Generic placeholder thumbnail /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.erb:9:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_templates_index_erb___743813837236504536_70117584788980' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (41.8ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-18 02:03:16 -0300 Processing by Postino::TemplatesController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.erb within layouts/postino/application (14.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.6ms) Completed 200 OK in 141ms (Views: 135.9ms | ActiveRecord: 0.8ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:03:16 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:03:16 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:03:17 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:03:17 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:03:17 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:03:17 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:03:17 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:03:17 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:03:17 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:03:17 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-18 02:03:46 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.erb within layouts/postino/application (2.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.4ms) Completed 200 OK in 58ms (Views: 52.4ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:03:47 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:03:47 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:03:47 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:03:47 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:03:47 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:03:47 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:03:47 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:03:47 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:03:47 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:03:47 -0300 Started GET "/postino/manage/templates/new" for 127.0.0.1 at 2015-03-18 02:03:49 -0300 Processing by Postino::TemplatesController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/_form.erb (44.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/new.erb within layouts/postino/application (47.0ms) Completed 500 Internal Server Error in 117ms ActionView::Template::Error (undefined method `html_content' for #): 2: <%= form_for @template do |f| %> 3: 4: <%= f.text_field :name %> 5: <%= f.text_area :html_content %> 6: <%= f.submit "crear" %> 7: 8: <% end %> activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:28:in `public_send' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:28:in `value' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:37:in `value_before_type_cast' actionview (4.2.0) lib/action_view/helpers/tags/text_area.rb:17:in `block in render' actionview (4.2.0) lib/action_view/helpers/tags/text_area.rb:17:in `delete' actionview (4.2.0) lib/action_view/helpers/tags/text_area.rb:17:in `render' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:886:in `text_area' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1322:in `text_area' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/_form.erb:5:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_templates__form_erb__2352648177053485358_70117603845980' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/_form.erb:2:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_templates__form_erb__2352648177053485358_70117603845980' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/new.erb:3:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_templates_new_erb___3269304034238410563_70117604147540' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (76.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (99.6ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-18 02:05:20 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.erb within layouts/postino/application (1.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.5ms) Completed 200 OK in 57ms (Views: 55.9ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:05:20 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:05:20 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:05:20 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:05:20 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:05:20 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-18 02:05:22 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.erb within layouts/postino/application (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.6ms) Completed 200 OK in 68ms (Views: 67.0ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 02:05:25 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (13.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.7ms) Completed 200 OK in 174ms (Views: 166.0ms | ActiveRecord: 0.5ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-18 02:05:27 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.erb (2.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.erb within layouts/postino/application (4.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.5ms) Completed 200 OK in 75ms (Views: 72.9ms | ActiveRecord: 0.4ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 02:06:16 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (2.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.9ms) Completed 200 OK in 57ms (Views: 56.4ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:06:17 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (3.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.6ms) Completed 200 OK in 66ms (Views: 58.7ms | ActiveRecord: 0.7ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 02:06:19 -0300 Processing by Postino::CampaignsController#new as HTML  (0.2ms) SELECT COUNT(*) FROM "postino_lists" Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" ORDER BY "postino_lists"."id" ASC LIMIT 1 Postino::List Load (0.1ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (6.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.5ms) Completed 200 OK in 86ms (Views: 61.3ms | ActiveRecord: 0.8ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Processing by Postino::CampaignsController#new as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (4.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.7ms) Completed 200 OK in 55ms (Views: 53.9ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:07:12 -0300 Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Processing by Postino::CampaignsController#new as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (6.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.5ms) Completed 200 OK in 67ms (Views: 66.1ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:07:24 -0300 Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:07:27 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"DM5ICiQb76TciHh15NlLd5Nopzm+dqqzZv6HbANck4ODfTFv7YDDdbwD+sZ7SwgVV9lHqNuTr638Ipm7MV3VEA==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 102ms NoMethodError (undefined method `campaigns_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:20:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.4ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:09:57 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"DM5ICiQb76TciHh15NlLd5Nopzm+dqqzZv6HbANck4ODfTFv7YDDdbwD+sZ7SwgVV9lHqNuTr638Ipm7MV3VEA==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 83ms NoMethodError (undefined method `campaigns_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:20:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (1.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.6ms) Completed 200 OK in 68ms (Views: 67.4ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:10:03 -0300 Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 02:10:06 -0300 Processing by Postino::CampaignsController#new as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.5ms) Completed 200 OK in 72ms (Views: 71.1ms | ActiveRecord: 0.7ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:10:08 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"qeLnKGU28HvyAWgMlQYcnbU6K/I2VFhZ5FQXxn+08VwmUZ5NrK3cqpKK6r8KlF//cYvLY1OxXUd+iAkRTbW3zw==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.1ms) begin transaction  (0.2ms) rollback transaction Completed 500 Internal Server Error in 12ms NoMethodError (undefined method `campaigns_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:20:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.7ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 02:10:11 -0300 Processing by Postino::CampaignsController#new as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (5.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.7ms) Completed 200 OK in 99ms (Views: 98.2ms | ActiveRecord: 0.4ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:10:23 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"EBN5M4jC8jQO8Xi2DP5znbyMSmjcMID7AiAWuMPgQDmfoABWQVne5W56+gWTbDD/eD2q+bnVheWY/Ahv8eEGqg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 66485ms NoMethodError (undefined method `campaigns_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:21:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (57.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (81.8ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:12:02 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"EBN5M4jC8jQO8Xi2DP5znbyMSmjcMID7AiAWuMPgQDmfoABWQVne5W56+gWTbDD/eD2q+bnVheWY/Ahv8eEGqg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.2ms) begin transaction  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 8799ms NoMethodError (undefined method `campaigns_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:21:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.2ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:12:36 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (24.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.erb within layouts/postino/application (61.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (1.0ms) Completed 200 OK in 408ms (Views: 254.6ms | ActiveRecord: 24.8ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 02:12:39 -0300 Processing by Postino::CampaignsController#new as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.erb within layouts/postino/application (151.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.5ms) Completed 200 OK in 231ms (Views: 203.3ms | ActiveRecord: 1.1ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:12:40 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"55U1UT3iJUc26xBveg6P6xCEduaHuyhlvK2fpF/KgrloJkw09HkJllZgktzlnMyJ1DWWd+JeLXsmcYFzbcvEKg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.2ms) begin transaction  (0.1ms) rollback transaction  (0.2ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 107137ms NoMethodError (undefined method `campaigns_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:21:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.5ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:14:30 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"55U1UT3iJUc26xBveg6P6xCEduaHuyhlvK2fpF/KgrloJkw09HkJllZgktzlnMyJ1DWWd+JeLXsmcYFzbcvEKg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 146024ms NoMethodError (undefined method `campaigns_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:21:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (52.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (79.1ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:16:57 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"55U1UT3iJUc26xBveg6P6xCEduaHuyhlvK2fpF/KgrloJkw09HkJllZgktzlnMyJ1DWWd+JeLXsmcYFzbcvEKg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 1577ms NoMethodError (undefined method `campaigns_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:24:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.4ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:18:13 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"55U1UT3iJUc26xBveg6P6xCEduaHuyhlvK2fpF/KgrloJkw09HkJllZgktzlnMyJ1DWWd+JeLXsmcYFzbcvEKg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_campaigns" ("list_id", "created_at", "updated_at") VALUES (?, ?, ?) [["list_id", 1], ["created_at", "2015-03-18 05:18:13.422035"], ["updated_at", "2015-03-18 05:18:13.422035"]]  (2.5ms) commit transaction Completed 500 Internal Server Error in 42628ms NoMethodError (undefined method `campaigns_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:27:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.2ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:18:58 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"55U1UT3iJUc26xBveg6P6xCEduaHuyhlvK2fpF/KgrloJkw09HkJllZgktzlnMyJ1DWWd+JeLXsmcYFzbcvEKg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.2ms) begin transaction SQL (0.6ms) INSERT INTO "postino_campaigns" ("list_id", "created_at", "updated_at") VALUES (?, ?, ?) [["list_id", 1], ["created_at", "2015-03-18 05:18:58.999583"], ["updated_at", "2015-03-18 05:18:58.999583"]]  (6.0ms) commit transaction Completed 500 Internal Server Error in 34652ms NoMethodError (undefined method `campaigns_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:27:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (89.4ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:22:03 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"55U1UT3iJUc26xBveg6P6xCEduaHuyhlvK2fpF/KgrloJkw09HkJllZgktzlnMyJ1DWWd+JeLXsmcYFzbcvEKg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "postino_campaigns" ("list_id", "created_at", "updated_at") VALUES (?, ?, ?) [["list_id", 1], ["created_at", "2015-03-18 05:22:03.925852"], ["updated_at", "2015-03-18 05:22:03.925852"]]  (6.0ms) commit transaction Redirected to http://localhost:3000/postino/campaign_wizard/3 Completed 302 Found in 10563ms (ActiveRecord: 7.7ms) Started GET "/postino/campaign_wizard/3" for 127.0.0.1 at 2015-03-18 02:22:14 -0300 ActionController::RoutingError (uninitialized constant Postino::Campaign::WizardController): activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (86.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (237.3ms) Started GET "/postino/campaign_wizard/3" for 127.0.0.1 at 2015-03-18 02:22:15 -0300 ActionController::RoutingError (uninitialized constant Postino::Campaign::WizardController): activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (135.2ms) Started GET "/postino/campaign_wizard/3" for 127.0.0.1 at 2015-03-18 02:22:49 -0300 ActionController::RoutingError (uninitialized constant Postino::CampaignWizardController::Wicked): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:6:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:4:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:3:in `' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (174.0ms) Started GET "/postino/campaign_wizard/3" for 127.0.0.1 at 2015-03-18 02:23:02 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"id"=>"3"} Completed 500 Internal Server Error in 0ms Wicked::Wizard::InvalidStepError (The requested step did not match any steps defined for this controller.): wicked (1.1.1) lib/wicked/wizard.rb:58:in `setup_step_from' wicked (1.1.1) lib/wicked/wizard.rb:75:in `setup_wizard' activesupport (4.2.0) lib/active_support/callbacks.rb:427:in `block in make_lambda' activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (33.5ms) Started GET "/postino/campaign_wizard/3/setup" for 127.0.0.1 at 2015-03-18 02:23:39 -0300 ActionController::RoutingError (No route matches [GET] "/postino/campaign_wizard/3/setup"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (85.6ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:24:21 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Completed 500 Internal Server Error in 86ms ActionView::MissingTemplate (Missing template postino/campaign_wizard/setup, postino/application/setup with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (57.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (80.7ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb within layouts/postino/application (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.6ms) Completed 200 OK in 129ms (Views: 127.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:24:52 -0300 Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb within layouts/postino/application (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.6ms) Completed 200 OK in 112ms (Views: 110.7ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:25:41 -0300 Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:27:36 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb within layouts/postino/application (3.9ms) Completed 500 Internal Server Error in 9ms ActionView::Template::Error (Missing partial postino/campaign_wizard/_wizard_steps, postino/application/_wizard_steps with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): 1:

setup

2: <%= render partial: "wizard_steps" %> actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb:2:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_setup_erb___982052173339914008_70302214960040' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (45.4ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:28:28 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb within layouts/postino/application (20.1ms) Completed 500 Internal Server Error in 249ms ActionView::Template::Error (Missing partial postino/campaign_wizard/_wizard_steps, postino/application/_wizard_steps with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): 1:

setup

2: <%= render partial: "wizard_steps" %> actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb:2:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_setup_erb__2897393682692692565_70341775348100' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (18.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (26.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (68.6ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:28:31 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb within layouts/postino/application (3.1ms) Completed 500 Internal Server Error in 8ms ActionView::Template::Error (Missing partial postino/campaign_wizard/_wizard_steps, postino/application/_wizard_steps with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): 1:

setup

2: <%= render partial: "wizard_steps" %> actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb:2:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_setup_erb__2897393682692692565_70341775348100' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (21.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (97.0ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:30:40 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (15.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb within layouts/postino/application (27.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (1.3ms) Completed 200 OK in 433ms (Views: 221.0ms | ActiveRecord: 4.8ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:30:41 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:30:41 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:30:41 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:30:41 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:30:41 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:30:41 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:30:41 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:30:41 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:30:41 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:30:41 -0300 Started GET "/postino/campaigns/3/wizard/template" for 127.0.0.1 at 2015-03-18 02:30:53 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (8.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.erb within layouts/postino/application (10.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.5ms) Completed 200 OK in 65ms (Views: 63.1ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:30:55 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (7.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb within layouts/postino/application (9.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.5ms) Completed 200 OK in 129ms (Views: 127.6ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/3/wizard/list" for 127.0.0.1 at 2015-03-18 02:30:56 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Completed 500 Internal Server Error in 15ms ActionView::MissingTemplate (Missing template postino/campaign_wizard/list, postino/application/list with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (42.4ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:31:00 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.erb within layouts/postino/application (7.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.erb (0.6ms) Completed 200 OK in 120ms (Views: 118.6ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:35:20 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (7.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (11.8ms) Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:35:35 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (7.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (10.0ms) Completed 200 OK in 16ms (Views: 14.4ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:36:01 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (16.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (31.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (7.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (3.4ms) Completed 200 OK in 460ms (Views: 245.6ms | ActiveRecord: 4.5ms) Started GET "/postino/campaigns/3/wizard/setup" for 127.0.0.1 at 2015-03-18 02:36:05 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (8.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 73ms (Views: 70.4ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/3/wizard/template" for 127.0.0.1 at 2015-03-18 02:36:06 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (10.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 130ms (Views: 128.0ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/3/wizard/design" for 127.0.0.1 at 2015-03-18 02:36:08 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (8.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/design.haml within layouts/postino/application (11.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 124ms (Views: 122.2ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/3/wizard/list" for 127.0.0.1 at 2015-03-18 02:36:09 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"3", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/list.haml within layouts/postino/application (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 57ms (Views: 54.8ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 02:37:53 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (37.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 153ms (Views: 147.5ms | ActiveRecord: 0.7ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:37:55 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (16.7ms) Completed 500 Internal Server Error in 23ms ActionView::Template::Error (undefined method `name' for #): 4: - @campaigns.each do |campaign| 5: .col-xs-6.col-sm-3.placeholder 6: %img.img-responsive{:alt => "Generic placeholder thumbnail", "data-src" => "holder.js/200x200/auto/sky"}/ 7: %h4= campaign.name 8: %span.text-muted= campaign.state activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:7:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_index_haml___1380353686077595581_70238467763840' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:4:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_index_haml___1380353686077595581_70238467763840' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (18.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.1ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (54.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 167ms (Views: 166.1ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:38:31 -0300 Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 02:38:41 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml within layouts/postino/application (2.5ms) Completed 500 Internal Server Error in 9ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml:4: syntax error, unexpected ')' ));}\n", 0, false); #= f.text_field :name ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml:6: syntax error, unexpected ')', expecting keyword_end ));}\n #{_hamlout.format_scri... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml:7: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml:7: syntax error, unexpected $end, expecting keyword_end): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml:4: syntax error, unexpected ')' ));}\n", 0, false); #= f.text_field :name ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml:6: syntax error, unexpected ')', expecting keyword_end ));}\n #{_hamlout.format_scri... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml:7: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml:7: syntax error, unexpected $end, expecting keyword_end actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.7ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Processing by Postino::CampaignsController#new as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml within layouts/postino/application (131.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 186ms (Views: 185.3ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:38:53 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 02:40:52 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (3.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 59ms (Views: 57.9ms | ActiveRecord: 0.4ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-18 02:40:53 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (6.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Completed 200 OK in 124ms (Views: 61.4ms | ActiveRecord: 0.4ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 02:40:54 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.erb within layouts/postino/application (2.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 58ms (Views: 57.3ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:40:55 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (2.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 130ms (Views: 129.4ms | ActiveRecord: 0.4ms) Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-18 02:41:00 -0300 Processing by Postino::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml within layouts/postino/application (4.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 59ms (Views: 57.9ms | ActiveRecord: 0.3ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:43:43 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ADw51qOSb+ulFmLmGQU10Lacb1azKXDMwUQ9nu0njl2Pj0CzaglDOsWd4FWGl3ayci2Px9bMddJbmCNJ3ybIzg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_campaigns" ("list_id", "created_at", "updated_at") VALUES (?, ?, ?) [["list_id", 1], ["created_at", "2015-03-18 05:43:43.388005"], ["updated_at", "2015-03-18 05:43:43.388005"]]  (2.9ms) commit transaction Completed 500 Internal Server Error in 8921ms ActionController::UrlGenerationError (No route matches {:action=>"show", :campaign_id=>#, :controller=>"postino/campaign_wizard", :format=>nil, :id=>nil} missing required keys: [:id]): actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:27:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (14.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.5ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:44:10 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ADw51qOSb+ulFmLmGQU10Lacb1azKXDMwUQ9nu0njl2Pj0CzaglDOsWd4FWGl3ayci2Px9bMddJbmCNJ3ybIzg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_campaigns" ("list_id", "created_at", "updated_at") VALUES (?, ?, ?) [["list_id", 1], ["created_at", "2015-03-18 05:44:10.603159"], ["updated_at", "2015-03-18 05:44:10.603159"]]  (6.2ms) commit transaction Completed 500 Internal Server Error in 87823ms ActionController::UrlGenerationError (No route matches {:action=>"show", :campaign_id=>#, :controller=>"postino/campaign_wizard", :format=>nil, :id=>nil} missing required keys: [:id]): actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:27:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (18.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.4ms) Started POST "/postino/campaigns" for 127.0.0.1 at 2015-03-18 02:45:38 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ADw51qOSb+ulFmLmGQU10Lacb1azKXDMwUQ9nu0njl2Pj0CzaglDOsWd4FWGl3ayci2Px9bMddJbmCNJ3ybIzg==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_campaigns" ("list_id", "created_at", "updated_at") VALUES (?, ?, ?) [["list_id", 1], ["created_at", "2015-03-18 05:45:38.963123"], ["updated_at", "2015-03-18 05:45:38.963123"]]  (6.0ms) commit transaction Redirected to http://localhost:3000/postino/campaigns/6/wizard/setup Completed 302 Found in 48ms (ActiveRecord: 7.8ms) Started GET "/postino/campaigns/6/wizard/setup" for 127.0.0.1 at 2015-03-18 02:45:38 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"6", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 6]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (9.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (10.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 70ms (Views: 67.3ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:45:39 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:45:39 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:45:39 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:45:39 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:45:39 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:45:39 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:45:39 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:45:39 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:45:39 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:45:39 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddHtmlContentToTemplate (20150318054713)  (0.1ms) begin transaction  (0.3ms) ALTER TABLE "templates" ADD "html_content" text SQLite3::SQLException: no such table: templates: ALTER TABLE "templates" ADD "html_content" text  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddHtmlContentToTemplate (20150318054713)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "postino_templates" ADD "html_content" text SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318054713"]]  (1.9ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddHtmlContentToTemplate (20150318054713)  (0.1ms) begin transaction  (1.7ms) CREATE TEMPORARY TABLE "apostino_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "html_content" text)  (0.1ms) SELECT * FROM "postino_templates"  (0.6ms) DROP TABLE "postino_templates"  (0.2ms) CREATE TABLE "postino_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "html_content" text)   (0.1ms) SELECT * FROM "apostino_templates"  (0.4ms) DROP TABLE "apostino_templates"  (0.2ms) CREATE TEMPORARY TABLE "apostino_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "html_content" text)  (0.1ms) SELECT * FROM "postino_templates"  (0.4ms) DROP TABLE "postino_templates"  (0.2ms) CREATE TABLE "postino_templates" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT * FROM "apostino_templates"  (0.1ms) DROP TABLE "apostino_templates" SQL (0.4ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20150318054713"]]  (3.0ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'   (0.3ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddHtmlContentToTemplate (20150318054713)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "postino_templates" ADD "html_content" text  (0.2ms) ALTER TABLE "postino_templates" ADD "screenshot" varchar SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318054713"]]  (2.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  Started GET "/postino/campaigns/6/wizard/setup" for 127.0.0.1 at 2015-03-18 02:49:00 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"6", "id"=>"setup"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 6]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (61.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (63.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Completed 200 OK in 160ms (Views: 118.9ms | ActiveRecord: 2.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:49:01 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 02:49:01 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:49:01 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 02:49:01 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 02:49:01 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:49:01 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:49:01 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:49:01 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 02:49:01 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 02:49:01 -0300 Started GET "/postino/campaigns/6/wizard/list" for ::1 at 2015-03-18 19:20:41 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"6", "id"=>"list"} Postino::Campaign Load (11.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 6]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/list.haml within layouts/postino/application (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (6.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (3.4ms) Completed 200 OK in 897ms (Views: 580.3ms | ActiveRecord: 16.1ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:20:43 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:20:43 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:20:43 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for ::1 at 2015-03-18 19:20:43 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:20:43 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:20:43 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:20:43 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:20:43 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:20:43 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for ::1 at 2015-03-18 19:20:43 -0300 Started GET "/postino/campaigns" for ::1 at 2015-03-18 19:21:58 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (30.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 149ms (Views: 148.5ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/new" for ::1 at 2015-03-18 19:22:00 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml within layouts/postino/application (55.7ms) Completed 500 Internal Server Error in 61ms ActionView::Template::Error (undefined method `simple_form_for' for #<#:0x007fe00a575a70>): 1: %h1.page-header New Campaigns 2: .row.placeholders 3: = simple_form_for @campaign do |f| 4: 5: = f.input :list_id, as: :select , collection: Postino::List.all 6: = f.submit "Create Campaign" /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml:3:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_haml__617889748181991540_70300106669620' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.1ms) Started GET "/postino/campaigns/new" for ::1 at 2015-03-18 19:22:28 -0300 Processing by Postino::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml within layouts/postino/application (12.0ms) Completed 500 Internal Server Error in 17ms ActionView::Template::Error (undefined method `simple_form_for' for #<#:0x007fe00a721810>): 1: %h1.page-header New Campaigns 2: .row.placeholders 3: = simple_form_for @campaign do |f| 4: 5: = f.input :list_id, as: :select , collection: Postino::List.all 6: = f.submit "Create Campaign" /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml:3:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_new_haml__617889748181991540_70300106669620' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.0ms) Started GET "/postino/campaigns/new" for ::1 at 2015-03-18 19:23:10 -0300 Processing by Postino::CampaignsController#new as HTML Postino::List Load (12.0ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml within layouts/postino/application (548.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (5.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (3.2ms) Completed 200 OK in 926ms (Views: 721.4ms | ActiveRecord: 17.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:23:11 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:23:11 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:23:11 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:23:11 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for ::1 at 2015-03-18 19:23:11 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:11 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:11 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:11 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:11 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for ::1 at 2015-03-18 19:23:11 -0300 Started POST "/postino/campaigns" for ::1 at 2015-03-18 19:23:20 -0300 Processing by Postino::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"xidpTqLKM3VF8WBt1wOfjogj32qj0Q5S9S6Rqev/KJZJlBAra1EfpCV64t5IkdzsTJI/+8Y0C0xv8o9+2f5uBQ==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.2ms) begin transaction SQL (13.6ms) INSERT INTO "postino_campaigns" ("list_id", "created_at", "updated_at") VALUES (?, ?, ?) [["list_id", 1], ["created_at", "2015-03-18 22:23:20.608133"], ["updated_at", "2015-03-18 22:23:20.608133"]]  (2.2ms) commit transaction Redirected to http://localhost:3000/postino/campaigns/7/wizard/setup Completed 302 Found in 86ms (ActiveRecord: 16.0ms) Started GET "/postino/campaigns/7/wizard/setup" for ::1 at 2015-03-18 19:23:20 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"7", "id"=>"setup"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 7]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (11.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 156ms (Views: 138.8ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:23:20 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:23:20 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:23:21 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:23:21 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for ::1 at 2015-03-18 19:23:21 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:21 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:21 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:21 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:21 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for ::1 at 2015-03-18 19:23:21 -0300 Started GET "/postino/campaigns/7/wizard/list" for ::1 at 2015-03-18 19:23:23 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"7", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 7]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/list.haml within layouts/postino/application (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 59ms (Views: 57.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:23:23 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:23:23 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:23:23 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:23:23 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for ::1 at 2015-03-18 19:23:23 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:23 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:23 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:23 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:23:23 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for ::1 at 2015-03-18 19:23:23 -0300 Started GET "/postino/manage/lists" for ::1 at 2015-03-18 19:25:10 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (5.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 65ms (Views: 64.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:25:10 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:25:10 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:25:10 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for ::1 at 2015-03-18 19:25:10 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:25:10 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:25:10 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:25:10 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:25:10 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:25:10 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for ::1 at 2015-03-18 19:25:10 -0300 Started GET "/postino/manage/lists/1/edit" for ::1 at 2015-03-18 19:25:12 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (47.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (51.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 108ms (Views: 105.4ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:25:12 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:25:12 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:25:12 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:25:12 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:25:12 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for ::1 at 2015-03-18 19:25:12 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:25:12 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:25:12 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:25:12 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for ::1 at 2015-03-18 19:25:12 -0300 Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-18 19:27:40 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (6.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (8.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 63ms (Views: 61.4ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 19:27:40 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 19:27:40 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 19:27:41 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 19:27:41 -0300 Started GET "/assets/postino/application-d4e1118046870994685ef48927bacfca.css?body=1" for 127.0.0.1 at 2015-03-18 19:27:41 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 19:27:41 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 19:27:41 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 19:27:41 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 19:27:41 -0300 Started GET "/assets/postino/application-84a4a7c9012c0b9bd2c3f3d2797dc5a6.js?body=1" for 127.0.0.1 at 2015-03-18 19:27:41 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 19:27:44 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (3.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 61ms (Views: 60.1ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 19:27:44 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 19:29:27 -0300 ActionController::RoutingError (No route matches [GET] "/postino/manage/lists"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (88.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (160.7ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 19:29:44 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (12.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Completed 200 OK in 254ms (Views: 248.0ms | ActiveRecord: 0.9ms) Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:45 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:45 -0300 Started GET "/postino/manage/lists/1/edit" for ::1 at 2015-03-18 19:29:48 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (3.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (4.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 123ms (Views: 120.9ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:29:48 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:29:48 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:29:48 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:48 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:29:48 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:49 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:49 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:49 -0300 Started GET "/postino/manage/lists/1/edit" for ::1 at 2015-03-18 19:29:54 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (3.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (5.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Completed 200 OK in 144ms (Views: 141.8ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:54 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 19:29:55 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (2.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.4ms) Completed 200 OK in 90ms (Views: 87.7ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:29:56 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 19:30:40 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (60.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Completed 200 OK in 183ms (Views: 180.2ms | ActiveRecord: 0.9ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 19:30:40 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 19:30:52 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (4.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 127ms (Views: 125.4ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 19:30:52 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 19:31:10 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (5.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 133ms (Views: 130.8ms | ActiveRecord: 0.7ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 19:31:11 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 19:31:47 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (41.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 107ms (Views: 103.9ms | ActiveRecord: 1.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:31:47 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:31:47 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:31:47 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:31:47 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:31:48 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 19:31:48 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:31:48 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:31:48 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:31:48 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:31:48 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:31:48 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 19:31:48 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 19:32:01 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (6.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.4ms) Completed 200 OK in 78ms (Views: 76.1ms | ActiveRecord: 0.7ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 19:32:02 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 19:32:02 -0300 ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddLastNameToPostinoSubscribers (20150318225157)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "postino_subscribers" ADD "last_name" varchar SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318225157"]]  (1.3ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' Postino::List Load (3.8ms) SELECT "postino_lists".* FROM "postino_lists" Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" ORDER BY "postino_lists"."id" ASC LIMIT 1 Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" ORDER BY "postino_lists"."id" ASC LIMIT 1 Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguelmichelson@gmail.com"]]  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguelmichelson@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Michelson Martinez"], ["created_at", "2015-03-18 23:08:37.499424"], ["updated_at", "2015-03-18 23:08:37.499424"]]  (6.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jorge@numcero.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jorge@numcero.cl"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Sepúlveda Tapia"], ["created_at", "2015-03-18 23:08:37.512805"], ["updated_at", "2015-03-18 23:08:37.512805"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "taoanarkripta@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "taoanarkripta@yahoo.com.ar"], ["list_id", 1], ["name", "alvaro"], ["last_name", "prieto"], ["created_at", "2015-03-18 23:08:37.520394"], ["updated_at", "2015-03-18 23:08:37.520394"]]  (1.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amplifica@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amplifica@gmail.com"], ["list_id", 1], ["name", "Marcelo"], ["last_name", "Fica"], ["created_at", "2015-03-18 23:08:37.527620"], ["updated_at", "2015-03-18 23:08:37.527620"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arriagada.isabel@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arriagada.isabel@gmail.com"], ["list_id", 1], ["name", "Isabel"], ["last_name", "Arriagada"], ["created_at", "2015-03-18 23:08:37.534807"], ["updated_at", "2015-03-18 23:08:37.534807"]]  (1.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alcidesperez2002@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alcidesperez2002@hotmail.com"], ["list_id", 1], ["name", "Alcides"], ["last_name", "Perez Toledo"], ["created_at", "2015-03-18 23:08:37.542301"], ["updated_at", "2015-03-18 23:08:37.542301"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aquinteros101@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aquinteros101@yahoo.com"], ["list_id", 1], ["name", "Alex"], ["last_name", "Quinteros"], ["created_at", "2015-03-18 23:08:37.550419"], ["updated_at", "2015-03-18 23:08:37.550419"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ahteum@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ahteum@gmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Guerrero"], ["created_at", "2015-03-18 23:08:37.558090"], ["updated_at", "2015-03-18 23:08:37.558090"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "psthandier@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "psthandier@gmail.com"], ["list_id", 1], ["name", "patricio"], ["last_name", "sthandier"], ["created_at", "2015-03-18 23:08:37.565797"], ["updated_at", "2015-03-18 23:08:37.565797"]]  (1.8ms) commit transaction Postino::Subscriber Load (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diego.mz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diego.mz@gmail.com"], ["list_id", 1], ["name", "diego"], ["last_name", "martinez"], ["created_at", "2015-03-18 23:08:37.572497"], ["updated_at", "2015-03-18 23:08:37.572497"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariazc@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariazc@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Zegers"], ["created_at", "2015-03-18 23:08:37.580137"], ["updated_at", "2015-03-18 23:08:37.580137"]]  (1.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juan.mb1@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juan.mb1@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Martínez Bengoechea"], ["created_at", "2015-03-18 23:08:37.587181"], ["updated_at", "2015-03-18 23:08:37.587181"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tiopico@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tiopico@gmail.com"], ["list_id", 1], ["name", "jose"], ["last_name", "benmayor"], ["created_at", "2015-03-18 23:08:37.600211"], ["updated_at", "2015-03-18 23:08:37.600211"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luchohino@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luchohino@gmail.com"], ["list_id", 1], ["name", "Luis"], ["last_name", "Hinojosa Toledo"], ["created_at", "2015-03-18 23:08:37.607985"], ["updated_at", "2015-03-18 23:08:37.607985"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mgraur02@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mgraur02@yahoo.es"], ["list_id", 1], ["name", "Mirentxu"], ["last_name", "Grau"], ["created_at", "2015-03-18 23:08:37.616062"], ["updated_at", "2015-03-18 23:08:37.616062"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "delrio.clemente@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "delrio.clemente@gmail.com"], ["list_id", 1], ["name", "Clemente"], ["last_name", "del Río"], ["created_at", "2015-03-18 23:08:37.623623"], ["updated_at", "2015-03-18 23:08:37.623623"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pernildeherodes@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pernildeherodes@gmail.com"], ["list_id", 1], ["name", "Nicolás"], ["last_name", "Vargas"], ["created_at", "2015-03-18 23:08:37.631384"], ["updated_at", "2015-03-18 23:08:37.631384"]]  (1.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "smaquieirao@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "smaquieirao@hotmail.com"], ["list_id", 1], ["name", "sebastian"], ["last_name", "maquieira"], ["created_at", "2015-03-18 23:08:37.638442"], ["updated_at", "2015-03-18 23:08:37.638442"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gabrieldfbannen@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gabrieldfbannen@hotmail.com"], ["list_id", 1], ["name", "Gabriel"], ["last_name", "Del Favero"], ["created_at", "2015-03-18 23:08:37.649556"], ["updated_at", "2015-03-18 23:08:37.649556"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "florenciapozo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "florenciapozo@gmail.com"], ["list_id", 1], ["name", "Florencia"], ["last_name", "Pozo"], ["created_at", "2015-03-18 23:08:37.656878"], ["updated_at", "2015-03-18 23:08:37.656878"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jojofuentes@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jojofuentes@yahoo.com"], ["list_id", 1], ["name", "Jojo"], ["last_name", "Fuentes"], ["created_at", "2015-03-18 23:08:37.664742"], ["updated_at", "2015-03-18 23:08:37.664742"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carmonagabriela.s@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carmonagabriela.s@gmail.com"], ["list_id", 1], ["name", "Gabriela"], ["last_name", "Carmona"], ["created_at", "2015-03-18 23:08:37.672164"], ["updated_at", "2015-03-18 23:08:37.672164"]]  (1.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tanvargas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tanvargas@hotmail.com"], ["list_id", 1], ["name", "TAN"], ["last_name", ""], ["created_at", "2015-03-18 23:08:37.679272"], ["updated_at", "2015-03-18 23:08:37.679272"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "apablazabaschmann@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "apablazabaschmann@gmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Apablaza Baschmann"], ["created_at", "2015-03-18 23:08:37.687234"], ["updated_at", "2015-03-18 23:08:37.687234"]]  (1.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kaelazo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kaelazo@gmail.com"], ["list_id", 1], ["name", "KAELAZO"], ["last_name", ""], ["created_at", "2015-03-18 23:08:37.699522"], ["updated_at", "2015-03-18 23:08:37.699522"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lacoonsu@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lacoonsu@gmail.com"], ["list_id", 1], ["name", "Consuelo"], ["last_name", "Cecilia Cortez"], ["created_at", "2015-03-18 23:08:37.707052"], ["updated_at", "2015-03-18 23:08:37.707052"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "greenmaik7@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "greenmaik7@hotmail.com"], ["list_id", 1], ["name", "Michael"], ["last_name", "Eckman Llados"], ["created_at", "2015-03-18 23:08:37.715332"], ["updated_at", "2015-03-18 23:08:37.715332"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pretereto@paranoia.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pretereto@paranoia.cl"], ["list_id", 1], ["name", "TERESA"], ["last_name", "larraguibel"], ["created_at", "2015-03-18 23:08:37.722986"], ["updated_at", "2015-03-18 23:08:37.722986"]]  (1.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diegobianchi@ciudad.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diegobianchi@ciudad.com.ar"], ["list_id", 1], ["name", "Diego"], ["last_name", "Bianchi"], ["created_at", "2015-03-18 23:08:37.730222"], ["updated_at", "2015-03-18 23:08:37.730222"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mnemenauta@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mnemenauta@yahoo.com"], ["list_id", 1], ["name", "victor"], ["last_name", "manuel pavez"], ["created_at", "2015-03-18 23:08:37.748906"], ["updated_at", "2015-03-18 23:08:37.748906"]]  (1.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mzelehoski@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mzelehoski@yahoo.com"], ["list_id", 1], ["name", "Michael"], ["last_name", "Zelehoski"], ["created_at", "2015-03-18 23:08:37.765971"], ["updated_at", "2015-03-18 23:08:37.765971"]]  (1.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catalina.rojas@vtr.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catalina.rojas@vtr.net"], ["list_id", 1], ["name", "catalina"], ["last_name", "Rojas"], ["created_at", "2015-03-18 23:08:37.772920"], ["updated_at", "2015-03-18 23:08:37.772920"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolinaschmidtp@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolinaschmidtp@gmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Schmidt"], ["created_at", "2015-03-18 23:08:37.782258"], ["updated_at", "2015-03-18 23:08:37.782258"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "corderodediozz@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "corderodediozz@yahoo.es"], ["list_id", 1], ["name", "sebastian"], ["last_name", "palma"], ["created_at", "2015-03-18 23:08:37.789742"], ["updated_at", "2015-03-18 23:08:37.789742"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jcarmona@dialectos.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jcarmona@dialectos.cl"], ["list_id", 1], ["name", "jose"], ["last_name", "luis carmona"], ["created_at", "2015-03-18 23:08:37.798063"], ["updated_at", "2015-03-18 23:08:37.798063"]]  (1.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carodriguezez@gmail.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carodriguezez@gmail.es"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Rodriguez"], ["created_at", "2015-03-18 23:08:37.816141"], ["updated_at", "2015-03-18 23:08:37.816141"]]  (1.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lulamothe@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lulamothe@gmail.com"], ["list_id", 1], ["name", "luciana"], ["last_name", "lamothe"], ["created_at", "2015-03-18 23:08:37.830789"], ["updated_at", "2015-03-18 23:08:37.830789"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "evaporarte@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "evaporarte@hotmail.com"], ["list_id", 1], ["name", "EVA"], ["last_name", "CARRASCO SALDAÑA"], ["created_at", "2015-03-18 23:08:37.838128"], ["updated_at", "2015-03-18 23:08:37.838128"]]  (1.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fotografiaglomerada@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fotografiaglomerada@gmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Araya López"], ["created_at", "2015-03-18 23:08:37.845297"], ["updated_at", "2015-03-18 23:08:37.845297"]]  (1.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joseoportot@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joseoportot@hotmail.com"], ["list_id", 1], ["name", "Jose"], ["last_name", "OPORTOT"], ["created_at", "2015-03-18 23:08:37.852151"], ["updated_at", "2015-03-18 23:08:37.852151"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danizderich@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danizderich@gmail.com"], ["list_id", 1], ["name", "Dani"], ["last_name", "Gall Zder"], ["created_at", "2015-03-18 23:08:37.865434"], ["updated_at", "2015-03-18 23:08:37.865434"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ricardoparra_1@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ricardoparra_1@yahoo.es"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Parra"], ["created_at", "2015-03-18 23:08:37.872330"], ["updated_at", "2015-03-18 23:08:37.872330"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "guerranuclear@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "guerranuclear@gmail.com"], ["list_id", 1], ["name", "Luis"], ["last_name", "Guerra"], ["created_at", "2015-03-18 23:08:37.881188"], ["updated_at", "2015-03-18 23:08:37.881188"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "semilla@mi.cl"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "semilla@mi.cl"], ["list_id", 1], ["name", "Catalina"], ["last_name", "Navarro Jones"], ["created_at", "2015-03-18 23:08:37.888757"], ["updated_at", "2015-03-18 23:08:37.888757"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "angiesaiz@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "angiesaiz@gmail.com"], ["list_id", 1], ["name", "Angie"], ["last_name", "Saiz"], ["created_at", "2015-03-18 23:08:37.897749"], ["updated_at", "2015-03-18 23:08:37.897749"]]  (20.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elenaro@prodigy.net.mx"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elenaro@prodigy.net.mx"], ["list_id", 1], ["name", "ELENA"], ["last_name", "RO"], ["created_at", "2015-03-18 23:08:37.924612"], ["updated_at", "2015-03-18 23:08:37.924612"]]  (11.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "federicoinfantelorca@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "federicoinfantelorca@gmail.com"], ["list_id", 1], ["name", "Federico"], ["last_name", "Infante"], ["created_at", "2015-03-18 23:08:37.943198"], ["updated_at", "2015-03-18 23:08:37.943198"]]  (24.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elalegrepintor@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elalegrepintor@gmail.com"], ["list_id", 1], ["name", "EL"], ["last_name", "ALEGRE PINTOR EL REY"], ["created_at", "2015-03-18 23:08:37.974254"], ["updated_at", "2015-03-18 23:08:37.974254"]]  (6.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nakkao@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nakkao@hotmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Navarrete"], ["created_at", "2015-03-18 23:08:37.986994"], ["updated_at", "2015-03-18 23:08:37.986994"]]  (21.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aymarazegers@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aymarazegers@gmail.com"], ["list_id", 1], ["name", "aymara"], ["last_name", "zegers"], ["created_at", "2015-03-18 23:08:38.013576"], ["updated_at", "2015-03-18 23:08:38.013576"]]  (12.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "esperbravo7@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "esperbravo7@yahoo.es"], ["list_id", 1], ["name", "Victor"], ["last_name", "Hugo Bravo"], ["created_at", "2015-03-18 23:08:38.032308"], ["updated_at", "2015-03-18 23:08:38.032308"]]  (18.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jcsistem@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jcsistem@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Carlos Correa"], ["created_at", "2015-03-18 23:08:38.056930"], ["updated_at", "2015-03-18 23:08:38.056930"]]  (12.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "klaudiakemper@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "klaudiakemper@gmail.com"], ["list_id", 1], ["name", "klaudia"], ["last_name", "kemper"], ["created_at", "2015-03-18 23:08:38.075732"], ["updated_at", "2015-03-18 23:08:38.075732"]]  (18.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artesor@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artesor@yahoo.es"], ["list_id", 1], ["name", "tomás"], ["last_name", "araya"], ["created_at", "2015-03-18 23:08:38.101986"], ["updated_at", "2015-03-18 23:08:38.101986"]]  (6.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amaliavaldes@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amaliavaldes@gmail.com"], ["list_id", 1], ["name", "Amalia"], ["last_name", "Valdes"], ["created_at", "2015-03-18 23:08:38.114359"], ["updated_at", "2015-03-18 23:08:38.114359"]]  (16.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcelo@apurolapiz.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcelo@apurolapiz.cl"], ["list_id", 1], ["name", "Marcelo"], ["last_name", "Espinoza Taibo"], ["created_at", "2015-03-18 23:08:38.136173"], ["updated_at", "2015-03-18 23:08:38.136173"]]  (8.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yoistik@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yoistik@gmail.com"], ["list_id", 1], ["name", "HIRTH"], ["last_name", ""], ["created_at", "2015-03-18 23:08:38.149567"], ["updated_at", "2015-03-18 23:08:38.149567"]]  (30.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ericschiodtz7@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ericschiodtz7@hotmail.com"], ["list_id", 1], ["name", "eric"], ["last_name", "schiodtz"], ["created_at", "2015-03-18 23:08:38.185264"], ["updated_at", "2015-03-18 23:08:38.185264"]]  (18.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "barbara@gillmore.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "barbara@gillmore.cl"], ["list_id", 1], ["name", "Barbara"], ["last_name", "Gillmore"], ["created_at", "2015-03-18 23:08:38.210055"], ["updated_at", "2015-03-18 23:08:38.210055"]]  (25.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "izquierdo.v@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "izquierdo.v@gmail.com"], ["list_id", 1], ["name", "alvaro"], ["last_name", "izquierdo"], ["created_at", "2015-03-18 23:08:38.242865"], ["updated_at", "2015-03-18 23:08:38.242865"]]  (15.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ytoaranda@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ytoaranda@gmail.com"], ["list_id", 1], ["name", "YTO"], ["last_name", "CL"], ["created_at", "2015-03-18 23:08:38.264841"], ["updated_at", "2015-03-18 23:08:38.264841"]]  (13.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "llaikelpaikel@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "llaikelpaikel@gmail.com"], ["list_id", 1], ["name", "Michael"], ["last_name", "Edwards"], ["created_at", "2015-03-18 23:08:38.283350"], ["updated_at", "2015-03-18 23:08:38.283350"]]  (6.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "proyectoslaura@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "proyectoslaura@yahoo.es"], ["list_id", 1], ["name", "hector"], ["last_name", ""], ["created_at", "2015-03-18 23:08:38.299126"], ["updated_at", "2015-03-18 23:08:38.299126"]]  (9.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pazmb@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pazmb@hotmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Paz Martinez Bravo"], ["created_at", "2015-03-18 23:08:38.313668"], ["updated_at", "2015-03-18 23:08:38.313668"]]  (8.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arte_fuego@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arte_fuego@hotmail.com"], ["list_id", 1], ["name", "Cecilia"], ["last_name", "Moreno Reyes"], ["created_at", "2015-03-18 23:08:38.327504"], ["updated_at", "2015-03-18 23:08:38.327504"]]  (19.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tessiebujes@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tessiebujes@gmail.com"], ["list_id", 1], ["name", "tessiebujes"], ["last_name", ""], ["created_at", "2015-03-18 23:08:38.351538"], ["updated_at", "2015-03-18 23:08:38.351538"]]  (17.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jocegza@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jocegza@gmail.com"], ["list_id", 1], ["name", "YISA"], ["last_name", ""], ["created_at", "2015-03-18 23:08:38.375770"], ["updated_at", "2015-03-18 23:08:38.375770"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ja_watt75@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ja_watt75@yahoo.es"], ["list_id", 1], ["name", "jimmy"], ["last_name", "watt aka movildrone"], ["created_at", "2015-03-18 23:08:38.428227"], ["updated_at", "2015-03-18 23:08:38.428227"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "natosalt@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "natosalt@yahoo.es"], ["list_id", 1], ["name", "Ignacio"], ["last_name", "Escudero Carvajal"], ["created_at", "2015-03-18 23:08:38.435788"], ["updated_at", "2015-03-18 23:08:38.435788"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fgamboac@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fgamboac@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Gamboa Caneo"], ["created_at", "2015-03-18 23:08:38.443499"], ["updated_at", "2015-03-18 23:08:38.443499"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "agablerp@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "agablerp@gmail.com"], ["list_id", 1], ["name", "Alvaro"], ["last_name", "Gabler"], ["created_at", "2015-03-18 23:08:38.452382"], ["updated_at", "2015-03-18 23:08:38.452382"]]  (7.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulagarrido@hotmail.com"]]  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulagarrido@hotmail.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Garrido"], ["created_at", "2015-03-18 23:08:38.465386"], ["updated_at", "2015-03-18 23:08:38.465386"]]  (15.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "art210@latinmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "art210@latinmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Acuña"], ["created_at", "2015-03-18 23:08:38.486382"], ["updated_at", "2015-03-18 23:08:38.486382"]]  (11.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pintoralan@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pintoralan@gmail.com"], ["list_id", 1], ["name", "Alan"], ["last_name", "Alaniz"], ["created_at", "2015-03-18 23:08:38.504062"], ["updated_at", "2015-03-18 23:08:38.504062"]]  (11.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daniellaperbac@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daniellaperbac@gmail.com"], ["list_id", 1], ["name", "Daniella"], ["last_name", "Bacigalupo P"], ["created_at", "2015-03-18 23:08:38.521092"], ["updated_at", "2015-03-18 23:08:38.521092"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maramar.mar@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maramar.mar@gmail.com"], ["list_id", 1], ["name", "mara"], ["last_name", "santibáñez"], ["created_at", "2015-03-18 23:08:38.530759"], ["updated_at", "2015-03-18 23:08:38.530759"]]  (19.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francoescultor@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francoescultor@yahoo.com.ar"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Rios"], ["created_at", "2015-03-18 23:08:38.556673"], ["updated_at", "2015-03-18 23:08:38.556673"]]  (14.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariananajmanovich@gmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariananajmanovich@gmail.com"], ["list_id", 1], ["name", "Mariana"], ["last_name", "Najmanovich"], ["created_at", "2015-03-18 23:08:38.578352"], ["updated_at", "2015-03-18 23:08:38.578352"]]  (14.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "schwarzenberg@mananaart.de"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "schwarzenberg@mananaart.de"], ["list_id", 1], ["name", "María"], ["last_name", "Eliana Schwarzenberg"], ["created_at", "2015-03-18 23:08:38.599203"], ["updated_at", "2015-03-18 23:08:38.599203"]]  (14.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kamilitak@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kamilitak@gmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "López Jiménez"], ["created_at", "2015-03-18 23:08:38.619573"], ["updated_at", "2015-03-18 23:08:38.619573"]]  (6.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pinkantoinette@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pinkantoinette@gmail.com"], ["list_id", 1], ["name", "Karina"], ["last_name", "Quiroz O"], ["created_at", "2015-03-18 23:08:38.631876"], ["updated_at", "2015-03-18 23:08:38.631876"]]  (16.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristoallende@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristoallende@gmail.com"], ["list_id", 1], ["name", "cristobal"], ["last_name", "allende"], ["created_at", "2015-03-18 23:08:38.653884"], ["updated_at", "2015-03-18 23:08:38.653884"]]  (11.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "erico_locuas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "erico_locuas@hotmail.com"], ["list_id", 1], ["name", "erico"], ["last_name", ""], ["created_at", "2015-03-18 23:08:38.670917"], ["updated_at", "2015-03-18 23:08:38.670917"]]  (6.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lay.sergio@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lay.sergio@gmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Lay"], ["created_at", "2015-03-18 23:08:38.682523"], ["updated_at", "2015-03-18 23:08:38.682523"]]  (6.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artmourey@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artmourey@gmail.com"], ["list_id", 1], ["name", "Gabriel"], ["last_name", "Mourey"], ["created_at", "2015-03-18 23:08:38.694811"], ["updated_at", "2015-03-18 23:08:38.694811"]]  (6.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rikardopizarro@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rikardopizarro@gmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Pizarro"], ["created_at", "2015-03-18 23:08:38.706190"], ["updated_at", "2015-03-18 23:08:38.706190"]]  (6.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "starskybrines@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "starskybrines@gmail.com"], ["list_id", 1], ["name", "starsky"], ["last_name", "brines"], ["created_at", "2015-03-18 23:08:38.718226"], ["updated_at", "2015-03-18 23:08:38.718226"]]  (18.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cocaburnier@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cocaburnier@hotmail.com"], ["list_id", 1], ["name", "Coca"], ["last_name", "Burnier"], ["created_at", "2015-03-18 23:08:38.743773"], ["updated_at", "2015-03-18 23:08:38.743773"]]  (4.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "natosalt@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "natosalt@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Escudero Moll"], ["created_at", "2015-03-18 23:08:38.754230"], ["updated_at", "2015-03-18 23:08:38.754230"]]  (5.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "centauro@manquehue.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "centauro@manquehue.net"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Schmidt Ureta"], ["created_at", "2015-03-18 23:08:38.765730"], ["updated_at", "2015-03-18 23:08:38.765730"]]  (5.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amr@galeriarte.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amr@galeriarte.cl"], ["list_id", 1], ["name", "Ana"], ["last_name", "María Romero Alarcón"], ["created_at", "2015-03-18 23:08:38.780610"], ["updated_at", "2015-03-18 23:08:38.780610"]]  (11.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "angelesguzmanf@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "angelesguzmanf@gmail.com"], ["list_id", 1], ["name", "AngelesGuzmánF"], ["last_name", ""], ["created_at", "2015-03-18 23:08:38.797982"], ["updated_at", "2015-03-18 23:08:38.797982"]]  (13.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "isaaraneda@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "isaaraneda@hotmail.com"], ["list_id", 1], ["name", "I"], ["last_name", "S A B E L A R A N E D A"], ["created_at", "2015-03-18 23:08:38.818259"], ["updated_at", "2015-03-18 23:08:38.818259"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "adansat@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "adansat@hotmail.com"], ["list_id", 1], ["name", "ADAN"], ["last_name", "MEDINA HINOJOSA"], ["created_at", "2015-03-18 23:08:38.831456"], ["updated_at", "2015-03-18 23:08:38.831456"]]  (4.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dvergaralira@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dvergaralira@yahoo.es"], ["list_id", 1], ["name", "Diego"], ["last_name", "Vergara Lira"], ["created_at", "2015-03-18 23:08:38.844530"], ["updated_at", "2015-03-18 23:08:38.844530"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jonathansanguezag@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jonathansanguezag@gmail.com"], ["list_id", 1], ["name", "jonathan"], ["last_name", ""], ["created_at", "2015-03-18 23:08:38.852855"], ["updated_at", "2015-03-18 23:08:38.852855"]]  (6.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "muriel.gw@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "muriel.gw@gmail.com"], ["list_id", 1], ["name", "Muriel"], ["last_name", "Gallardo"], ["created_at", "2015-03-18 23:08:38.864746"], ["updated_at", "2015-03-18 23:08:38.864746"]]  (4.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolina.hermana@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolina.hermana@gmail.com"], ["list_id", 1], ["name", "carolina"], ["last_name", "lolas ahumada"], ["created_at", "2015-03-18 23:08:38.880930"], ["updated_at", "2015-03-18 23:08:38.880930"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolinaolmedocarrasco@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolinaolmedocarrasco@gmail.com"], ["list_id", 1], ["name", "Isabel"], ["last_name", ""], ["created_at", "2015-03-18 23:08:38.888156"], ["updated_at", "2015-03-18 23:08:38.888156"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "celizama@uach.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "celizama@uach.cl"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Lizama Jerez"], ["created_at", "2015-03-18 23:08:38.897511"], ["updated_at", "2015-03-18 23:08:38.897511"]]  (14.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dondiego@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dondiego@hotmail.com"], ["list_id", 1], ["name", "Diego"], ["last_name", ""], ["created_at", "2015-03-18 23:08:38.917747"], ["updated_at", "2015-03-18 23:08:38.917747"]]  (7.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "serveralvarado@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "serveralvarado@gmail.com"], ["list_id", 1], ["name", "Rubén"], ["last_name", "Alvarado"], ["created_at", "2015-03-18 23:08:38.930822"], ["updated_at", "2015-03-18 23:08:38.930822"]]  (12.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tierradesombra@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tierradesombra@yahoo.es"], ["list_id", 1], ["name", "concepcion"], ["last_name", "balmes"], ["created_at", "2015-03-18 23:08:38.949426"], ["updated_at", "2015-03-18 23:08:38.949426"]]  (8.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alexchellewm@yahoo.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alexchellewm@yahoo.com"], ["list_id", 1], ["name", "Alex"], ["last_name", "Chellew"], ["created_at", "2015-03-18 23:08:38.963944"], ["updated_at", "2015-03-18 23:08:38.963944"]]  (7.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carmvalle@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carmvalle@gmail.com"], ["list_id", 1], ["name", "carmen"], ["last_name", "valle"], ["created_at", "2015-03-18 23:08:38.980091"], ["updated_at", "2015-03-18 23:08:38.980091"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antonellagd@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antonellagd@hotmail.com"], ["list_id", 1], ["name", "Antonella"], ["last_name", "Gallegos"], ["created_at", "2015-03-18 23:08:38.988913"], ["updated_at", "2015-03-18 23:08:38.988913"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "coltra@mi.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "coltra@mi.cl"], ["list_id", 1], ["name", "CAROLINA"], ["last_name", "OLTRA"], ["created_at", "2015-03-18 23:08:38.998399"], ["updated_at", "2015-03-18 23:08:38.998399"]]  (10.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "flores_bx@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "flores_bx@yahoo.es"], ["list_id", 1], ["name", "ENRIQUE"], ["last_name", "FLORES"], ["created_at", "2015-03-18 23:08:39.015186"], ["updated_at", "2015-03-18 23:08:39.015186"]]  (9.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andreafortuita@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andreafortuita@gmail.com"], ["list_id", 1], ["name", "Andrea"], ["last_name", "Echague"], ["created_at", "2015-03-18 23:08:39.030716"], ["updated_at", "2015-03-18 23:08:39.030716"]]  (7.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "esteban.echague@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "esteban.echague@gmail.com"], ["list_id", 1], ["name", "Esteban"], ["last_name", ""], ["created_at", "2015-03-18 23:08:39.044203"], ["updated_at", "2015-03-18 23:08:39.044203"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bravocarreno@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bravocarreno@gmail.com"], ["list_id", 1], ["name", "Mauricio"], ["last_name", "Bravo"], ["created_at", "2015-03-18 23:08:39.053968"], ["updated_at", "2015-03-18 23:08:39.053968"]]  (15.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "superbabyfell@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "superbabyfell@yahoo.es"], ["list_id", 1], ["name", "Ana"], ["last_name", "Maria Fell"], ["created_at", "2015-03-18 23:08:39.077109"], ["updated_at", "2015-03-18 23:08:39.077109"]]  (12.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lecarosamaro@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lecarosamaro@gmail.com"], ["list_id", 1], ["name", "ALEJANDRO"], ["last_name", "LECAROS AMARO"], ["created_at", "2015-03-18 23:08:39.095989"], ["updated_at", "2015-03-18 23:08:39.095989"]]  (6.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aa.casanova@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aa.casanova@gmail.com"], ["list_id", 1], ["name", "ANDREA"], ["last_name", "CASANOVA"], ["created_at", "2015-03-18 23:08:39.108779"], ["updated_at", "2015-03-18 23:08:39.108779"]]  (16.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlossilvatroncoso@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlossilvatroncoso@hotmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Silva"], ["created_at", "2015-03-18 23:08:39.131474"], ["updated_at", "2015-03-18 23:08:39.131474"]]  (6.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pajarovolante77@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pajarovolante77@gmail.com"], ["list_id", 1], ["name", "francisco"], ["last_name", "huichaqueo"], ["created_at", "2015-03-18 23:08:39.143335"], ["updated_at", "2015-03-18 23:08:39.143335"]]  (14.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@mvgallo.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@mvgallo.cl"], ["list_id", 1], ["name", "Manuela"], ["last_name", ""], ["created_at", "2015-03-18 23:08:39.163250"], ["updated_at", "2015-03-18 23:08:39.163250"]]  (6.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "igna_cl@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "igna_cl@hotmail.com"], ["list_id", 1], ["name", "ignacio"], ["last_name", "ramirez"], ["created_at", "2015-03-18 23:08:39.180268"], ["updated_at", "2015-03-18 23:08:39.180268"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cvelascog@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cvelascog@yahoo.com"], ["list_id", 1], ["name", "Cristián"], ["last_name", "Velasco"], ["created_at", "2015-03-18 23:08:39.189387"], ["updated_at", "2015-03-18 23:08:39.189387"]]  (8.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pafa53@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pafa53@hotmail.com"], ["list_id", 1], ["name", "paula"], ["last_name", "fuentes"], ["created_at", "2015-03-18 23:08:39.203753"], ["updated_at", "2015-03-18 23:08:39.203753"]]  (7.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tatevary@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tatevary@yahoo.com"], ["list_id", 1], ["name", "Oswaldo"], ["last_name", "Vega"], ["created_at", "2015-03-18 23:08:39.216770"], ["updated_at", "2015-03-18 23:08:39.216770"]]  (9.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlitos_artes@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlitos_artes@hotmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Rodriguez Garcia"], ["created_at", "2015-03-18 23:08:39.231112"], ["updated_at", "2015-03-18 23:08:39.231112"]]  (15.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mairysethvargas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mairysethvargas@gmail.com"], ["list_id", 1], ["name", "Oscar"], ["last_name", "Ponce"], ["created_at", "2015-03-18 23:08:39.252489"], ["updated_at", "2015-03-18 23:08:39.252489"]]  (4.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "larayav@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "larayav@gmail.com"], ["list_id", 1], ["name", "Lorena"], ["last_name", "Araya"], ["created_at", "2015-03-18 23:08:39.263699"], ["updated_at", "2015-03-18 23:08:39.263699"]]  (5.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristal.ferret@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristal.ferret@gmail.com"], ["list_id", 1], ["name", "Cristal"], ["last_name", "Ferret"], ["created_at", "2015-03-18 23:08:39.278551"], ["updated_at", "2015-03-18 23:08:39.278551"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "clom99@yahoo.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "clom99@yahoo.com"], ["list_id", 1], ["name", "carlos"], ["last_name", "osorio"], ["created_at", "2015-03-18 23:08:39.287093"], ["updated_at", "2015-03-18 23:08:39.287093"]]  (11.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alejandrabasualdo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alejandrabasualdo@gmail.com"], ["list_id", 1], ["name", "Alejandra"], ["last_name", "Basualdo"], ["created_at", "2015-03-18 23:08:39.303795"], ["updated_at", "2015-03-18 23:08:39.303795"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aviva@vtr.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aviva@vtr.net"], ["list_id", 1], ["name", "Aviva"], ["last_name", "Sawicki"], ["created_at", "2015-03-18 23:08:39.312476"], ["updated_at", "2015-03-18 23:08:39.312476"]]  (9.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "oyarce100@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "oyarce100@hotmail.com"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Andres Muñoz Oyarce"], ["created_at", "2015-03-18 23:08:39.329630"], ["updated_at", "2015-03-18 23:08:39.329630"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "increado@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "increado@hotmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Carrasco"], ["created_at", "2015-03-18 23:08:39.337833"], ["updated_at", "2015-03-18 23:08:39.337833"]]  (6.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chegrarte@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chegrarte@yahoo.com.ar"], ["list_id", 1], ["name", "Luis"], ["last_name", ""], ["created_at", "2015-03-18 23:08:39.351421"], ["updated_at", "2015-03-18 23:08:39.351421"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bmodinger@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bmodinger@hotmail.com"], ["list_id", 1], ["name", "Barbara"], ["last_name", "Modinger"], ["created_at", "2015-03-18 23:08:39.406572"], ["updated_at", "2015-03-18 23:08:39.406572"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hugotripodi@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hugotripodi@yahoo.com"], ["list_id", 1], ["name", "hugo"], ["last_name", "tripodi"], ["created_at", "2015-03-18 23:08:39.414891"], ["updated_at", "2015-03-18 23:08:39.414891"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "c.macan@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "c.macan@gmail.com"], ["list_id", 1], ["name", "Catalina"], ["last_name", "Macan"], ["created_at", "2015-03-18 23:08:39.422898"], ["updated_at", "2015-03-18 23:08:39.422898"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cali83@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cali83@gmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Elisa Atria Alamos"], ["created_at", "2015-03-18 23:08:39.431480"], ["updated_at", "2015-03-18 23:08:39.431480"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luisengranajes@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luisengranajes@hotmail.com"], ["list_id", 1], ["name", "luis"], ["last_name", "perez"], ["created_at", "2015-03-18 23:08:39.440245"], ["updated_at", "2015-03-18 23:08:39.440245"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ortegach@gmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ortegach@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Ortega"], ["created_at", "2015-03-18 23:08:39.522606"], ["updated_at", "2015-03-18 23:08:39.522606"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paloma_iva@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paloma_iva@yahoo.com"], ["list_id", 1], ["name", "Paloma"], ["last_name", "Idini"], ["created_at", "2015-03-18 23:08:39.531878"], ["updated_at", "2015-03-18 23:08:39.531878"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fernandobruma@swissinfo.org"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fernandobruma@swissinfo.org"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Fernando Lopez"], ["created_at", "2015-03-18 23:08:39.539617"], ["updated_at", "2015-03-18 23:08:39.539617"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ira_el_bardo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ira_el_bardo@hotmail.com"], ["list_id", 1], ["name", "Kriztoval"], ["last_name", "Opazo"], ["created_at", "2015-03-18 23:08:39.547928"], ["updated_at", "2015-03-18 23:08:39.547928"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artebariquia@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artebariquia@yahoo.es"], ["list_id", 1], ["name", "Orlando"], ["last_name", "Salero"], ["created_at", "2015-03-18 23:08:39.556548"], ["updated_at", "2015-03-18 23:08:39.556548"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudia@claudiaolivos.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudia@claudiaolivos.com"], ["list_id", 1], ["name", "claudia"], ["last_name", ""], ["created_at", "2015-03-18 23:08:39.580047"], ["updated_at", "2015-03-18 23:08:39.580047"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anakarinavalecillos@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anakarinavalecillos@gmail.com"], ["list_id", 1], ["name", "ana"], ["last_name", "karina"], ["created_at", "2015-03-18 23:08:39.588900"], ["updated_at", "2015-03-18 23:08:39.588900"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ansiarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ansiarte@gmail.com"], ["list_id", 1], ["name", "Deys"], ["last_name", "Rocco"], ["created_at", "2015-03-18 23:08:39.597278"], ["updated_at", "2015-03-18 23:08:39.597278"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "correocamila@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "correocamila@gmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Valenzuela Sepúlveda"], ["created_at", "2015-03-18 23:08:39.606001"], ["updated_at", "2015-03-18 23:08:39.606001"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ralmistiblue@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ralmistiblue@hotmail.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Bustos Flores"], ["created_at", "2015-03-18 23:08:39.616481"], ["updated_at", "2015-03-18 23:08:39.616481"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cicciolina3x@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cicciolina3x@gmail.com"], ["list_id", 1], ["name", "Gabriela"], ["last_name", "Rivera Lucero"], ["created_at", "2015-03-18 23:08:39.628709"], ["updated_at", "2015-03-18 23:08:39.628709"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camilo@camilovillanueva.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camilo@camilovillanueva.com.ar"], ["list_id", 1], ["name", "camilo"], ["last_name", "villanueva"], ["created_at", "2015-03-18 23:08:39.636883"], ["updated_at", "2015-03-18 23:08:39.636883"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@luciarodriguez.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@luciarodriguez.cl"], ["list_id", 1], ["name", "Lucía"], ["last_name", "Rodríguez P"], ["created_at", "2015-03-18 23:08:39.644205"], ["updated_at", "2015-03-18 23:08:39.644205"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariajosedurans@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariajosedurans@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "José Durán Steinman"], ["created_at", "2015-03-18 23:08:39.651872"], ["updated_at", "2015-03-18 23:08:39.651872"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lgamio@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lgamio@gmail.com"], ["list_id", 1], ["name", "LAURA"], ["last_name", "GAMIO RALUY"], ["created_at", "2015-03-18 23:08:39.659829"], ["updated_at", "2015-03-18 23:08:39.659829"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lagos.alberto@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lagos.alberto@gmail.com"], ["list_id", 1], ["name", "alberto"], ["last_name", "LAGOS"], ["created_at", "2015-03-18 23:08:39.677594"], ["updated_at", "2015-03-18 23:08:39.677594"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "phespino@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "phespino@uc.cl"], ["list_id", 1], ["name", "HIDALGO"], ["last_name", "Patricio Espinoza Hidalgo"], ["created_at", "2015-03-18 23:08:39.686634"], ["updated_at", "2015-03-18 23:08:39.686634"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "raimundoedwards@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "raimundoedwards@gmail.com"], ["list_id", 1], ["name", "Raimundo"], ["last_name", "Edwards Alonso"], ["created_at", "2015-03-18 23:08:39.694339"], ["updated_at", "2015-03-18 23:08:39.694339"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "melf_en_viena@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "melf_en_viena@yahoo.com"], ["list_id", 1], ["name", "Melf"], ["last_name", ""], ["created_at", "2015-03-18 23:08:39.702844"], ["updated_at", "2015-03-18 23:08:39.702844"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maidacordero@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maidacordero@gmail.com"], ["list_id", 1], ["name", "Magdalena"], ["last_name", "Cordero"], ["created_at", "2015-03-18 23:08:39.711124"], ["updated_at", "2015-03-18 23:08:39.711124"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aldogarrido@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aldogarrido@hotmail.com"], ["list_id", 1], ["name", "aldo"], ["last_name", "garrido sanchez"], ["created_at", "2015-03-18 23:08:39.729256"], ["updated_at", "2015-03-18 23:08:39.729256"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "consuelolewin@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "consuelolewin@yahoo.com"], ["list_id", 1], ["name", "consuelo"], ["last_name", "lewin"], ["created_at", "2015-03-18 23:08:39.745282"], ["updated_at", "2015-03-18 23:08:39.745282"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "melania_lynch@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "melania_lynch@yahoo.es"], ["list_id", 1], ["name", "Melania"], ["last_name", "Lynch"], ["created_at", "2015-03-18 23:08:39.753879"], ["updated_at", "2015-03-18 23:08:39.753879"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fcusicanqui@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fcusicanqui@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Cusicanqui"], ["created_at", "2015-03-18 23:08:39.762027"], ["updated_at", "2015-03-18 23:08:39.762027"]]  (7.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nk@nk.nk"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nk@nk.nk"], ["list_id", 1], ["name", "nknk"], ["last_name", ""], ["created_at", "2015-03-18 23:08:39.777578"], ["updated_at", "2015-03-18 23:08:39.777578"]]  (5.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "soberenda@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "soberenda@hotmail.com"], ["list_id", 1], ["name", "Cristina"], ["last_name", "Gonzalez"], ["created_at", "2015-03-18 23:08:39.789656"], ["updated_at", "2015-03-18 23:08:39.789656"]]  (4.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anguitapaula@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anguitapaula@yahoo.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Anguita Solis de Ovando"], ["created_at", "2015-03-18 23:08:39.800534"], ["updated_at", "2015-03-18 23:08:39.800534"]]  (13.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kamila_gavinci@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kamila_gavinci@hotmail.com"], ["list_id", 1], ["name", "Kamila"], ["last_name", "Barrientos"], ["created_at", "2015-03-18 23:08:39.819027"], ["updated_at", "2015-03-18 23:08:39.819027"]]  (5.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marianamarciana@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marianamarciana@hotmail.com"], ["list_id", 1], ["name", "MARIANA"], ["last_name", "GUZMAN MESINA"], ["created_at", "2015-03-18 23:08:39.829652"], ["updated_at", "2015-03-18 23:08:39.829652"]]  (13.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "guzmanantonio@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "guzmanantonio@gmail.com"], ["list_id", 1], ["name", "Antonio"], ["last_name", "Guzmán"], ["created_at", "2015-03-18 23:08:39.849112"], ["updated_at", "2015-03-18 23:08:39.849112"]]  (9.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vandalis.arte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vandalis.arte@gmail.com"], ["list_id", 1], ["name", "DESTROY"], ["last_name", ""], ["created_at", "2015-03-18 23:08:39.863782"], ["updated_at", "2015-03-18 23:08:39.863782"]]  (6.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danceustedtambien@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danceustedtambien@gmail.com"], ["list_id", 1], ["name", "javier"], ["last_name", "mansilla calderón"], ["created_at", "2015-03-18 23:08:39.877780"], ["updated_at", "2015-03-18 23:08:39.877780"]]  (18.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pepemoreno12@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pepemoreno12@yahoo.es"], ["list_id", 1], ["name", "PEPE"], ["last_name", "MORENO"], ["created_at", "2015-03-18 23:08:39.900852"], ["updated_at", "2015-03-18 23:08:39.900852"]]  (24.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sintitulo33@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sintitulo33@hotmail.com"], ["list_id", 1], ["name", "W"], ["last_name", "Villar"], ["created_at", "2015-03-18 23:08:39.930781"], ["updated_at", "2015-03-18 23:08:39.930781"]]  (6.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "senoritaugarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "senoritaugarte@gmail.com"], ["list_id", 1], ["name", "senoritaugarte"], ["last_name", ""], ["created_at", "2015-03-18 23:08:39.942989"], ["updated_at", "2015-03-18 23:08:39.942989"]]  (12.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bruriadnis@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bruriadnis@hotmail.com"], ["list_id", 1], ["name", "Bruno"], ["last_name", "Garcia"], ["created_at", "2015-03-18 23:08:39.960505"], ["updated_at", "2015-03-18 23:08:39.960505"]]  (10.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mcpolanc@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mcpolanc@uc.cl"], ["list_id", 1], ["name", "Consuelo"], ["last_name", "Polanco"], ["created_at", "2015-03-18 23:08:39.977019"], ["updated_at", "2015-03-18 23:08:39.977019"]]  (10.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aliciaurrea@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aliciaurrea@yahoo.com"], ["list_id", 1], ["name", "MARIA"], ["last_name", "ALICIA URREA CARVALLO"], ["created_at", "2015-03-18 23:08:39.992735"], ["updated_at", "2015-03-18 23:08:39.992735"]]  (9.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "phsolimano@gmail.com"]]  (0.1ms) begin transaction SQL (1.0ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "phsolimano@gmail.com"], ["list_id", 1], ["name", "paula"], ["last_name", "hernandez"], ["created_at", "2015-03-18 23:08:40.007787"], ["updated_at", "2015-03-18 23:08:40.007787"]]  (21.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daniel@sourlight.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daniel@sourlight.net"], ["list_id", 1], ["name", "Daniel"], ["last_name", "González"], ["created_at", "2015-03-18 23:08:40.036445"], ["updated_at", "2015-03-18 23:08:40.036445"]]  (18.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diasnublados_82@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diasnublados_82@hotmail.com"], ["list_id", 1], ["name", "epee"], ["last_name", ""], ["created_at", "2015-03-18 23:08:40.061289"], ["updated_at", "2015-03-18 23:08:40.061289"]]  (8.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jaimevial@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jaimevial@gmail.com"], ["list_id", 1], ["name", "jaime"], ["last_name", "vial"], ["created_at", "2015-03-18 23:08:40.077663"], ["updated_at", "2015-03-18 23:08:40.077663"]]  (18.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "verenaurrutia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "verenaurrutia@gmail.com"], ["list_id", 1], ["name", "verena"], ["last_name", "urrutia"], ["created_at", "2015-03-18 23:08:40.101906"], ["updated_at", "2015-03-18 23:08:40.101906"]]  (12.7ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rsrrchio@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rsrrchio@gmail.com"], ["list_id", 1], ["name", "Rocío"], ["last_name", "Román"], ["created_at", "2015-03-18 23:08:40.120389"], ["updated_at", "2015-03-18 23:08:40.120389"]]  (13.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ceciliaarayaleon@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ceciliaarayaleon@gmail.com"], ["list_id", 1], ["name", "Cecilia"], ["last_name", "Araya"], ["created_at", "2015-03-18 23:08:40.141043"], ["updated_at", "2015-03-18 23:08:40.141043"]]  (28.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anazztacia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anazztacia@gmail.com"], ["list_id", 1], ["name", "Andrea"], ["last_name", "Urra"], ["created_at", "2015-03-18 23:08:40.176928"], ["updated_at", "2015-03-18 23:08:40.176928"]]  (58.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elisaghs@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elisaghs@gmail.com"], ["list_id", 1], ["name", "Elisa"], ["last_name", "Garcia de la Huerta"], ["created_at", "2015-03-18 23:08:40.241517"], ["updated_at", "2015-03-18 23:08:40.241517"]]  (61.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@magalipolverino.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@magalipolverino.com"], ["list_id", 1], ["name", "Magali"], ["last_name", "Polverino"], ["created_at", "2015-03-18 23:08:40.309145"], ["updated_at", "2015-03-18 23:08:40.309145"]]  (38.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fabodangelo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fabodangelo@hotmail.com"], ["list_id", 1], ["name", "FABRIZZIO"], ["last_name", "D ANGELO"], ["created_at", "2015-03-18 23:08:40.354141"], ["updated_at", "2015-03-18 23:08:40.354141"]]  (20.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@arrisi.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@arrisi.cl"], ["list_id", 1], ["name", "Enzo"], ["last_name", "Arrisi Mercado"], ["created_at", "2015-03-18 23:08:40.382296"], ["updated_at", "2015-03-18 23:08:40.382296"]]  (32.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@rodolfoedwards.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@rodolfoedwards.com"], ["list_id", 1], ["name", "rodolfo"], ["last_name", "edwards"], ["created_at", "2015-03-18 23:08:40.421218"], ["updated_at", "2015-03-18 23:08:40.421218"]]  (83.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arenitademar21@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arenitademar21@hotmail.com"], ["list_id", 1], ["name", "maria"], ["last_name", "jose valenzuela"], ["created_at", "2015-03-18 23:08:40.511000"], ["updated_at", "2015-03-18 23:08:40.511000"]]  (18.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "estcordova@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "estcordova@gmail.com"], ["list_id", 1], ["name", "Esteban"], ["last_name", "Córdova"], ["created_at", "2015-03-18 23:08:40.536115"], ["updated_at", "2015-03-18 23:08:40.536115"]]  (22.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lechecita@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lechecita@gmail.com"], ["list_id", 1], ["name", "Menru"], ["last_name", "SA"], ["created_at", "2015-03-18 23:08:40.564175"], ["updated_at", "2015-03-18 23:08:40.564175"]]  (15.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yorkymencia@correosdecuba.cu"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yorkymencia@correosdecuba.cu"], ["list_id", 1], ["name", "Yorky"], ["last_name", "Mencia"], ["created_at", "2015-03-18 23:08:40.585881"], ["updated_at", "2015-03-18 23:08:40.585881"]]  (7.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gracieweinrib@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gracieweinrib@gmail.com"], ["list_id", 1], ["name", "Grace"], ["last_name", "Weinrib"], ["created_at", "2015-03-18 23:08:40.598956"], ["updated_at", "2015-03-18 23:08:40.598956"]]  (15.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastianescalona@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastianescalona@gmail.com"], ["list_id", 1], ["name", "Sebastián"], ["last_name", "Escalona"], ["created_at", "2015-03-18 23:08:40.620363"], ["updated_at", "2015-03-18 23:08:40.620363"]]  (6.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "consuelo.rodriguez.d@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "consuelo.rodriguez.d@gmail.com"], ["list_id", 1], ["name", "Consuelo"], ["last_name", "Rodríguez"], ["created_at", "2015-03-18 23:08:40.632640"], ["updated_at", "2015-03-18 23:08:40.632640"]]  (5.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joc1483@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joc1483@gmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Cortés"], ["created_at", "2015-03-18 23:08:40.644073"], ["updated_at", "2015-03-18 23:08:40.644073"]]  (70.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sedicereiby@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sedicereiby@gmail.com"], ["list_id", 1], ["name", "Oscar"], ["last_name", "Raby"], ["created_at", "2015-03-18 23:08:40.720640"], ["updated_at", "2015-03-18 23:08:40.720640"]]  (18.8ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andrestorresf@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andrestorresf@gmail.com"], ["list_id", 1], ["name", "Andrés"], ["last_name", "Torres"], ["created_at", "2015-03-18 23:08:40.745289"], ["updated_at", "2015-03-18 23:08:40.745289"]]  (11.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "-----@------------"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "-----@------------"], ["list_id", 1], ["name", "Susana"], ["last_name", "Vallejos Sagredo"], ["created_at", "2015-03-18 23:08:40.761631"], ["updated_at", "2015-03-18 23:08:40.761631"]]  (6.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felipe.rencoret@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felipe.rencoret@hotmail.com"], ["list_id", 1], ["name", "FELIPE"], ["last_name", "GUSTAVO RENCORET"], ["created_at", "2015-03-18 23:08:40.775843"], ["updated_at", "2015-03-18 23:08:40.775843"]]  (16.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "princesahallulla@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "princesahallulla@gmail.com"], ["list_id", 1], ["name", "Sandra"], ["last_name", "Martínez Fuentes"], ["created_at", "2015-03-18 23:08:40.843300"], ["updated_at", "2015-03-18 23:08:40.843300"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yonosoysmo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yonosoysmo@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Saavedra Arévalo"], ["created_at", "2015-03-18 23:08:40.859570"], ["updated_at", "2015-03-18 23:08:40.859570"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bruno_s_z@yahoo.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bruno_s_z@yahoo.com"], ["list_id", 1], ["name", "Colectivo"], ["last_name", "de Accion Inmadura"], ["created_at", "2015-03-18 23:08:40.870407"], ["updated_at", "2015-03-18 23:08:40.870407"]]  (15.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rdovillarroel@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rdovillarroel@gmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Villarroel"], ["created_at", "2015-03-18 23:08:40.895175"], ["updated_at", "2015-03-18 23:08:40.895175"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pau_rubio_e@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pau_rubio_e@hotmail.com"], ["list_id", 1], ["name", "pau"], ["last_name", "rubio eberhardt"], ["created_at", "2015-03-18 23:08:40.908858"], ["updated_at", "2015-03-18 23:08:40.908858"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "natix14@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "natix14@gmail.com"], ["list_id", 1], ["name", "natalia"], ["last_name", "andreani"], ["created_at", "2015-03-18 23:08:40.916995"], ["updated_at", "2015-03-18 23:08:40.916995"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "florencia.onetto@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "florencia.onetto@gmail.com"], ["list_id", 1], ["name", "FLORENCIA"], ["last_name", "ONETTO"], ["created_at", "2015-03-18 23:08:40.924651"], ["updated_at", "2015-03-18 23:08:40.924651"]]  (11.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "noanswernoname@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "noanswernoname@gmail.com"], ["list_id", 1], ["name", "Germán"], ["last_name", "Villalobos"], ["created_at", "2015-03-18 23:08:40.942249"], ["updated_at", "2015-03-18 23:08:40.942249"]]  (5.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosemblart@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosemblart@gmail.com"], ["list_id", 1], ["name", "Isabel"], ["last_name", "Rosemblatt Bono"], ["created_at", "2015-03-18 23:08:40.958705"], ["updated_at", "2015-03-18 23:08:40.958705"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "constanzageisse@mi.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "constanzageisse@mi.cl"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Geisse"], ["created_at", "2015-03-18 23:08:40.966597"], ["updated_at", "2015-03-18 23:08:40.966597"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luzmpz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luzmpz@gmail.com"], ["list_id", 1], ["name", "Luz"], ["last_name", "María Pedreros"], ["created_at", "2015-03-18 23:08:40.975251"], ["updated_at", "2015-03-18 23:08:40.975251"]]  (5.6ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leonpaco@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leonpaco@gmail.com"], ["list_id", 1], ["name", "Paco"], ["last_name", "Leon"], ["created_at", "2015-03-18 23:08:40.986442"], ["updated_at", "2015-03-18 23:08:40.986442"]]  (11.4ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lologuzman@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lologuzman@hotmail.com"], ["list_id", 1], ["name", "CRISTOBAL"], ["last_name", "GUZMAN"], ["created_at", "2015-03-18 23:08:41.004131"], ["updated_at", "2015-03-18 23:08:41.004131"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aprendeapintar@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aprendeapintar@gmail.com"], ["list_id", 1], ["name", "DIEGO"], ["last_name", "HERNANDEZ"], ["created_at", "2015-03-18 23:08:41.013990"], ["updated_at", "2015-03-18 23:08:41.013990"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anamariaschmidt@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anamariaschmidt@yahoo.com"], ["list_id", 1], ["name", "ANAMARIA"], ["last_name", "SCHMIDT"], ["created_at", "2015-03-18 23:08:41.022900"], ["updated_at", "2015-03-18 23:08:41.022900"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mpiracés@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mpiracés@yahoo.es"], ["list_id", 1], ["name", "Marina"], ["last_name", "Piracés"], ["created_at", "2015-03-18 23:08:41.031620"], ["updated_at", "2015-03-18 23:08:41.031620"]]  (16.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sergiorequena@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sergiorequena@gmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Requena G."], ["created_at", "2015-03-18 23:08:41.055737"], ["updated_at", "2015-03-18 23:08:41.055737"]]  (9.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fotoluisnavarro@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fotoluisnavarro@gmail.com"], ["list_id", 1], ["name", "Luis"], ["last_name", "Navarro Figueroa"], ["created_at", "2015-03-18 23:08:41.072260"], ["updated_at", "2015-03-18 23:08:41.072260"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "boris.cofre@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "boris.cofre@gmail.com"], ["list_id", 1], ["name", "Boris"], ["last_name", "Cofré"], ["created_at", "2015-03-18 23:08:41.082122"], ["updated_at", "2015-03-18 23:08:41.082122"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cebra.mbl@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cebra.mbl@gmail.com"], ["list_id", 1], ["name", "MACARENA"], ["last_name", "BERNAL LAMONACA"], ["created_at", "2015-03-18 23:08:41.092223"], ["updated_at", "2015-03-18 23:08:41.092223"]]  (10.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cafloresv@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cafloresv@hotmail.com"], ["list_id", 1], ["name", "Flor"], ["last_name", "Flores"], ["created_at", "2015-03-18 23:08:41.109332"], ["updated_at", "2015-03-18 23:08:41.109332"]]  (12.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yorkymencia@correodecuba.cu"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yorkymencia@correodecuba.cu"], ["list_id", 1], ["name", "yorky"], ["last_name", ""], ["created_at", "2015-03-18 23:08:41.127814"], ["updated_at", "2015-03-18 23:08:41.127814"]]  (64.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cantillana.pamela@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cantillana.pamela@gmail.com"], ["list_id", 1], ["name", "pamela"], ["last_name", "cantillana"], ["created_at", "2015-03-18 23:08:41.198666"], ["updated_at", "2015-03-18 23:08:41.198666"]]  (15.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pancholillo_1@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pancholillo_1@hotmail.com"], ["list_id", 1], ["name", "francisco"], ["last_name", ""], ["created_at", "2015-03-18 23:08:41.221208"], ["updated_at", "2015-03-18 23:08:41.221208"]]  (15.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@mauricioconcha.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@mauricioconcha.cl"], ["list_id", 1], ["name", "mauricio"], ["last_name", "concha"], ["created_at", "2015-03-18 23:08:41.242828"], ["updated_at", "2015-03-18 23:08:41.242828"]]  (12.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patiurquieta@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patiurquieta@yahoo.es"], ["list_id", 1], ["name", "Patricia"], ["last_name", "Urquieta"], ["created_at", "2015-03-18 23:08:41.260072"], ["updated_at", "2015-03-18 23:08:41.260072"]]  (17.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisco@cintolesi.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisco@cintolesi.cl"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Cintolesi"], ["created_at", "2015-03-18 23:08:41.283910"], ["updated_at", "2015-03-18 23:08:41.283910"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maria_pakia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maria_pakia@hotmail.com"], ["list_id", 1], ["name", "Paz"], ["last_name", "Camposano"], ["created_at", "2015-03-18 23:08:41.293822"], ["updated_at", "2015-03-18 23:08:41.293822"]]  (9.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ampdist@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ampdist@hotmail.com"], ["list_id", 1], ["name", "hector"], ["last_name", "llanquín"], ["created_at", "2015-03-18 23:08:41.308495"], ["updated_at", "2015-03-18 23:08:41.308495"]]  (13.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fernandoloustalot@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fernandoloustalot@yahoo.com.ar"], ["list_id", 1], ["name", "fernando"], ["last_name", ""], ["created_at", "2015-03-18 23:08:41.327991"], ["updated_at", "2015-03-18 23:08:41.327991"]]  (8.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulibunster@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulibunster@gmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Bunster"], ["created_at", "2015-03-18 23:08:41.342661"], ["updated_at", "2015-03-18 23:08:41.342661"]]  (11.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "neus_ra@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "neus_ra@hotmail.com"], ["list_id", 1], ["name", "Ernesto"], ["last_name", "Parada"], ["created_at", "2015-03-18 23:08:41.360019"], ["updated_at", "2015-03-18 23:08:41.360019"]]  (9.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anmoral29@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anmoral29@hotmail.com"], ["list_id", 1], ["name", "andres"], ["last_name", "morales saldivia"], ["created_at", "2015-03-18 23:08:41.376237"], ["updated_at", "2015-03-18 23:08:41.376237"]]  (10.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carla_fernandez_4@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carla_fernandez_4@hotmail.com"], ["list_id", 1], ["name", "Carla"], ["last_name", "Fernandez"], ["created_at", "2015-03-18 23:08:41.393752"], ["updated_at", "2015-03-18 23:08:41.393752"]]  (4.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "raimundolarenas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "raimundolarenas@gmail.com"], ["list_id", 1], ["name", "raimundo"], ["last_name", "larenas"], ["created_at", "2015-03-18 23:08:41.407882"], ["updated_at", "2015-03-18 23:08:41.407882"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "isra1205@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "isra1205@gmail.com"], ["list_id", 1], ["name", "ISRAEL"], ["last_name", "Hernandez Ruiz Velasco"], ["created_at", "2015-03-18 23:08:41.416932"], ["updated_at", "2015-03-18 23:08:41.416932"]]  (10.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cynthiajacksonzam@gmail.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cynthiajacksonzam@gmail.com"], ["list_id", 1], ["name", "Cynthia"], ["last_name", "Jackson"], ["created_at", "2015-03-18 23:08:41.433623"], ["updated_at", "2015-03-18 23:08:41.433623"]]  (353.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alvaromegaherz@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alvaromegaherz@hotmail.com"], ["list_id", 1], ["name", "alvaro"], ["last_name", "mega herz"], ["created_at", "2015-03-18 23:08:41.794348"], ["updated_at", "2015-03-18 23:08:41.794348"]]  (4.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ineslazzaro@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ineslazzaro@hotmail.com"], ["list_id", 1], ["name", "ines"], ["last_name", "lazzaro"], ["created_at", "2015-03-18 23:08:41.806923"], ["updated_at", "2015-03-18 23:08:41.806923"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", " felisajuancolor@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", " felisajuancolor@hotmail.com"], ["list_id", 1], ["name", "Ines"], ["last_name", "Lazzaro"], ["created_at", "2015-03-18 23:08:41.814832"], ["updated_at", "2015-03-18 23:08:41.814832"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mavoun@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mavoun@gmail.com"], ["list_id", 1], ["name", "MARIANA"], ["last_name", "VODANOVIC U"], ["created_at", "2015-03-18 23:08:41.823141"], ["updated_at", "2015-03-18 23:08:41.823141"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nifaze@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nifaze@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Silva de la Cerda"], ["created_at", "2015-03-18 23:08:41.831526"], ["updated_at", "2015-03-18 23:08:41.831526"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felisajuancolor@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felisajuancolor@hotmail.com"], ["list_id", 1], ["name", "INES"], ["last_name", "LAZZARO"], ["created_at", "2015-03-18 23:08:41.839976"], ["updated_at", "2015-03-18 23:08:41.839976"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lallilli@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lallilli@hotmail.com"], ["list_id", 1], ["name", "GUILLERMINA"], ["last_name", "PEREZ"], ["created_at", "2015-03-18 23:08:41.856521"], ["updated_at", "2015-03-18 23:08:41.856521"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "franset@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "franset@hotmail.com"], ["list_id", 1], ["name", "FRAN"], ["last_name", "SETZ"], ["created_at", "2015-03-18 23:08:41.873434"], ["updated_at", "2015-03-18 23:08:41.873434"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "belainne@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "belainne@gmail.com"], ["list_id", 1], ["name", "Berta"], ["last_name", "Borquez"], ["created_at", "2015-03-18 23:08:41.881413"], ["updated_at", "2015-03-18 23:08:41.881413"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luvier@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luvier@gmail.com"], ["list_id", 1], ["name", "LUVIER"], ["last_name", "CASALI"], ["created_at", "2015-03-18 23:08:41.889349"], ["updated_at", "2015-03-18 23:08:41.889349"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "unknown@unknown.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "unknown@unknown.com"], ["list_id", 1], ["name", "unknown"], ["last_name", ""], ["created_at", "2015-03-18 23:08:41.898166"], ["updated_at", "2015-03-18 23:08:41.898166"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "soyyo@cristiangallegos.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "soyyo@cristiangallegos.com"], ["list_id", 1], ["name", "Cristián"], ["last_name", "Gallegos"], ["created_at", "2015-03-18 23:08:41.906646"], ["updated_at", "2015-03-18 23:08:41.906646"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alonso@prenuclear.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alonso@prenuclear.cl"], ["list_id", 1], ["name", "Alonso"], ["last_name", "Duarte"], ["created_at", "2015-03-18 23:08:41.923886"], ["updated_at", "2015-03-18 23:08:41.923886"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caro_parrague@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caro_parrague@yahoo.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Parragué"], ["created_at", "2015-03-18 23:08:41.931993"], ["updated_at", "2015-03-18 23:08:41.931993"]]  (7.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "callella@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "callella@hotmail.com"], ["list_id", 1], ["name", "Javiera"], ["last_name", "Girón Bórquez"], ["created_at", "2015-03-18 23:08:41.945123"], ["updated_at", "2015-03-18 23:08:41.945123"]]  (6.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patilein@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patilein@gmail.com"], ["list_id", 1], ["name", "Patriccia"], ["last_name", ""], ["created_at", "2015-03-18 23:08:41.958187"], ["updated_at", "2015-03-18 23:08:41.958187"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jazmin_lucero@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jazmin_lucero@hotmail.com"], ["list_id", 1], ["name", "Lucero"], ["last_name", ""], ["created_at", "2015-03-18 23:08:41.972521"], ["updated_at", "2015-03-18 23:08:41.972521"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcelap40@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcelap40@yahoo.es"], ["list_id", 1], ["name", "MARCELA"], ["last_name", "A PEDROSA R"], ["created_at", "2015-03-18 23:08:41.980608"], ["updated_at", "2015-03-18 23:08:41.980608"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fabiholapaz@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fabiholapaz@gmail.com"], ["list_id", 1], ["name", "fabiola"], ["last_name", "paz hernandez"], ["created_at", "2015-03-18 23:08:41.988982"], ["updated_at", "2015-03-18 23:08:41.988982"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nachamaturana@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nachamaturana@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Ignacia Maturana"], ["created_at", "2015-03-18 23:08:41.996921"], ["updated_at", "2015-03-18 23:08:41.996921"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leoncamil@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leoncamil@gmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Leon"], ["created_at", "2015-03-18 23:08:42.006638"], ["updated_at", "2015-03-18 23:08:42.006638"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "avigilc@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "avigilc@yahoo.com"], ["list_id", 1], ["name", "Angela"], ["last_name", "Vigil"], ["created_at", "2015-03-18 23:08:42.024021"], ["updated_at", "2015-03-18 23:08:42.024021"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudiamarinjara@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudiamarinjara@hotmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Marín Jara"], ["created_at", "2015-03-18 23:08:42.033416"], ["updated_at", "2015-03-18 23:08:42.033416"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juegocontiza@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juegocontiza@gmail.com"], ["list_id", 1], ["name", "vitto"], ["last_name", "meschi"], ["created_at", "2015-03-18 23:08:42.086591"], ["updated_at", "2015-03-18 23:08:42.086591"]]  (1.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joseomarchavezluna@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joseomarchavezluna@hotmail.com"], ["list_id", 1], ["name", "CHAVEZ"], ["last_name", "LUNA"], ["created_at", "2015-03-18 23:08:42.093825"], ["updated_at", "2015-03-18 23:08:42.093825"]]  (1.9ms) commit transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danielgcampos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danielgcampos@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Campos"], ["created_at", "2015-03-18 23:08:42.100979"], ["updated_at", "2015-03-18 23:08:42.100979"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fbrunaster@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fbrunaster@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Bruna Zalvidea"], ["created_at", "2015-03-18 23:08:42.109098"], ["updated_at", "2015-03-18 23:08:42.109098"]]  (4.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigovw@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigovw@hotmail.com"], ["list_id", 1], ["name", "cuenta"], ["last_name", "inactiva"], ["created_at", "2015-03-18 23:08:42.119877"], ["updated_at", "2015-03-18 23:08:42.119877"]]  (7.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manemoragam@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manemoragam@yahoo.com"], ["list_id", 1], ["name", "mane"], ["last_name", " moraga mollenhauer"], ["created_at", "2015-03-18 23:08:42.139037"], ["updated_at", "2015-03-18 23:08:42.139037"]]  (4.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "margaritadittborn@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "margaritadittborn@hotmail.com"], ["list_id", 1], ["name", "Margarita"], ["last_name", "Dittborn Valle"], ["created_at", "2015-03-18 23:08:42.149397"], ["updated_at", "2015-03-18 23:08:42.149397"]]  (18.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mimart98@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mimart98@yahoo.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Idilia Martins"], ["created_at", "2015-03-18 23:08:42.174082"], ["updated_at", "2015-03-18 23:08:42.174082"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lectordemanjar@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lectordemanjar@gmail.com"], ["list_id", 1], ["name", "oo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:42.188915"], ["updated_at", "2015-03-18 23:08:42.188915"]]  (13.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sopulimonreal@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sopulimonreal@hotmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "MONREAL Chandía"], ["created_at", "2015-03-18 23:08:42.208869"], ["updated_at", "2015-03-18 23:08:42.208869"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diegodeaduriz@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diegodeaduriz@yahoo.com"], ["list_id", 1], ["name", "DIEGO"], ["last_name", "DE ADURIZ"], ["created_at", "2015-03-18 23:08:42.217137"], ["updated_at", "2015-03-18 23:08:42.217137"]]  (8.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dfabres@gmail.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dfabres@gmail.com"], ["list_id", 1], ["name", "DANIELA"], ["last_name", "FABRES BARAHONA"], ["created_at", "2015-03-18 23:08:42.231817"], ["updated_at", "2015-03-18 23:08:42.231817"]]  (13.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matiasbiggs@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matiasbiggs@gmail.com"], ["list_id", 1], ["name", "Matías"], ["last_name", "Oñate Biggs"], ["created_at", "2015-03-18 23:08:42.253744"], ["updated_at", "2015-03-18 23:08:42.253744"]]  (11.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maurobalzarotti@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maurobalzarotti@gmail.com"], ["list_id", 1], ["name", "Mauro"], ["last_name", "Balzarotti"], ["created_at", "2015-03-18 23:08:42.271790"], ["updated_at", "2015-03-18 23:08:42.271790"]]  (9.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "barbarella.o@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "barbarella.o@gmail.com"], ["list_id", 1], ["name", "barbara"], ["last_name", "oettinger searle"], ["created_at", "2015-03-18 23:08:42.288757"], ["updated_at", "2015-03-18 23:08:42.288757"]]  (15.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jovensalo@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jovensalo@yahoo.es"], ["list_id", 1], ["name", "David"], ["last_name", "Salomon"], ["created_at", "2015-03-18 23:08:42.309338"], ["updated_at", "2015-03-18 23:08:42.309338"]]  (23.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josebalmaceda@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josebalmaceda@hotmail.com"], ["list_id", 1], ["name", "josebalmaceda"], ["last_name", ""], ["created_at", "2015-03-18 23:08:42.339166"], ["updated_at", "2015-03-18 23:08:42.339166"]]  (9.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cquijadaa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cquijadaa@gmail.com"], ["list_id", 1], ["name", "Cristhian"], ["last_name", "Quijada"], ["created_at", "2015-03-18 23:08:42.353695"], ["updated_at", "2015-03-18 23:08:42.353695"]]  (12.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "loleandola@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "loleandola@gmail.com"], ["list_id", 1], ["name", "Fernanda"], ["last_name", "Cordero Hansen"], ["created_at", "2015-03-18 23:08:42.372356"], ["updated_at", "2015-03-18 23:08:42.372356"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mjpedric@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mjpedric@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "José Pedraza"], ["created_at", "2015-03-18 23:08:42.389108"], ["updated_at", "2015-03-18 23:08:42.389108"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ramosajen@yahoo.co.uk"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ramosajen@yahoo.co.uk"], ["list_id", 1], ["name", "Jenny"], ["last_name", "Ramos"], ["created_at", "2015-03-18 23:08:42.397509"], ["updated_at", "2015-03-18 23:08:42.397509"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "delpozoysilva@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "delpozoysilva@gmail.com"], ["list_id", 1], ["name", "Alvaro"], ["last_name", "F POZO"], ["created_at", "2015-03-18 23:08:42.405339"], ["updated_at", "2015-03-18 23:08:42.405339"]]  (5.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "politajimenez@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "politajimenez@hotmail.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Jiménez Barranco"], ["created_at", "2015-03-18 23:08:42.416109"], ["updated_at", "2015-03-18 23:08:42.416109"]]  (9.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "malandanza@hotmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "malandanza@hotmail.com"], ["list_id", 1], ["name", "Betania"], ["last_name", "Alvarez"], ["created_at", "2015-03-18 23:08:42.430277"], ["updated_at", "2015-03-18 23:08:42.430277"]]  (12.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maestrosiux@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maestrosiux@gmail.com"], ["list_id", 1], ["name", "Ramiro"], ["last_name", ""], ["created_at", "2015-03-18 23:08:42.450412"], ["updated_at", "2015-03-18 23:08:42.450412"]]  (9.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "davidhorz@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "davidhorz@gmail.com"], ["list_id", 1], ["name", "DAVID"], ["last_name", "HORMAZABAL"], ["created_at", "2015-03-18 23:08:42.465911"], ["updated_at", "2015-03-18 23:08:42.465911"]]  (8.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kiskavega@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kiskavega@hotmail.com"], ["list_id", 1], ["name", "FRANVEGA"], ["last_name", ""], ["created_at", "2015-03-18 23:08:42.479758"], ["updated_at", "2015-03-18 23:08:42.479758"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ataxika@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ataxika@hotmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Leyton Gárate"], ["created_at", "2015-03-18 23:08:42.488775"], ["updated_at", "2015-03-18 23:08:42.488775"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "malvariska@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "malvariska@yahoo.com"], ["list_id", 1], ["name", "MalvarisKa"], ["last_name", ""], ["created_at", "2015-03-18 23:08:42.497588"], ["updated_at", "2015-03-18 23:08:42.497588"]]  (11.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cintipas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cintipas@hotmail.com"], ["list_id", 1], ["name", "Cynthia"], ["last_name", "Passow"], ["created_at", "2015-03-18 23:08:42.514222"], ["updated_at", "2015-03-18 23:08:42.514222"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ppaiyee@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ppaiyee@gmail.com"], ["list_id", 1], ["name", "Paulette"], ["last_name", "Paiyee"], ["created_at", "2015-03-18 23:08:42.581922"], ["updated_at", "2015-03-18 23:08:42.581922"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tlrobled@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tlrobled@uc.cl"], ["list_id", 1], ["name", "Tania"], ["last_name", "Lenina Robledo Leiva"], ["created_at", "2015-03-18 23:08:42.589815"], ["updated_at", "2015-03-18 23:08:42.589815"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "myros84@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "myros84@gmail.com"], ["list_id", 1], ["name", "MIROSLAVA"], ["last_name", "CASTILLO SNEBERGER"], ["created_at", "2015-03-18 23:08:42.598754"], ["updated_at", "2015-03-18 23:08:42.598754"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marambio.javiera@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marambio.javiera@gmail.com"], ["list_id", 1], ["name", "JAVIERA"], ["last_name", "MARAMBIO"], ["created_at", "2015-03-18 23:08:42.606902"], ["updated_at", "2015-03-18 23:08:42.606902"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mai_aguirre@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mai_aguirre@hotmail.com"], ["list_id", 1], ["name", "magdalena"], ["last_name", "aguirre"], ["created_at", "2015-03-18 23:08:42.614970"], ["updated_at", "2015-03-18 23:08:42.614970"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felipez007@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felipez007@gmail.com"], ["list_id", 1], ["name", "felipe"], ["last_name", "contreras"], ["created_at", "2015-03-18 23:08:42.639028"], ["updated_at", "2015-03-18 23:08:42.639028"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ignacia.saavedra@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ignacia.saavedra@gmail.com"], ["list_id", 1], ["name", "Ignacia"], ["last_name", "Saavedra"], ["created_at", "2015-03-18 23:08:42.648136"], ["updated_at", "2015-03-18 23:08:42.648136"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "buhovomitando@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "buhovomitando@gmail.com"], ["list_id", 1], ["name", "Rokat"], ["last_name", ""], ["created_at", "2015-03-18 23:08:42.656452"], ["updated_at", "2015-03-18 23:08:42.656452"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amaleones@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amaleones@hotmail.com"], ["list_id", 1], ["name", "Antonella"], ["last_name", "Mellibosky"], ["created_at", "2015-03-18 23:08:42.664383"], ["updated_at", "2015-03-18 23:08:42.664383"]]  (5.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dominguez.sofia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dominguez.sofia@gmail.com"], ["list_id", 1], ["name", "sofia"], ["last_name", "Dominguez"], ["created_at", "2015-03-18 23:08:42.675335"], ["updated_at", "2015-03-18 23:08:42.675335"]]  (12.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arturovalderas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arturovalderas@gmail.com"], ["list_id", 1], ["name", "Arturo"], ["last_name", "Valderas"], ["created_at", "2015-03-18 23:08:42.693398"], ["updated_at", "2015-03-18 23:08:42.693398"]]  (9.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camikibazar@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camikibazar@gmail.com"], ["list_id", 1], ["name", "camiki"], ["last_name", ""], ["created_at", "2015-03-18 23:08:42.708126"], ["updated_at", "2015-03-18 23:08:42.708126"]]  (6.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "guamarin@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "guamarin@yahoo.com.ar"], ["list_id", 1], ["name", "GABRIEL"], ["last_name", "DI MARCO"], ["created_at", "2015-03-18 23:08:42.719557"], ["updated_at", "2015-03-18 23:08:42.719557"]]  (5.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bernhadita@hotmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bernhadita@hotmail.com"], ["list_id", 1], ["name", "Bernardita"], ["last_name", "Schulz Santelices"], ["created_at", "2015-03-18 23:08:42.738083"], ["updated_at", "2015-03-18 23:08:42.738083"]]  (5.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tativuka@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tativuka@gmail.com"], ["list_id", 1], ["name", "Tatiana"], ["last_name", "Vukasovic"], ["created_at", "2015-03-18 23:08:42.753156"], ["updated_at", "2015-03-18 23:08:42.753156"]]  (6.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "conita663@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "conita663@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Tagini"], ["created_at", "2015-03-18 23:08:42.765135"], ["updated_at", "2015-03-18 23:08:42.765135"]]  (6.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pascunan@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pascunan@yahoo.com"], ["list_id", 1], ["name", "María"], ["last_name", "Paz Bascuñán"], ["created_at", "2015-03-18 23:08:42.777016"], ["updated_at", "2015-03-18 23:08:42.777016"]]  (3.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ricardomandujano@hotmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ricardomandujano@hotmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Mandujano"], ["created_at", "2015-03-18 23:08:42.787894"], ["updated_at", "2015-03-18 23:08:42.787894"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "djjousse2000@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "djjousse2000@yahoo.es"], ["list_id", 1], ["name", "Jose"], ["last_name", "Luis Nuñez"], ["created_at", "2015-03-18 23:08:42.802586"], ["updated_at", "2015-03-18 23:08:42.802586"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tomasfernandezdiaz@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tomasfernandezdiaz@hotmail.com"], ["list_id", 1], ["name", "Tomás"], ["last_name", "Fernández Díaz"], ["created_at", "2015-03-18 23:08:42.810351"], ["updated_at", "2015-03-18 23:08:42.810351"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "flaten@flaten.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "flaten@flaten.cl"], ["list_id", 1], ["name", "Cecilia"], ["last_name", "Flaten"], ["created_at", "2015-03-18 23:08:42.818967"], ["updated_at", "2015-03-18 23:08:42.818967"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dgarcia@genesisgrafica.cl"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dgarcia@genesisgrafica.cl"], ["list_id", 1], ["name", "Danilo"], ["last_name", "Garcia Medrano"], ["created_at", "2015-03-18 23:08:42.837500"], ["updated_at", "2015-03-18 23:08:42.837500"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "baeza.ricardo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "baeza.ricardo@hotmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Baeza Muñoz"], ["created_at", "2015-03-18 23:08:42.852086"], ["updated_at", "2015-03-18 23:08:42.852086"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "movimientobohemia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "movimientobohemia@hotmail.com"], ["list_id", 1], ["name", "Christian"], ["last_name", "Andre Pelaez Vidal"], ["created_at", "2015-03-18 23:08:42.860516"], ["updated_at", "2015-03-18 23:08:42.860516"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristobalbarrientos@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristobalbarrientos@gmail.com"], ["list_id", 1], ["name", "Cristobal"], ["last_name", "Barrientos"], ["created_at", "2015-03-18 23:08:42.868278"], ["updated_at", "2015-03-18 23:08:42.868278"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eolivares60@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eolivares60@yahoo.es"], ["list_id", 1], ["name", "Estrella"], ["last_name", "Olivares"], ["created_at", "2015-03-18 23:08:42.876966"], ["updated_at", "2015-03-18 23:08:42.876966"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mikehasick@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mikehasick@yahoo.com"], ["list_id", 1], ["name", "MIKE"], ["last_name", "HASICK"], ["created_at", "2015-03-18 23:08:42.887570"], ["updated_at", "2015-03-18 23:08:42.887570"]]  (7.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gpalma@inform.dk"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gpalma@inform.dk"], ["list_id", 1], ["name", "Gerardo"], ["last_name", "Palma"], ["created_at", "2015-03-18 23:08:42.900184"], ["updated_at", "2015-03-18 23:08:42.900184"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "woodstocky88@hotmail.com"]]  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "woodstocky88@hotmail.com"], ["list_id", 1], ["name", "TRINI"], ["last_name", "RIOS"], ["created_at", "2015-03-18 23:08:42.908399"], ["updated_at", "2015-03-18 23:08:42.908399"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "qotiqox@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "qotiqox@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Cox"], ["created_at", "2015-03-18 23:08:42.916873"], ["updated_at", "2015-03-18 23:08:42.916873"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jotacarloza@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jotacarloza@gmail.com"], ["list_id", 1], ["name", "JoTa"], ["last_name", "Carloza"], ["created_at", "2015-03-18 23:08:42.924656"], ["updated_at", "2015-03-18 23:08:42.924656"]]  (8.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "galvez.alfageme@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "galvez.alfageme@gmail.com"], ["list_id", 1], ["name", "Isidora"], ["last_name", "Gálvez"], ["created_at", "2015-03-18 23:08:42.938085"], ["updated_at", "2015-03-18 23:08:42.938085"]]  (9.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marielsahue@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marielsahue@gmail.com"], ["list_id", 1], ["name", "mariel"], ["last_name", "sanhueza"], ["created_at", "2015-03-18 23:08:42.952721"], ["updated_at", "2015-03-18 23:08:42.952721"]]  (13.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vivilopezg@yahoo.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vivilopezg@yahoo.com"], ["list_id", 1], ["name", "Viviana"], ["last_name", "López"], ["created_at", "2015-03-18 23:08:42.972632"], ["updated_at", "2015-03-18 23:08:42.972632"]]  (8.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nilarron@uc.cl"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nilarron@uc.cl"], ["list_id", 1], ["name", "Misao"], ["last_name", ""], ["created_at", "2015-03-18 23:08:42.988190"], ["updated_at", "2015-03-18 23:08:42.988190"]]  (8.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camilmontero@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camilmontero@hotmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Montero Neira"], ["created_at", "2015-03-18 23:08:43.002612"], ["updated_at", "2015-03-18 23:08:43.002612"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablinacastillo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablinacastillo@gmail.com"], ["list_id", 1], ["name", "PaBlina"], ["last_name", "Castillo"], ["created_at", "2015-03-18 23:08:43.011407"], ["updated_at", "2015-03-18 23:08:43.011407"]]  (13.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "centopeia@csmtelecom.com.br"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "centopeia@csmtelecom.com.br"], ["list_id", 1], ["name", "claudio"], ["last_name", "trindade"], ["created_at", "2015-03-18 23:08:43.030720"], ["updated_at", "2015-03-18 23:08:43.030720"]]  (10.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "santiago.ascui@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "santiago.ascui@gmail.com"], ["list_id", 1], ["name", "Santiago"], ["last_name", "Ascui"], ["created_at", "2015-03-18 23:08:43.049924"], ["updated_at", "2015-03-18 23:08:43.049924"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vjcocina@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vjcocina@gmail.com"], ["list_id", 1], ["name", "vicente"], ["last_name", "josé cociña"], ["created_at", "2015-03-18 23:08:43.059477"], ["updated_at", "2015-03-18 23:08:43.059477"]]  (9.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "m.jesus.seguel@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "m.jesus.seguel@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Jesus Seguel T"], ["created_at", "2015-03-18 23:08:43.076430"], ["updated_at", "2015-03-18 23:08:43.076430"]]  (7.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gonzalo.salinasc@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gonzalo.salinasc@gmail.com"], ["list_id", 1], ["name", "Gonzalo"], ["last_name", "Salinas"], ["created_at", "2015-03-18 23:08:43.089901"], ["updated_at", "2015-03-18 23:08:43.089901"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jomanei@yahoo,com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jomanei@yahoo,com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Maneiro Quesada"], ["created_at", "2015-03-18 23:08:43.098486"], ["updated_at", "2015-03-18 23:08:43.098486"]]  (16.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cferradasoto@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cferradasoto@gmail.com"], ["list_id", 1], ["name", "christian"], ["last_name", "ferrada"], ["created_at", "2015-03-18 23:08:43.120471"], ["updated_at", "2015-03-18 23:08:43.120471"]]  (10.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosaapablaza@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosaapablaza@yahoo.es"], ["list_id", 1], ["name", "Rosa"], ["last_name", "Apablaza"], ["created_at", "2015-03-18 23:08:43.137220"], ["updated_at", "2015-03-18 23:08:43.137220"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristianoliva@catapilco.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristianoliva@catapilco.cl"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Oliva"], ["created_at", "2015-03-18 23:08:43.146029"], ["updated_at", "2015-03-18 23:08:43.146029"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pabloxcourten@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pabloxcourten@yahoo.com"], ["list_id", 1], ["name", "pablo"], ["last_name", "courten"], ["created_at", "2015-03-18 23:08:43.154471"], ["updated_at", "2015-03-18 23:08:43.154471"]]  (15.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catalinavaras@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catalinavaras@gmail.com"], ["list_id", 1], ["name", "Catalina"], ["last_name", "Varas"], ["created_at", "2015-03-18 23:08:43.176036"], ["updated_at", "2015-03-18 23:08:43.176036"]]  (9.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arquisentidos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arquisentidos@gmail.com"], ["list_id", 1], ["name", "Nicolas"], ["last_name", "JB"], ["created_at", "2015-03-18 23:08:43.190523"], ["updated_at", "2015-03-18 23:08:43.190523"]]  (12.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ireneperezperez@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ireneperezperez@yahoo.es"], ["list_id", 1], ["name", "irene"], ["last_name", ""], ["created_at", "2015-03-18 23:08:43.208616"], ["updated_at", "2015-03-18 23:08:43.208616"]]  (7.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@lasnaves.org"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@lasnaves.org"], ["list_id", 1], ["name", "Colectivo"], ["last_name", "Naves"], ["created_at", "2015-03-18 23:08:43.221225"], ["updated_at", "2015-03-18 23:08:43.221225"]]  (5.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudia_godoy_o@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudia_godoy_o@hotmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Godoy"], ["created_at", "2015-03-18 23:08:43.236588"], ["updated_at", "2015-03-18 23:08:43.236588"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rsgarciapalma@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rsgarciapalma@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "García Palma"], ["created_at", "2015-03-18 23:08:43.244571"], ["updated_at", "2015-03-18 23:08:43.244571"]]  (5.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "velosianismo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "velosianismo@gmail.com"], ["list_id", 1], ["name", "lautaro"], ["last_name", "veloso tormen"], ["created_at", "2015-03-18 23:08:43.254953"], ["updated_at", "2015-03-18 23:08:43.254953"]]  (14.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulomendesfaria@terra.com.br"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulomendesfaria@terra.com.br"], ["list_id", 1], ["name", "mendes"], ["last_name", "faria"], ["created_at", "2015-03-18 23:08:43.275775"], ["updated_at", "2015-03-18 23:08:43.275775"]]  (7.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "winnim@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "winnim@gmail.com"], ["list_id", 1], ["name", "marcelo"], ["last_name", "winniczuk"], ["created_at", "2015-03-18 23:08:43.288674"], ["updated_at", "2015-03-18 23:08:43.288674"]]  (14.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leandriono@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leandriono@hotmail.com"], ["list_id", 1], ["name", "Leandro"], ["last_name", "Prado Garcés"], ["created_at", "2015-03-18 23:08:43.309449"], ["updated_at", "2015-03-18 23:08:43.309449"]]  (15.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguelgaetec@gmail.com"]]  (0.3ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguelgaetec@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Angel Gaete Cáceres"], ["created_at", "2015-03-18 23:08:43.332072"], ["updated_at", "2015-03-18 23:08:43.332072"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cmiguelbetan@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cmiguelbetan@yahoo.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Betancourt"], ["created_at", "2015-03-18 23:08:43.389796"], ["updated_at", "2015-03-18 23:08:43.389796"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josefinagonzale@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josefinagonzale@gmail.com"], ["list_id", 1], ["name", "Josefina"], ["last_name", "González"], ["created_at", "2015-03-18 23:08:43.398502"], ["updated_at", "2015-03-18 23:08:43.398502"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "oscarpoliotto@powervt.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "oscarpoliotto@powervt.com.ar"], ["list_id", 1], ["name", "Oscar"], ["last_name", "Poliotto"], ["created_at", "2015-03-18 23:08:43.407011"], ["updated_at", "2015-03-18 23:08:43.407011"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joshswalker@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joshswalker@yahoo.com"], ["list_id", 1], ["name", "joshua"], ["last_name", "walker"], ["created_at", "2015-03-18 23:08:43.414920"], ["updated_at", "2015-03-18 23:08:43.414920"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francgaune@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francgaune@hotmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Gaune Corradi"], ["created_at", "2015-03-18 23:08:43.423058"], ["updated_at", "2015-03-18 23:08:43.423058"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "valentinacont@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "valentinacont@hotmail.com"], ["list_id", 1], ["name", "valentina"], ["last_name", "varela"], ["created_at", "2015-03-18 23:08:43.435741"], ["updated_at", "2015-03-18 23:08:43.435741"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastiansilva_p@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastiansilva_p@hotmail.com"], ["list_id", 1], ["name", "SEBASTIAN"], ["last_name", "SILVA"], ["created_at", "2015-03-18 23:08:43.444172"], ["updated_at", "2015-03-18 23:08:43.444172"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wangulem_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wangulem_@hotmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Zelada"], ["created_at", "2015-03-18 23:08:43.452751"], ["updated_at", "2015-03-18 23:08:43.452751"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gpm.grafik@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gpm.grafik@gmail.com"], ["list_id", 1], ["name", "HILACHENTO"], ["last_name", ""], ["created_at", "2015-03-18 23:08:43.461381"], ["updated_at", "2015-03-18 23:08:43.461381"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "armandoruiz8@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "armandoruiz8@hotmail.com"], ["list_id", 1], ["name", "Armando"], ["last_name", "Ruiz"], ["created_at", "2015-03-18 23:08:43.469855"], ["updated_at", "2015-03-18 23:08:43.469855"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hilvanado@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hilvanado@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Santander"], ["created_at", "2015-03-18 23:08:43.486514"], ["updated_at", "2015-03-18 23:08:43.486514"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "angepil_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "angepil_@hotmail.com"], ["list_id", 1], ["name", "Pilar"], ["last_name", "de los Angeles Godoy Cortez"], ["created_at", "2015-03-18 23:08:43.494225"], ["updated_at", "2015-03-18 23:08:43.494225"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ef@mamchiloe.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ef@mamchiloe.cl"], ["list_id", 1], ["name", "Eduardo"], ["last_name", "Feuerhake"], ["created_at", "2015-03-18 23:08:43.502629"], ["updated_at", "2015-03-18 23:08:43.502629"]]  (12.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andreaugarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andreaugarte@gmail.com"], ["list_id", 1], ["name", "ANDREA"], ["last_name", "UGARTE"], ["created_at", "2015-03-18 23:08:43.521866"], ["updated_at", "2015-03-18 23:08:43.521866"]]  (14.9ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catatuca@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catatuca@yahoo.com"], ["list_id", 1], ["name", "Catalina"], ["last_name", "Tuca"], ["created_at", "2015-03-18 23:08:43.542972"], ["updated_at", "2015-03-18 23:08:43.542972"]]  (16.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tobernorberto@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tobernorberto@yahoo.com.mx"], ["list_id", 1], ["name", "NORBERTO"], ["last_name", "RODRIGUEZ"], ["created_at", "2015-03-18 23:08:43.565951"], ["updated_at", "2015-03-18 23:08:43.565951"]]  (15.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alvaropaz21@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alvaropaz21@gmail.com"], ["list_id", 1], ["name", "Alvaro"], ["last_name", "Paz"], ["created_at", "2015-03-18 23:08:43.587225"], ["updated_at", "2015-03-18 23:08:43.587225"]]  (16.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carrionfelipe@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carrionfelipe@yahoo.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Carrión Rojas"], ["created_at", "2015-03-18 23:08:43.610900"], ["updated_at", "2015-03-18 23:08:43.610900"]]  (15.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matiasantamaria@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matiasantamaria@hotmail.com"], ["list_id", 1], ["name", "matias"], ["last_name", "santa maria cea"], ["created_at", "2015-03-18 23:08:43.634042"], ["updated_at", "2015-03-18 23:08:43.634042"]]  (14.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "albordedelborde@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "albordedelborde@hotmail.com"], ["list_id", 1], ["name", "ilustraciones"], ["last_name", ""], ["created_at", "2015-03-18 23:08:43.654847"], ["updated_at", "2015-03-18 23:08:43.654847"]]  (15.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "profesorjleyton@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "profesorjleyton@yahoo.es"], ["list_id", 1], ["name", "Jonathan"], ["last_name", "Leyton"], ["created_at", "2015-03-18 23:08:43.676231"], ["updated_at", "2015-03-18 23:08:43.676231"]]  (16.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "emperor@phenomena.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "emperor@phenomena.cl"], ["list_id", 1], ["name", "PAULO"], ["last_name", "FERNANDEZ"], ["created_at", "2015-03-18 23:08:43.699438"], ["updated_at", "2015-03-18 23:08:43.699438"]]  (9.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dsthandier@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dsthandier@gmail.com"], ["list_id", 1], ["name", "domenico"], ["last_name", ""], ["created_at", "2015-03-18 23:08:43.715136"], ["updated_at", "2015-03-18 23:08:43.715136"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "escaffi0@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "escaffi0@gmail.com"], ["list_id", 1], ["name", "ESCAFFI"], ["last_name", ""], ["created_at", "2015-03-18 23:08:43.723642"], ["updated_at", "2015-03-18 23:08:43.723642"]]  (6.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "igor_barrenechea@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "igor_barrenechea@hotmail.com"], ["list_id", 1], ["name", "Igor"], ["last_name", "Barrenechea Buzeta"], ["created_at", "2015-03-18 23:08:43.736267"], ["updated_at", "2015-03-18 23:08:43.736267"]]  (18.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antitodozine@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antitodozine@gmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Evelyn Guajardo Briones"], ["created_at", "2015-03-18 23:08:43.761114"], ["updated_at", "2015-03-18 23:08:43.761114"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "martina.asenjo@gmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "martina.asenjo@gmail.com"], ["list_id", 1], ["name", "Martina"], ["last_name", "Asenjo"], ["created_at", "2015-03-18 23:08:43.770899"], ["updated_at", "2015-03-18 23:08:43.770899"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "piturasxgeisse@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "piturasxgeisse@hotmail.com"], ["list_id", 1], ["name", "ximena"], ["last_name", "geisse"], ["created_at", "2015-03-18 23:08:43.785163"], ["updated_at", "2015-03-18 23:08:43.785163"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosanagh85@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosanagh85@hotmail.com"], ["list_id", 1], ["name", "Rosario"], ["last_name", "García Huidobro Munita"], ["created_at", "2015-03-18 23:08:43.792792"], ["updated_at", "2015-03-18 23:08:43.792792"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ignacio@factor-d.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ignacio@factor-d.cl"], ["list_id", 1], ["name", "Ignacio"], ["last_name", "Peña y Lillo Herrera"], ["created_at", "2015-03-18 23:08:43.802399"], ["updated_at", "2015-03-18 23:08:43.802399"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joaquinc@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joaquinc@gmail.com"], ["list_id", 1], ["name", "Joaquín"], ["last_name", "Cociña"], ["created_at", "2015-03-18 23:08:43.811323"], ["updated_at", "2015-03-18 23:08:43.811323"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulaporpaula@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulaporpaula@gmail.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Rodríguez"], ["created_at", "2015-03-18 23:08:43.819824"], ["updated_at", "2015-03-18 23:08:43.819824"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "coteleonlopez@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "coteleonlopez@gmail.com"], ["list_id", 1], ["name", "Cote"], ["last_name", "Leon"], ["created_at", "2015-03-18 23:08:43.835134"], ["updated_at", "2015-03-18 23:08:43.835134"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "indice1980@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "indice1980@gmail.com"], ["list_id", 1], ["name", "ignacio"], ["last_name", "muñoz vicuña"], ["created_at", "2015-03-18 23:08:43.842901"], ["updated_at", "2015-03-18 23:08:43.842901"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "castellano.rosario@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "castellano.rosario@gmail.com"], ["list_id", 1], ["name", "ROSARIO"], ["last_name", "CASTELLANO GAZITUA"], ["created_at", "2015-03-18 23:08:43.852272"], ["updated_at", "2015-03-18 23:08:43.852272"]]  (4.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elisitab@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elisitab@gmail.com"], ["list_id", 1], ["name", "Elisa"], ["last_name", "Balmaceda"], ["created_at", "2015-03-18 23:08:43.862384"], ["updated_at", "2015-03-18 23:08:43.862384"]]  (9.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jpcorreadigital@gmail.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jpcorreadigital@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Pablo Correa"], ["created_at", "2015-03-18 23:08:43.877099"], ["updated_at", "2015-03-18 23:08:43.877099"]]  (5.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "plutonexiliado@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "plutonexiliado@yahoo.es"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Reyes"], ["created_at", "2015-03-18 23:08:43.890291"], ["updated_at", "2015-03-18 23:08:43.890291"]]  (13.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zulaypina@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zulaypina@yahoo.es"], ["list_id", 1], ["name", "zulay"], ["last_name", "piña"], ["created_at", "2015-03-18 23:08:43.909986"], ["updated_at", "2015-03-18 23:08:43.909986"]]  (10.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcosvillacorta@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcosvillacorta@yahoo.com"], ["list_id", 1], ["name", "marcos"], ["last_name", "tocino"], ["created_at", "2015-03-18 23:08:43.927078"], ["updated_at", "2015-03-18 23:08:43.927078"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andreasilvaguzman@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andreasilvaguzman@hotmail.com"], ["list_id", 1], ["name", "Andrea"], ["last_name", "Silva Guzmán"], ["created_at", "2015-03-18 23:08:43.936857"], ["updated_at", "2015-03-18 23:08:43.936857"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "villover@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "villover@hotmail.com"], ["list_id", 1], ["name", "Jose"], ["last_name", "Maria Macaya"], ["created_at", "2015-03-18 23:08:43.945587"], ["updated_at", "2015-03-18 23:08:43.945587"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mr.trafic@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mr.trafic@gmail.com"], ["list_id", 1], ["name", "Trafixxx"], ["last_name", "del bosque"], ["created_at", "2015-03-18 23:08:43.954194"], ["updated_at", "2015-03-18 23:08:43.954194"]]  (4.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mane_adaro@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mane_adaro@yahoo.es"], ["list_id", 1], ["name", "MANE"], ["last_name", "ADARO"], ["created_at", "2015-03-18 23:08:43.964358"], ["updated_at", "2015-03-18 23:08:43.964358"]]  (11.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catalinaschliebener@buuuu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catalinaschliebener@buuuu.com"], ["list_id", 1], ["name", "CATALINA"], ["last_name", "SCHLIEBENER"], ["created_at", "2015-03-18 23:08:43.982730"], ["updated_at", "2015-03-18 23:08:43.982730"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "valecostabal@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "valecostabal@gmail.com"], ["list_id", 1], ["name", "valentina"], ["last_name", "costabal"], ["created_at", "2015-03-18 23:08:43.991824"], ["updated_at", "2015-03-18 23:08:43.991824"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "peerro@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "peerro@gmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Lantadilla"], ["created_at", "2015-03-18 23:08:44.000378"], ["updated_at", "2015-03-18 23:08:44.000378"]]  (4.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camilaletelier@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camilaletelier@hotmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Letelier"], ["created_at", "2015-03-18 23:08:44.010138"], ["updated_at", "2015-03-18 23:08:44.010138"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "evelyn.cautivo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "evelyn.cautivo@gmail.com"], ["list_id", 1], ["name", "[:::LYNC:::]"], ["last_name", ""], ["created_at", "2015-03-18 23:08:44.018814"], ["updated_at", "2015-03-18 23:08:44.018814"]]  (7.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yuyiazpiri@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yuyiazpiri@hotmail.com"], ["list_id", 1], ["name", "lourdes"], ["last_name", "azpiri"], ["created_at", "2015-03-18 23:08:44.034644"], ["updated_at", "2015-03-18 23:08:44.034644"]]  (13.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mazzzuco@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mazzzuco@gmail.com"], ["list_id", 1], ["name", "Mauricio"], ["last_name", "Zúñiga Copello"], ["created_at", "2015-03-18 23:08:44.053917"], ["updated_at", "2015-03-18 23:08:44.053917"]]  (5.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "colibreja@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "colibreja@hotmail.com"], ["list_id", 1], ["name", "Catalina"], ["last_name", "Silva Guzmán"], ["created_at", "2015-03-18 23:08:44.065749"], ["updated_at", "2015-03-18 23:08:44.065749"]]  (5.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mauro.longa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mauro.longa@gmail.com"], ["list_id", 1], ["name", "ariel"], ["last_name", ""], ["created_at", "2015-03-18 23:08:44.084778"], ["updated_at", "2015-03-18 23:08:44.084778"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manefla@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manefla@gmail.com"], ["list_id", 1], ["name", "magdalena"], ["last_name", "valdes fleischli"], ["created_at", "2015-03-18 23:08:44.093958"], ["updated_at", "2015-03-18 23:08:44.093958"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sofiavergar@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sofiavergar@gmail.com"], ["list_id", 1], ["name", "Sofia"], ["last_name", "Vergara"], ["created_at", "2015-03-18 23:08:44.150306"], ["updated_at", "2015-03-18 23:08:44.150306"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amontanea@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amontanea@gmail.com"], ["list_id", 1], ["name", "Andrea"], ["last_name", "Montané Anwandter"], ["created_at", "2015-03-18 23:08:44.159168"], ["updated_at", "2015-03-18 23:08:44.159168"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nquintano@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nquintano@yahoo.com"], ["list_id", 1], ["name", "Nicolas"], ["last_name", "Quintano"], ["created_at", "2015-03-18 23:08:44.167642"], ["updated_at", "2015-03-18 23:08:44.167642"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sol_blas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sol_blas@hotmail.com"], ["list_id", 1], ["name", "Soledad"], ["last_name", "Benavides"], ["created_at", "2015-03-18 23:08:44.176905"], ["updated_at", "2015-03-18 23:08:44.176905"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ismaelav@gmail.com blueberrybird18@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ismaelav@gmail.com blueberrybird18@hotmail.com"], ["list_id", 1], ["name", "Ismaela"], ["last_name", "Vidal Matteau"], ["created_at", "2015-03-18 23:08:44.184561"], ["updated_at", "2015-03-18 23:08:44.184561"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maria_jose_gas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maria_jose_gas@hotmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Jose Gasmuri"], ["created_at", "2015-03-18 23:08:44.192521"], ["updated_at", "2015-03-18 23:08:44.192521"]]  (5.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "invunchearte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "invunchearte@gmail.com"], ["list_id", 1], ["name", "Leonardo"], ["last_name", "Casella"], ["created_at", "2015-03-18 23:08:44.204419"], ["updated_at", "2015-03-18 23:08:44.204419"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "majobarros@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "majobarros@yahoo.com"], ["list_id", 1], ["name", "MARIA"], ["last_name", "JOSE Barros Ugarte"], ["created_at", "2015-03-18 23:08:44.212767"], ["updated_at", "2015-03-18 23:08:44.212767"]]  (12.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigofigueroa@arquitas.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigofigueroa@arquitas.cl"], ["list_id", 1], ["name", "RORIGO"], ["last_name", "FIGUEROA PALACIOS"], ["created_at", "2015-03-18 23:08:44.231754"], ["updated_at", "2015-03-18 23:08:44.231754"]]  (15.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "herz89@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "herz89@hotmail.com"], ["list_id", 1], ["name", "Alecks"], ["last_name", "HERZ"], ["created_at", "2015-03-18 23:08:44.252999"], ["updated_at", "2015-03-18 23:08:44.252999"]]  (5.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "adrian.gouet@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "adrian.gouet@gmail.com"], ["list_id", 1], ["name", "adrian"], ["last_name", "gouet hiriart"], ["created_at", "2015-03-18 23:08:44.264347"], ["updated_at", "2015-03-18 23:08:44.264347"]]  (10.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Pinorra80@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Pinorra80@yahoo.es"], ["list_id", 1], ["name", "Gonzalo"], ["last_name", "Aguirre"], ["created_at", "2015-03-18 23:08:44.280831"], ["updated_at", "2015-03-18 23:08:44.280831"]]  (11.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pekind@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pekind@gmail.com"], ["list_id", 1], ["name", "Patricio"], ["last_name", "Kind"], ["created_at", "2015-03-18 23:08:44.300056"], ["updated_at", "2015-03-18 23:08:44.300056"]]  (15.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulgalue@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulgalue@hotmail.com"], ["list_id", 1], ["name", "johan"], ["last_name", "paul galue"], ["created_at", "2015-03-18 23:08:44.321547"], ["updated_at", "2015-03-18 23:08:44.321547"]]  (15.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xlaomelo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xlaomelo@hotmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Sofía Melo Cabello"], ["created_at", "2015-03-18 23:08:44.343110"], ["updated_at", "2015-03-18 23:08:44.343110"]]  (15.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pabloandresmontt@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pabloandresmontt@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Andres Montt"], ["created_at", "2015-03-18 23:08:44.365974"], ["updated_at", "2015-03-18 23:08:44.365974"]]  (15.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "saraoblisar@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "saraoblisar@yahoo.es"], ["list_id", 1], ["name", "sara"], ["last_name", ""], ["created_at", "2015-03-18 23:08:44.388096"], ["updated_at", "2015-03-18 23:08:44.388096"]]  (15.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolasep@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolasep@gmail.com"], ["list_id", 1], ["name", "CAROLA"], ["last_name", "SEPULVEDA FUENTES"], ["created_at", "2015-03-18 23:08:44.410974"], ["updated_at", "2015-03-18 23:08:44.410974"]]  (15.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "punto.clava@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "punto.clava@hotmail.com"], ["list_id", 1], ["name", "Cristobal"], ["last_name", "Valenzuela"], ["created_at", "2015-03-18 23:08:44.432730"], ["updated_at", "2015-03-18 23:08:44.432730"]]  (15.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antogagliano@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antogagliano@yahoo.com.ar"], ["list_id", 1], ["name", "Antonio"], ["last_name", "Gagliano"], ["created_at", "2015-03-18 23:08:44.454159"], ["updated_at", "2015-03-18 23:08:44.454159"]]  (16.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolv9@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolv9@gmail.com"], ["list_id", 1], ["name", "Carol"], ["last_name", "Vargas Bastias"], ["created_at", "2015-03-18 23:08:44.477465"], ["updated_at", "2015-03-18 23:08:44.477465"]]  (15.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patricio.fc@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patricio.fc@gmail.com"], ["list_id", 1], ["name", "PATRICIO"], ["last_name", "FERNÁNDEZ"], ["created_at", "2015-03-18 23:08:44.499608"], ["updated_at", "2015-03-18 23:08:44.499608"]]  (15.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "crystalships@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "crystalships@hotmail.com"], ["list_id", 1], ["name", "cristal"], ["last_name", "m"], ["created_at", "2015-03-18 23:08:44.521523"], ["updated_at", "2015-03-18 23:08:44.521523"]]  (15.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "solerusso@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "solerusso@gmail.com"], ["list_id", 1], ["name", "Soledad"], ["last_name", "Russo"], ["created_at", "2015-03-18 23:08:44.543644"], ["updated_at", "2015-03-18 23:08:44.543644"]]  (16.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosabeas5@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosabeas5@hotmail.com"], ["list_id", 1], ["name", "ROSITA"], ["last_name", "BEAS CAPLLONCH"], ["created_at", "2015-03-18 23:08:44.567957"], ["updated_at", "2015-03-18 23:08:44.567957"]]  (15.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joaquin.r.u@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joaquin.r.u@gmail.com"], ["list_id", 1], ["name", "Joaquín"], ["last_name", "Reyes Urrutia"], ["created_at", "2015-03-18 23:08:44.588892"], ["updated_at", "2015-03-18 23:08:44.588892"]]  (18.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "primate1@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "primate1@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Meza Piñones"], ["created_at", "2015-03-18 23:08:44.613147"], ["updated_at", "2015-03-18 23:08:44.613147"]]  (5.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ocupasocupas@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ocupasocupas@gmail.com"], ["list_id", 1], ["name", "OCUPAS"], ["last_name", ""], ["created_at", "2015-03-18 23:08:44.625067"], ["updated_at", "2015-03-18 23:08:44.625067"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gquercia@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gquercia@gmail.com"], ["list_id", 1], ["name", "Graciela"], ["last_name", "Quercia"], ["created_at", "2015-03-18 23:08:44.634179"], ["updated_at", "2015-03-18 23:08:44.634179"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "buildingthek@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "buildingthek@gmail.com"], ["list_id", 1], ["name", "BuildingtheK"], ["last_name", ""], ["created_at", "2015-03-18 23:08:44.649704"], ["updated_at", "2015-03-18 23:08:44.649704"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "isidoraira@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "isidoraira@gmail.com"], ["list_id", 1], ["name", "isidora"], ["last_name", "irarrazaval"], ["created_at", "2015-03-18 23:08:44.658035"], ["updated_at", "2015-03-18 23:08:44.658035"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bella_eternidad@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bella_eternidad@hotmail.com"], ["list_id", 1], ["name", "pia"], ["last_name", "inzunza"], ["created_at", "2015-03-18 23:08:44.666947"], ["updated_at", "2015-03-18 23:08:44.666947"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nicolaspmelo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nicolaspmelo@hotmail.com"], ["list_id", 1], ["name", "Nicolas"], ["last_name", "Parrao Melo"], ["created_at", "2015-03-18 23:08:44.675810"], ["updated_at", "2015-03-18 23:08:44.675810"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artificisanimal@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artificisanimal@hotmail.com"], ["list_id", 1], ["name", "Jon"], ["last_name", "Juanma Illescas Martínez"], ["created_at", "2015-03-18 23:08:44.684240"], ["updated_at", "2015-03-18 23:08:44.684240"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fran.ahlers@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fran.ahlers@gmail.com"], ["list_id", 1], ["name", "francisca"], ["last_name", "Ahlers"], ["created_at", "2015-03-18 23:08:44.699977"], ["updated_at", "2015-03-18 23:08:44.699977"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gajardopinta@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gajardopinta@yahoo.es"], ["list_id", 1], ["name", "Cristóbal"], ["last_name", "Gajardo Rodríguez"], ["created_at", "2015-03-18 23:08:44.708755"], ["updated_at", "2015-03-18 23:08:44.708755"]]  (5.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "losolteros@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "losolteros@hotmail.com"], ["list_id", 1], ["name", "Ivo"], ["last_name", "Vidal"], ["created_at", "2015-03-18 23:08:44.719826"], ["updated_at", "2015-03-18 23:08:44.719826"]]  (12.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ZANGOLAS@HOTMAIL.COM"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ZANGOLAS@HOTMAIL.COM"], ["list_id", 1], ["name", "GONZALO"], ["last_name", "ESPINOSA"], ["created_at", "2015-03-18 23:08:44.737637"], ["updated_at", "2015-03-18 23:08:44.737637"]]  (10.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariaignaciadiazv@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariaignaciadiazv@hotmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Ignacia Díaz von der Hundt"], ["created_at", "2015-03-18 23:08:44.754256"], ["updated_at", "2015-03-18 23:08:44.754256"]]  (11.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "isgilians@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "isgilians@gmail.com"], ["list_id", 1], ["name", "Darlin"], ["last_name", "Peña Torres"], ["created_at", "2015-03-18 23:08:44.771950"], ["updated_at", "2015-03-18 23:08:44.771950"]]  (8.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "misstresenoritas@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "misstresenoritas@gmail.com"], ["list_id", 1], ["name", "Misstresenoritas"], ["last_name", ""], ["created_at", "2015-03-18 23:08:44.850724"], ["updated_at", "2015-03-18 23:08:44.850724"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanignacio.cl@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanignacio.cl@gmail.com"], ["list_id", 1], ["name", "juan"], ["last_name", "ignacio herrera"], ["created_at", "2015-03-18 23:08:44.866388"], ["updated_at", "2015-03-18 23:08:44.866388"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "oij oi@jn.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "oij oi@jn.cl"], ["list_id", 1], ["name", "esre"], ["last_name", ""], ["created_at", "2015-03-18 23:08:44.874606"], ["updated_at", "2015-03-18 23:08:44.874606"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hematie_x@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hematie_x@hotmail.com"], ["list_id", 1], ["name", "x"], ["last_name", ""], ["created_at", "2015-03-18 23:08:44.882537"], ["updated_at", "2015-03-18 23:08:44.882537"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ceciliaavendanio@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ceciliaavendanio@hotmail.com"], ["list_id", 1], ["name", "Cecilia"], ["last_name", "Avendaño Bobillier"], ["created_at", "2015-03-18 23:08:44.890884"], ["updated_at", "2015-03-18 23:08:44.890884"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cstrmelj@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cstrmelj@gmail.com"], ["list_id", 1], ["name", "carola"], ["last_name", "strmelj"], ["created_at", "2015-03-18 23:08:44.899802"], ["updated_at", "2015-03-18 23:08:44.899802"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "beatrizasofia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "beatrizasofia@hotmail.com"], ["list_id", 1], ["name", "Beatriz"], ["last_name", "Acevedo Cabello"], ["created_at", "2015-03-18 23:08:44.915897"], ["updated_at", "2015-03-18 23:08:44.915897"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mauriciovalenciacardenas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mauriciovalenciacardenas@gmail.com"], ["list_id", 1], ["name", "MAURICIO"], ["last_name", "VALENCIA CARDENAS"], ["created_at", "2015-03-18 23:08:44.924962"], ["updated_at", "2015-03-18 23:08:44.924962"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "evangelisti@gmx.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "evangelisti@gmx.net"], ["list_id", 1], ["name", "Germán"], ["last_name", "Evangelisti Muñoz"], ["created_at", "2015-03-18 23:08:44.933105"], ["updated_at", "2015-03-18 23:08:44.933105"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jisilva1@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jisilva1@uc.cl"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Silva"], ["created_at", "2015-03-18 23:08:44.941277"], ["updated_at", "2015-03-18 23:08:44.941277"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alluantu@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alluantu@gmail.com"], ["list_id", 1], ["name", "Astrid"], ["last_name", "Stocker"], ["created_at", "2015-03-18 23:08:44.949674"], ["updated_at", "2015-03-18 23:08:44.949674"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matiaslab@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matiaslab@yahoo.com"], ["list_id", 1], ["name", "Matías"], ["last_name", "Labbé"], ["created_at", "2015-03-18 23:08:44.965808"], ["updated_at", "2015-03-18 23:08:44.965808"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catalina.delacruz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catalina.delacruz@gmail.com"], ["list_id", 1], ["name", "CATALINA"], ["last_name", "DE LA CRUZ"], ["created_at", "2015-03-18 23:08:44.974898"], ["updated_at", "2015-03-18 23:08:44.974898"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "errejemex@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "errejemex@hotmail.com"], ["list_id", 1], ["name", "enrique"], ["last_name", "rivera r"], ["created_at", "2015-03-18 23:08:44.982958"], ["updated_at", "2015-03-18 23:08:44.982958"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ivan.javis@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ivan.javis@gmail.com"], ["list_id", 1], ["name", "Iván"], ["last_name", "Palmarola"], ["created_at", "2015-03-18 23:08:44.991911"], ["updated_at", "2015-03-18 23:08:44.991911"]]  (16.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristianvega@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristianvega@hotmail.com"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Vega Rojo"], ["created_at", "2015-03-18 23:08:45.014878"], ["updated_at", "2015-03-18 23:08:45.014878"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macajarpa@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macajarpa@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Jarpa"], ["created_at", "2015-03-18 23:08:45.023685"], ["updated_at", "2015-03-18 23:08:45.023685"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jpgreingardt@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jpgreingardt@hotmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Pablo Garcia"], ["created_at", "2015-03-18 23:08:45.032743"], ["updated_at", "2015-03-18 23:08:45.032743"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josefinastorga@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josefinastorga@gmail.com"], ["list_id", 1], ["name", "J"], ["last_name", "O S E F I N A S T O R G A"], ["created_at", "2015-03-18 23:08:45.040578"], ["updated_at", "2015-03-18 23:08:45.040578"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguelmichelson@2iopjfji.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguelmichelson@2iopjfji.cl"], ["list_id", 1], ["name", "mimi"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.049607"], ["updated_at", "2015-03-18 23:08:45.049607"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zaidagr77@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zaidagr77@yahoo.es"], ["list_id", 1], ["name", "Zaida"], ["last_name", "González Ríos"], ["created_at", "2015-03-18 23:08:45.065518"], ["updated_at", "2015-03-18 23:08:45.065518"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "atlarrai@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "atlarrai@uc.cl"], ["list_id", 1], ["name", "Adelaida"], ["last_name", "Larraín"], ["created_at", "2015-03-18 23:08:45.073989"], ["updated_at", "2015-03-18 23:08:45.073989"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lilithvoncarter@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lilithvoncarter@gmail.com"], ["list_id", 1], ["name", "Victória"], ["last_name", "Aisswort"], ["created_at", "2015-03-18 23:08:45.082102"], ["updated_at", "2015-03-18 23:08:45.082102"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "e7online@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "e7online@gmail.com"], ["list_id", 1], ["name", "Hector"], ["last_name", "Labrin F."], ["created_at", "2015-03-18 23:08:45.090751"], ["updated_at", "2015-03-18 23:08:45.090751"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "loretin.metalera@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "loretin.metalera@gmail.com"], ["list_id", 1], ["name", "loreto"], ["last_name", "contreras"], ["created_at", "2015-03-18 23:08:45.099993"], ["updated_at", "2015-03-18 23:08:45.099993"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cecilia.albertina@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cecilia.albertina@gmail.com"], ["list_id", 1], ["name", "Cecilia"], ["last_name", "Flores"], ["created_at", "2015-03-18 23:08:45.115874"], ["updated_at", "2015-03-18 23:08:45.115874"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hidalgobastien1@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hidalgobastien1@hotmail.com"], ["list_id", 1], ["name", "HIDALGO"], ["last_name", "BASTIEN"], ["created_at", "2015-03-18 23:08:45.124277"], ["updated_at", "2015-03-18 23:08:45.124277"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jorgeovandos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jorgeovandos@gmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Ovando"], ["created_at", "2015-03-18 23:08:45.132964"], ["updated_at", "2015-03-18 23:08:45.132964"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mchernandezj@wanadoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mchernandezj@wanadoo.es"], ["list_id", 1], ["name", "Consuelo"], ["last_name", "Hernández"], ["created_at", "2015-03-18 23:08:45.141794"], ["updated_at", "2015-03-18 23:08:45.141794"]]  (5.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pattygh@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pattygh@gmail.com"], ["list_id", 1], ["name", "Patricia"], ["last_name", "Gómez Hidalgo"], ["created_at", "2015-03-18 23:08:45.153103"], ["updated_at", "2015-03-18 23:08:45.153103"]]  (12.2ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "muere@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "muere@gmail.com"], ["list_id", 1], ["name", "laladiablo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.170837"], ["updated_at", "2015-03-18 23:08:45.170837"]]  (10.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "morapepo@yahoo.es"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "morapepo@yahoo.es"], ["list_id", 1], ["name", "ANDRES"], ["last_name", "MORA SALVI"], ["created_at", "2015-03-18 23:08:45.188170"], ["updated_at", "2015-03-18 23:08:45.188170"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alejandrobalbontin@manquehue.net"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alejandrobalbontin@manquehue.net"], ["list_id", 1], ["name", "alejandro"], ["last_name", "balbontin"], ["created_at", "2015-03-18 23:08:45.198720"], ["updated_at", "2015-03-18 23:08:45.198720"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "g.lazoq@gmail.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "g.lazoq@gmail.com"], ["list_id", 1], ["name", "gabriel"], ["last_name", "lazo"], ["created_at", "2015-03-18 23:08:45.214823"], ["updated_at", "2015-03-18 23:08:45.214823"]]  (352.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ariel_maluenda@hotmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ariel_maluenda@hotmail.com"], ["list_id", 1], ["name", "Ariel"], ["last_name", "Maluenda"], ["created_at", "2015-03-18 23:08:45.574862"], ["updated_at", "2015-03-18 23:08:45.574862"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "super_miguelin@msn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "super_miguelin@msn.com"], ["list_id", 1], ["name", "miguel"], ["last_name", "ivan"], ["created_at", "2015-03-18 23:08:45.584504"], ["updated_at", "2015-03-18 23:08:45.584504"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "satanicnerd@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "satanicnerd@hotmail.com"], ["list_id", 1], ["name", "RANO"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.593048"], ["updated_at", "2015-03-18 23:08:45.593048"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bernigoycoolea@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bernigoycoolea@gmail.com"], ["list_id", 1], ["name", "Bernardita"], ["last_name", "Goycoolea"], ["created_at", "2015-03-18 23:08:45.600893"], ["updated_at", "2015-03-18 23:08:45.600893"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Lisamalla@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Lisamalla@yahoo.es"], ["list_id", 1], ["name", "LISAMALLA"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.609103"], ["updated_at", "2015-03-18 23:08:45.609103"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristianoliva@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristianoliva@yahoo.com"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Oliva Vergara"], ["created_at", "2015-03-18 23:08:45.631786"], ["updated_at", "2015-03-18 23:08:45.631786"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pollatrujillo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pollatrujillo@gmail.com"], ["list_id", 1], ["name", "Polla"], ["last_name", "Trujillo"], ["created_at", "2015-03-18 23:08:45.641053"], ["updated_at", "2015-03-18 23:08:45.641053"]]  (1.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dianalakatira@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dianalakatira@hotmail.com"], ["list_id", 1], ["name", "diana"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.648484"], ["updated_at", "2015-03-18 23:08:45.648484"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jnpbloo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jnpbloo@gmail.com"], ["list_id", 1], ["name", "J"], ["last_name", "Pablo Díaz"], ["created_at", "2015-03-18 23:08:45.656340"], ["updated_at", "2015-03-18 23:08:45.656340"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "adrenaliniik0@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "adrenaliniik0@gmail.com"], ["list_id", 1], ["name", "Eliseo"], ["last_name", "Fica"], ["created_at", "2015-03-18 23:08:45.665194"], ["updated_at", "2015-03-18 23:08:45.665194"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hubearts@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hubearts@gmail.com"], ["list_id", 1], ["name", "HubeSalamanca"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.681980"], ["updated_at", "2015-03-18 23:08:45.681980"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rouge.lona@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rouge.lona@gmail.com"], ["list_id", 1], ["name", "nayem"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.690166"], ["updated_at", "2015-03-18 23:08:45.690166"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lolamorenos@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lolamorenos@hotmail.com"], ["list_id", 1], ["name", "lola"], ["last_name", "moreno"], ["created_at", "2015-03-18 23:08:45.697919"], ["updated_at", "2015-03-18 23:08:45.697919"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hejary@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hejary@yahoo.com"], ["list_id", 1], ["name", "hejary"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.706344"], ["updated_at", "2015-03-18 23:08:45.706344"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javierchorbadjian@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javierchorbadjian@gmail.com"], ["list_id", 1], ["name", "JAVIER"], ["last_name", "CHORBADJIAN"], ["created_at", "2015-03-18 23:08:45.714327"], ["updated_at", "2015-03-18 23:08:45.714327"]]  (4.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jgarridomarin@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jgarridomarin@hotmail.com"], ["list_id", 1], ["name", "J"], ["last_name", "GARRIDO MARIN"], ["created_at", "2015-03-18 23:08:45.730872"], ["updated_at", "2015-03-18 23:08:45.730872"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mrta000@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mrta000@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Ruiz-Tagle"], ["created_at", "2015-03-18 23:08:45.739692"], ["updated_at", "2015-03-18 23:08:45.739692"]]  (13.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "shelita_22@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "shelita_22@hotmail.com"], ["list_id", 1], ["name", "gricelle"], ["last_name", "alvarez"], ["created_at", "2015-03-18 23:08:45.761114"], ["updated_at", "2015-03-18 23:08:45.761114"]]  (10.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bravo@waldobravo.com.br"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bravo@waldobravo.com.br"], ["list_id", 1], ["name", "Waldo"], ["last_name", "Bravo"], ["created_at", "2015-03-18 23:08:45.781870"], ["updated_at", "2015-03-18 23:08:45.781870"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mirtabenavente@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mirtabenavente@gmail.com"], ["list_id", 1], ["name", "Mirta"], ["last_name", "Benavente"], ["created_at", "2015-03-18 23:08:45.838851"], ["updated_at", "2015-03-18 23:08:45.838851"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fupablo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fupablo@gmail.com"], ["list_id", 1], ["name", "fu"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.848078"], ["updated_at", "2015-03-18 23:08:45.848078"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rbarrose@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rbarrose@gmail.com"], ["list_id", 1], ["name", "ricardo"], ["last_name", "barros echeverria"], ["created_at", "2015-03-18 23:08:45.855647"], ["updated_at", "2015-03-18 23:08:45.855647"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artes_kohen@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artes_kohen@yahoo.es"], ["list_id", 1], ["name", "Kohen"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.864866"], ["updated_at", "2015-03-18 23:08:45.864866"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "molinarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "molinarte@gmail.com"], ["list_id", 1], ["name", "javier"], ["last_name", "molina"], ["created_at", "2015-03-18 23:08:45.874325"], ["updated_at", "2015-03-18 23:08:45.874325"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chapinakaire@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chapinakaire@yahoo.com"], ["list_id", 1], ["name", "ABC"], ["last_name", ""], ["created_at", "2015-03-18 23:08:45.897574"], ["updated_at", "2015-03-18 23:08:45.897574"]]  (17.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "segunda.piiel@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "segunda.piiel@gmail.com"], ["list_id", 1], ["name", "Nicole"], ["last_name", "González."], ["created_at", "2015-03-18 23:08:45.921715"], ["updated_at", "2015-03-18 23:08:45.921715"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "quehaceres_domesticos@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "quehaceres_domesticos@yahoo.com"], ["list_id", 1], ["name", "Quehaceres"], ["last_name", "Domesticos"], ["created_at", "2015-03-18 23:08:45.930682"], ["updated_at", "2015-03-18 23:08:45.930682"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lacaro360@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lacaro360@hotmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Aguilar Martorell"], ["created_at", "2015-03-18 23:08:45.946948"], ["updated_at", "2015-03-18 23:08:45.946948"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pabloalbustos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pabloalbustos@gmail.com"], ["list_id", 1], ["name", "pablo"], ["last_name", "bustos castillo"], ["created_at", "2015-03-18 23:08:45.955288"], ["updated_at", "2015-03-18 23:08:45.955288"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jpgodoy@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jpgodoy@uc.cl"], ["list_id", 1], ["name", "José"], ["last_name", "Pedro Godoy"], ["created_at", "2015-03-18 23:08:45.963166"], ["updated_at", "2015-03-18 23:08:45.963166"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pinturas@alfonsofernandez.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pinturas@alfonsofernandez.cl"], ["list_id", 1], ["name", "Alfonso"], ["last_name", "Fernández Acevedo"], ["created_at", "2015-03-18 23:08:45.972072"], ["updated_at", "2015-03-18 23:08:45.972072"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cote@cotesantana.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cote@cotesantana.com"], ["list_id", 1], ["name", "COTE"], ["last_name", "SANTANA"], ["created_at", "2015-03-18 23:08:45.980526"], ["updated_at", "2015-03-18 23:08:45.980526"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gacanale@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gacanale@hotmail.com"], ["list_id", 1], ["name", "GABRIEL"], ["last_name", "canales"], ["created_at", "2015-03-18 23:08:45.996377"], ["updated_at", "2015-03-18 23:08:45.996377"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "franuyeah@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "franuyeah@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Ulloa"], ["created_at", "2015-03-18 23:08:46.005813"], ["updated_at", "2015-03-18 23:08:46.005813"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cemimi@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cemimi@hotmail.com"], ["list_id", 1], ["name", "MICHELLE"], ["last_name", "NIELSEN"], ["created_at", "2015-03-18 23:08:46.013366"], ["updated_at", "2015-03-18 23:08:46.013366"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pataghom@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pataghom@gmail.com"], ["list_id", 1], ["name", "richard"], ["last_name", "carvajal flores"], ["created_at", "2015-03-18 23:08:46.022705"], ["updated_at", "2015-03-18 23:08:46.022705"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alvaromegaherz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alvaromegaherz@gmail.com"], ["list_id", 1], ["name", "Alvaro"], ["last_name", "Herz Serrano"], ["created_at", "2015-03-18 23:08:46.030524"], ["updated_at", "2015-03-18 23:08:46.030524"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diana.navarrete@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diana.navarrete@gmail.com"], ["list_id", 1], ["name", "Diana"], ["last_name", "Navarrete Astroza"], ["created_at", "2015-03-18 23:08:46.046590"], ["updated_at", "2015-03-18 23:08:46.046590"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xkarlix@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xkarlix@gmail.com"], ["list_id", 1], ["name", "Karla"], ["last_name", "Peña"], ["created_at", "2015-03-18 23:08:46.054783"], ["updated_at", "2015-03-18 23:08:46.054783"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jlgacitua@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jlgacitua@gmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Luis Gacitúa"], ["created_at", "2015-03-18 23:08:46.063050"], ["updated_at", "2015-03-18 23:08:46.063050"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mujergallinaempollando@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mujergallinaempollando@hotmail.com"], ["list_id", 1], ["name", "KATHACLIXMO"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.071685"], ["updated_at", "2015-03-18 23:08:46.071685"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "panxitavidela@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "panxitavidela@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Videla Lopez"], ["created_at", "2015-03-18 23:08:46.080368"], ["updated_at", "2015-03-18 23:08:46.080368"]]  (12.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "clonsioux@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "clonsioux@yahoo.com"], ["list_id", 1], ["name", "sioux"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.098553"], ["updated_at", "2015-03-18 23:08:46.098553"]]  (8.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jjobreque@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jjobreque@gmail.com"], ["list_id", 1], ["name", "Obreque"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.112227"], ["updated_at", "2015-03-18 23:08:46.112227"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "toledospencer@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "toledospencer@gmail.com"], ["list_id", 1], ["name", "Paulo"], ["last_name", "Toledo Spencer"], ["created_at", "2015-03-18 23:08:46.121345"], ["updated_at", "2015-03-18 23:08:46.121345"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mperis_clases@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mperis_clases@hotmail.com"], ["list_id", 1], ["name", "Manuel"], ["last_name", "Peris"], ["created_at", "2015-03-18 23:08:46.129678"], ["updated_at", "2015-03-18 23:08:46.129678"]]  (7.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "n@mi.cl"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "n@mi.cl"], ["list_id", 1], ["name", "felipe"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.148210"], ["updated_at", "2015-03-18 23:08:46.148210"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisca.wink@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisca.wink@hotmail.com"], ["list_id", 1], ["name", "fran"], ["last_name", "winkyta"], ["created_at", "2015-03-18 23:08:46.157083"], ["updated_at", "2015-03-18 23:08:46.157083"]]  (13.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "siempreprimitabs@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "siempreprimitabs@gmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Quiroz"], ["created_at", "2015-03-18 23:08:46.176918"], ["updated_at", "2015-03-18 23:08:46.176918"]]  (9.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablo.montealegre@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablo.montealegre@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Montealegre"], ["created_at", "2015-03-18 23:08:46.195480"], ["updated_at", "2015-03-18 23:08:46.195480"]]  (8.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "boomsta_csa@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "boomsta_csa@hotmail.com"], ["list_id", 1], ["name", "boomsta"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.210812"], ["updated_at", "2015-03-18 23:08:46.210812"]]  (3.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iwong85@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iwong85@hotmail.com"], ["list_id", 1], ["name", "Ignacio"], ["last_name", "Wong"], ["created_at", "2015-03-18 23:08:46.221619"], ["updated_at", "2015-03-18 23:08:46.221619"]]  (14.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amandinga07@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amandinga07@hotmail.com"], ["list_id", 1], ["name", "Amanda"], ["last_name", "Rodriguez"], ["created_at", "2015-03-18 23:08:46.244115"], ["updated_at", "2015-03-18 23:08:46.244115"]]  (9.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pratena@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pratena@gmail.com"], ["list_id", 1], ["name", "KareM"], ["last_name", "TorreS"], ["created_at", "2015-03-18 23:08:46.260749"], ["updated_at", "2015-03-18 23:08:46.260749"]]  (5.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "constanzavergarac@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "constanzavergarac@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Vergara"], ["created_at", "2015-03-18 23:08:46.273470"], ["updated_at", "2015-03-18 23:08:46.273470"]]  (10.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "salore_4@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "salore_4@hotmail.com"], ["list_id", 1], ["name", "Sabrina"], ["last_name", "Catalano"], ["created_at", "2015-03-18 23:08:46.293743"], ["updated_at", "2015-03-18 23:08:46.293743"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "123456789@giuhmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "123456789@giuhmail.com"], ["list_id", 1], ["name", "animal"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.302256"], ["updated_at", "2015-03-18 23:08:46.302256"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nadiamaldonado@udec.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nadiamaldonado@udec.cl"], ["list_id", 1], ["name", "Nadia"], ["last_name", "Maldonado Benavides"], ["created_at", "2015-03-18 23:08:46.311714"], ["updated_at", "2015-03-18 23:08:46.311714"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kintun@vtr.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kintun@vtr.net"], ["list_id", 1], ["name", "julio"], ["last_name", "espinoza"], ["created_at", "2015-03-18 23:08:46.320339"], ["updated_at", "2015-03-18 23:08:46.320339"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "piliqv@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "piliqv@hotmail.com"], ["list_id", 1], ["name", "vonpfeiler"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.328806"], ["updated_at", "2015-03-18 23:08:46.328806"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hernan@rinfm.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hernan@rinfm.com"], ["list_id", 1], ["name", "hernan"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.345957"], ["updated_at", "2015-03-18 23:08:46.345957"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amnesiac15@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amnesiac15@hotmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Nuñez"], ["created_at", "2015-03-18 23:08:46.355238"], ["updated_at", "2015-03-18 23:08:46.355238"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pilimack@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pilimack@gmail.com"], ["list_id", 1], ["name", "Pilar"], ["last_name", "Mackenna"], ["created_at", "2015-03-18 23:08:46.364462"], ["updated_at", "2015-03-18 23:08:46.364462"]]  (6.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pabloserralepo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pabloserralepo@hotmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Serra"], ["created_at", "2015-03-18 23:08:46.376778"], ["updated_at", "2015-03-18 23:08:46.376778"]]  (5.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paloma.rodriguez.s@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paloma.rodriguez.s@gmail.com"], ["list_id", 1], ["name", "Paloma"], ["last_name", "Rodríguez Sánchez"], ["created_at", "2015-03-18 23:08:46.396019"], ["updated_at", "2015-03-18 23:08:46.396019"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulina.narvaez.o@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulina.narvaez.o@gmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Narváez"], ["created_at", "2015-03-18 23:08:46.405198"], ["updated_at", "2015-03-18 23:08:46.405198"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vivianacorvalan@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vivianacorvalan@gmail.com"], ["list_id", 1], ["name", "Viviana"], ["last_name", "Corvalán"], ["created_at", "2015-03-18 23:08:46.413751"], ["updated_at", "2015-03-18 23:08:46.413751"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariapia.vasquez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariapia.vasquez@gmail.com"], ["list_id", 1], ["name", "Pía"], ["last_name", "Vasquez"], ["created_at", "2015-03-18 23:08:46.423197"], ["updated_at", "2015-03-18 23:08:46.423197"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cortesclaudio@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cortesclaudio@yahoo.es"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Cortés Fernández"], ["created_at", "2015-03-18 23:08:46.433215"], ["updated_at", "2015-03-18 23:08:46.433215"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "solisdalencon@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "solisdalencon@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Daniel Solís DAlencon"], ["created_at", "2015-03-18 23:08:46.493494"], ["updated_at", "2015-03-18 23:08:46.493494"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rulonunez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rulonunez@gmail.com"], ["list_id", 1], ["name", "RAUL"], ["last_name", "NUÑEZ BARRIENTOS"], ["created_at", "2015-03-18 23:08:46.501250"], ["updated_at", "2015-03-18 23:08:46.501250"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sandavey@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sandavey@hotmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Sanchez Davey"], ["created_at", "2015-03-18 23:08:46.509789"], ["updated_at", "2015-03-18 23:08:46.509789"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francolden@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francolden@gmail.com"], ["list_id", 1], ["name", "Franco"], ["last_name", "Colden"], ["created_at", "2015-03-18 23:08:46.517777"], ["updated_at", "2015-03-18 23:08:46.517777"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "karengutmont@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "karengutmont@gmail.com"], ["list_id", 1], ["name", "Karen"], ["last_name", "Gutiérrez Dumont"], ["created_at", "2015-03-18 23:08:46.526066"], ["updated_at", "2015-03-18 23:08:46.526066"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ricardodiparodi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ricardodiparodi@gmail.com"], ["list_id", 1], ["name", "AZBE"], ["last_name", "ROWA"], ["created_at", "2015-03-18 23:08:46.534193"], ["updated_at", "2015-03-18 23:08:46.534193"]]  (13.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ampolletas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ampolletas@hotmail.com"], ["list_id", 1], ["name", "ampolletas"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.553184"], ["updated_at", "2015-03-18 23:08:46.553184"]]  (3.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alvaro.vt@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alvaro.vt@hotmail.com"], ["list_id", 1], ["name", "alvarovalenzuela"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.562698"], ["updated_at", "2015-03-18 23:08:46.562698"]]  (6.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andreshermosilla@andreshermosilla.cl"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andreshermosilla@andreshermosilla.cl"], ["list_id", 1], ["name", "ANDRES"], ["last_name", "HERMOSILLA"], ["created_at", "2015-03-18 23:08:46.575494"], ["updated_at", "2015-03-18 23:08:46.575494"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pinogay@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pinogay@hotmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Pino Gay"], ["created_at", "2015-03-18 23:08:46.596019"], ["updated_at", "2015-03-18 23:08:46.596019"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "constanzagreend@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "constanzagreend@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Green Durán"], ["created_at", "2015-03-18 23:08:46.605601"], ["updated_at", "2015-03-18 23:08:46.605601"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bjerezc@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bjerezc@gmail.com"], ["list_id", 1], ["name", "Bárbara"], ["last_name", "Jerez Campos"], ["created_at", "2015-03-18 23:08:46.613665"], ["updated_at", "2015-03-18 23:08:46.613665"]]  (6.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pintor@panchoalvarezflores.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pintor@panchoalvarezflores.cl"], ["list_id", 1], ["name", "pancho"], ["last_name", "alvarez flores"], ["created_at", "2015-03-18 23:08:46.625647"], ["updated_at", "2015-03-18 23:08:46.625647"]]  (16.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rsotovic@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rsotovic@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Soto"], ["created_at", "2015-03-18 23:08:46.647835"], ["updated_at", "2015-03-18 23:08:46.647835"]]  (8.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nicolaswormull@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nicolaswormull@gmail.com"], ["list_id", 1], ["name", "nicolas"], ["last_name", "wormull"], ["created_at", "2015-03-18 23:08:46.661798"], ["updated_at", "2015-03-18 23:08:46.661798"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jrdroguett@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jrdroguett@gmail.com"], ["list_id", 1], ["name", "Jocelyne"], ["last_name", "Rodriguez"], ["created_at", "2015-03-18 23:08:46.670549"], ["updated_at", "2015-03-18 23:08:46.670549"]]  (16.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javi.viaje@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javi.viaje@gmail.com"], ["list_id", 1], ["name", "javiera"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.694286"], ["updated_at", "2015-03-18 23:08:46.694286"]]  (52.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pascuala.lira@gmail.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pascuala.lira@gmail.com"], ["list_id", 1], ["name", "pascuala"], ["last_name", "lira"], ["created_at", "2015-03-18 23:08:46.753698"], ["updated_at", "2015-03-18 23:08:46.753698"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ruby.lizana@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ruby.lizana@gmail.com"], ["list_id", 1], ["name", "Ruby"], ["last_name", "Perez Lizana"], ["created_at", "2015-03-18 23:08:46.763721"], ["updated_at", "2015-03-18 23:08:46.763721"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ignaciamesa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ignaciamesa@gmail.com"], ["list_id", 1], ["name", "Ignacia"], ["last_name", "Mesa"], ["created_at", "2015-03-18 23:08:46.773161"], ["updated_at", "2015-03-18 23:08:46.773161"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maderajose@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maderajose@hotmail.com"], ["list_id", 1], ["name", "jose"], ["last_name", "madera"], ["created_at", "2015-03-18 23:08:46.781726"], ["updated_at", "2015-03-18 23:08:46.781726"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dartinella.toselli@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dartinella.toselli@gmail.com"], ["list_id", 1], ["name", "Dartinella"], ["last_name", "Toselli"], ["created_at", "2015-03-18 23:08:46.789992"], ["updated_at", "2015-03-18 23:08:46.789992"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "euge@akel.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "euge@akel.cl"], ["list_id", 1], ["name", "María"], ["last_name", "Eugenia Akel"], ["created_at", "2015-03-18 23:08:46.798269"], ["updated_at", "2015-03-18 23:08:46.798269"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "olgawon@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "olgawon@gmail.com"], ["list_id", 1], ["name", "olga"], ["last_name", "won"], ["created_at", "2015-03-18 23:08:46.812109"], ["updated_at", "2015-03-18 23:08:46.812109"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tamarapope@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tamarapope@gmail.com"], ["list_id", 1], ["name", "Tamara"], ["last_name", "Poblete Perines"], ["created_at", "2015-03-18 23:08:46.825888"], ["updated_at", "2015-03-18 23:08:46.825888"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alefuenzalida2@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alefuenzalida2@gmail.com"], ["list_id", 1], ["name", "ALEJANDRA"], ["last_name", "FUENZALIDA"], ["created_at", "2015-03-18 23:08:46.834584"], ["updated_at", "2015-03-18 23:08:46.834584"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "papasfritas52@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "papasfritas52@hotmail.com"], ["list_id", 1], ["name", "francisco"], ["last_name", "papas frita"], ["created_at", "2015-03-18 23:08:46.843308"], ["updated_at", "2015-03-18 23:08:46.843308"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ruciadelica@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ruciadelica@gmail.com"], ["list_id", 1], ["name", "Bernardita"], ["last_name", "Bennett"], ["created_at", "2015-03-18 23:08:46.863669"], ["updated_at", "2015-03-18 23:08:46.863669"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "csidiseno@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "csidiseno@gmail.com"], ["list_id", 1], ["name", "Cecilia"], ["last_name", "Gonzalez"], ["created_at", "2015-03-18 23:08:46.876134"], ["updated_at", "2015-03-18 23:08:46.876134"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ichavizcarra@alfonsofernandez.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ichavizcarra@alfonsofernandez.cl"], ["list_id", 1], ["name", "Icha"], ["last_name", "Vizcarra"], ["created_at", "2015-03-18 23:08:46.884764"], ["updated_at", "2015-03-18 23:08:46.884764"]]  (6.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joana@telesurf.com.py"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joana@telesurf.com.py"], ["list_id", 1], ["name", "Inviernogris"], ["last_name", ""], ["created_at", "2015-03-18 23:08:46.897420"], ["updated_at", "2015-03-18 23:08:46.897420"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sirredo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sirredo@hotmail.com"], ["list_id", 1], ["name", "SERGIO"], ["last_name", "DIEGO COSTA"], ["created_at", "2015-03-18 23:08:46.912073"], ["updated_at", "2015-03-18 23:08:46.912073"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pamelavergara.o@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pamelavergara.o@gmail.com"], ["list_id", 1], ["name", "Pamela"], ["last_name", "Vergara Ortiz"], ["created_at", "2015-03-18 23:08:46.921170"], ["updated_at", "2015-03-18 23:08:46.921170"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "barbara.dlj@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "barbara.dlj@gmail.com"], ["list_id", 1], ["name", "Barbara"], ["last_name", "De la Jara More"], ["created_at", "2015-03-18 23:08:46.929462"], ["updated_at", "2015-03-18 23:08:46.929462"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marylinpardo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marylinpardo@gmail.com"], ["list_id", 1], ["name", "M"], ["last_name", "A R I A N A P A R D O"], ["created_at", "2015-03-18 23:08:46.938216"], ["updated_at", "2015-03-18 23:08:46.938216"]]  (10.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ignacio540@hotmail.com"]]  (0.4ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ignacio540@hotmail.com"], ["list_id", 1], ["name", "ignacio"], ["last_name", "matias Sierra"], ["created_at", "2015-03-18 23:08:46.957647"], ["updated_at", "2015-03-18 23:08:46.957647"]]  (12.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gaston_bertrand@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gaston_bertrand@hotmail.com"], ["list_id", 1], ["name", "gaston"], ["last_name", "bertrand garreton"], ["created_at", "2015-03-18 23:08:46.976966"], ["updated_at", "2015-03-18 23:08:46.976966"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matiasacunaramirez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matiasacunaramirez@gmail.com"], ["list_id", 1], ["name", "Matias"], ["last_name", "Acuña"], ["created_at", "2015-03-18 23:08:46.986119"], ["updated_at", "2015-03-18 23:08:46.986119"]]  (11.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lorenzodelbosque@gmail.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lorenzodelbosque@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Otero Gleisner"], ["created_at", "2015-03-18 23:08:47.003059"], ["updated_at", "2015-03-18 23:08:47.003059"]]  (10.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ultraretro@chile.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ultraretro@chile.com"], ["list_id", 1], ["name", "BENJAMIN"], ["last_name", "RODRIGUEZ PENA"], ["created_at", "2015-03-18 23:08:47.021960"], ["updated_at", "2015-03-18 23:08:47.021960"]]  (8.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "charlesbronson2000@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "charlesbronson2000@hotmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Vergara"], ["created_at", "2015-03-18 23:08:47.037309"], ["updated_at", "2015-03-18 23:08:47.037309"]]  (14.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "000greyes@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "000greyes@gmail.com"], ["list_id", 1], ["name", "gabriel"], ["last_name", "reyes"], ["created_at", "2015-03-18 23:08:47.060401"], ["updated_at", "2015-03-18 23:08:47.060401"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pravazflorencia@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pravazflorencia@gmail.com"], ["list_id", 1], ["name", "PRAVAZ"], ["last_name", "Florencia"], ["created_at", "2015-03-18 23:08:47.070509"], ["updated_at", "2015-03-18 23:08:47.070509"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gomezbalbontin@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gomezbalbontin@hotmail.com"], ["list_id", 1], ["name", "GOMEZ"], ["last_name", "BALBONTIN"], ["created_at", "2015-03-18 23:08:47.079575"], ["updated_at", "2015-03-18 23:08:47.079575"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nephilim3@wanadoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nephilim3@wanadoo.es"], ["list_id", 1], ["name", "Antonio"], ["last_name", "Jose Jimena"], ["created_at", "2015-03-18 23:08:47.088199"], ["updated_at", "2015-03-18 23:08:47.088199"]]  (4.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elgrandemiurgo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elgrandemiurgo@hotmail.com"], ["list_id", 1], ["name", "Fredy"], ["last_name", "Caballero Bernabé"], ["created_at", "2015-03-18 23:08:47.098407"], ["updated_at", "2015-03-18 23:08:47.098407"]]  (10.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mario-kexiste@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mario-kexiste@hotmail.com"], ["list_id", 1], ["name", "Mario"], ["last_name", "Carrasco Guerra"], ["created_at", "2015-03-18 23:08:47.113522"], ["updated_at", "2015-03-18 23:08:47.113522"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "laurentum_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "laurentum_@hotmail.com"], ["list_id", 1], ["name", "2004403349l4r2t4"], ["last_name", ""], ["created_at", "2015-03-18 23:08:47.122452"], ["updated_at", "2015-03-18 23:08:47.122452"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "roxalux@gawab.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "roxalux@gawab.com"], ["list_id", 1], ["name", "Rosa"], ["last_name", "Paulina Arancibia Moya"], ["created_at", "2015-03-18 23:08:47.131489"], ["updated_at", "2015-03-18 23:08:47.131489"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tansolounsermas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tansolounsermas@hotmail.com"], ["list_id", 1], ["name", "Matias"], ["last_name", "Sinigoi"], ["created_at", "2015-03-18 23:08:47.139924"], ["updated_at", "2015-03-18 23:08:47.139924"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kthrina@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kthrina@hotmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Valentini"], ["created_at", "2015-03-18 23:08:47.224313"], ["updated_at", "2015-03-18 23:08:47.224313"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "belgi_ca@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "belgi_ca@hotmail.com"], ["list_id", 1], ["name", "belgica"], ["last_name", ""], ["created_at", "2015-03-18 23:08:47.234041"], ["updated_at", "2015-03-18 23:08:47.234041"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danielahermosillaz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danielahermosillaz@gmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Hermosilla"], ["created_at", "2015-03-18 23:08:47.242746"], ["updated_at", "2015-03-18 23:08:47.242746"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@wenchuman.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@wenchuman.com"], ["list_id", 1], ["name", "wenchuman"], ["last_name", ""], ["created_at", "2015-03-18 23:08:47.250984"], ["updated_at", "2015-03-18 23:08:47.250984"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anadeorbegoso@mac.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anadeorbegoso@mac.com"], ["list_id", 1], ["name", "ANA"], ["last_name", "DE ORBEGOSO"], ["created_at", "2015-03-18 23:08:47.259577"], ["updated_at", "2015-03-18 23:08:47.259577"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pameq2@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pameq2@yahoo.com"], ["list_id", 1], ["name", "Pámela"], ["last_name", "Marinkovic"], ["created_at", "2015-03-18 23:08:47.278181"], ["updated_at", "2015-03-18 23:08:47.278181"]]  (5.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "taller@taller56.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "taller@taller56.cl"], ["list_id", 1], ["name", "Nelson"], ["last_name", "Maglio Olate Figueroa"], ["created_at", "2015-03-18 23:08:47.289720"], ["updated_at", "2015-03-18 23:08:47.289720"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "davis@davislisboa.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "davis@davislisboa.com"], ["list_id", 1], ["name", "Davis"], ["last_name", "Lisboa"], ["created_at", "2015-03-18 23:08:47.299070"], ["updated_at", "2015-03-18 23:08:47.299070"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "abcynthie@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "abcynthie@gmail.com"], ["list_id", 1], ["name", "cynthia"], ["last_name", "conrads"], ["created_at", "2015-03-18 23:08:47.307821"], ["updated_at", "2015-03-18 23:08:47.307821"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "om@oscar-morales.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "om@oscar-morales.com"], ["list_id", 1], ["name", "Oscar"], ["last_name", ""], ["created_at", "2015-03-18 23:08:47.315996"], ["updated_at", "2015-03-18 23:08:47.315996"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jimenatp@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jimenatp@gmail.com"], ["list_id", 1], ["name", "Jimena"], ["last_name", "Tapia Peña"], ["created_at", "2015-03-18 23:08:47.327201"], ["updated_at", "2015-03-18 23:08:47.327201"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "celeste_a14@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "celeste_a14@hotmail.com"], ["list_id", 1], ["name", "CELESTE"], ["last_name", "NUÑEZ BASCUÑAN"], ["created_at", "2015-03-18 23:08:47.336275"], ["updated_at", "2015-03-18 23:08:47.336275"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "guahunelson@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "guahunelson@hotmail.com"], ["list_id", 1], ["name", "Nelson"], ["last_name", "Javier"], ["created_at", "2015-03-18 23:08:47.344585"], ["updated_at", "2015-03-18 23:08:47.344585"]]  (5.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "castlegreis@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "castlegreis@hotmail.com"], ["list_id", 1], ["name", "gracia"], ["last_name", ""], ["created_at", "2015-03-18 23:08:47.355087"], ["updated_at", "2015-03-18 23:08:47.355087"]]  (33.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luis@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luis@hotmail.com"], ["list_id", 1], ["name", "lucho"], ["last_name", "jara"], ["created_at", "2015-03-18 23:08:47.394460"], ["updated_at", "2015-03-18 23:08:47.394460"]]  (31.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zabeliz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zabeliz@gmail.com"], ["list_id", 1], ["name", "Maricarmen"], ["last_name", "Zabaleta Elizondo"], ["created_at", "2015-03-18 23:08:47.432467"], ["updated_at", "2015-03-18 23:08:47.432467"]]  (5.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudio.castel@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudio.castel@gmail.com"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Castel"], ["created_at", "2015-03-18 23:08:47.443810"], ["updated_at", "2015-03-18 23:08:47.443810"]]  (16.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "di.l.e.i.n@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "di.l.e.i.n@gmail.com"], ["list_id", 1], ["name", "lein"], ["last_name", ""], ["created_at", "2015-03-18 23:08:47.466487"], ["updated_at", "2015-03-18 23:08:47.466487"]]  (8.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pezoat113@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pezoat113@hotmail.com"], ["list_id", 1], ["name", "B"], ["last_name", "o r i s P e z o a"], ["created_at", "2015-03-18 23:08:47.481237"], ["updated_at", "2015-03-18 23:08:47.481237"]]  (16.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kichiemoka@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kichiemoka@gmail.com"], ["list_id", 1], ["name", "Marisol"], ["last_name", "Carmona Sámano"], ["created_at", "2015-03-18 23:08:47.504208"], ["updated_at", "2015-03-18 23:08:47.504208"]]  (8.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "raimbow1979@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "raimbow1979@hotmail.com"], ["list_id", 1], ["name", "POLA"], ["last_name", "MOULIAN"], ["created_at", "2015-03-18 23:08:47.519071"], ["updated_at", "2015-03-18 23:08:47.519071"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javiera_maria@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javiera_maria@yahoo.com"], ["list_id", 1], ["name", "Javiera"], ["last_name", "del Campo"], ["created_at", "2015-03-18 23:08:47.527843"], ["updated_at", "2015-03-18 23:08:47.527843"]]  (8.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nicolasrico@latinmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nicolasrico@latinmail.com"], ["list_id", 1], ["name", "nicolas"], ["last_name", "rico N I C O L A S R I C O"], ["created_at", "2015-03-18 23:08:47.544038"], ["updated_at", "2015-03-18 23:08:47.544038"]]  (4.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lela_sanchez@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lela_sanchez@hotmail.com"], ["list_id", 1], ["name", "lela"], ["last_name", "sanches"], ["created_at", "2015-03-18 23:08:47.554914"], ["updated_at", "2015-03-18 23:08:47.554914"]]  (4.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "estebanorellana1@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "estebanorellana1@gmail.com"], ["list_id", 1], ["name", "Esteban"], ["last_name", "Orellana A"], ["created_at", "2015-03-18 23:08:47.565215"], ["updated_at", "2015-03-18 23:08:47.565215"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camilaopazo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camilaopazo@gmail.com"], ["list_id", 1], ["name", "CAMILAOPAZO"], ["last_name", ""], ["created_at", "2015-03-18 23:08:47.574024"], ["updated_at", "2015-03-18 23:08:47.574024"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulinaurzuag@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulinaurzuag@hotmail.com"], ["list_id", 1], ["name", "PA"], ["last_name", "U L I N A U R Z U A"], ["created_at", "2015-03-18 23:08:47.592152"], ["updated_at", "2015-03-18 23:08:47.592152"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "trinidad.bezanilla@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "trinidad.bezanilla@gmail.com"], ["list_id", 1], ["name", "Trinidad"], ["last_name", "Bezanilla"], ["created_at", "2015-03-18 23:08:47.600697"], ["updated_at", "2015-03-18 23:08:47.600697"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Geredia@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Geredia@yahoo.es"], ["list_id", 1], ["name", "Geredia"], ["last_name", "Collao"], ["created_at", "2015-03-18 23:08:47.608966"], ["updated_at", "2015-03-18 23:08:47.608966"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@galeriartesteladelvalle.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@galeriartesteladelvalle.cl"], ["list_id", 1], ["name", "luisa"], ["last_name", "estela"], ["created_at", "2015-03-18 23:08:47.618400"], ["updated_at", "2015-03-18 23:08:47.618400"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dieko.dieko@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dieko.dieko@hotmail.com"], ["list_id", 1], ["name", "Dieko"], ["last_name", "Cortés M"], ["created_at", "2015-03-18 23:08:47.627107"], ["updated_at", "2015-03-18 23:08:47.627107"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bitranclaudia@hotmail.com"]]  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bitranclaudia@hotmail.com"], ["list_id", 1], ["name", "claudia"], ["last_name", "bitran"], ["created_at", "2015-03-18 23:08:47.643088"], ["updated_at", "2015-03-18 23:08:47.643088"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "grupofoto@terra.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "grupofoto@terra.cl"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Alegría Schoppe"], ["created_at", "2015-03-18 23:08:47.651862"], ["updated_at", "2015-03-18 23:08:47.651862"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gustazali@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gustazali@hotmail.com"], ["list_id", 1], ["name", "Gust"], ["last_name", ""], ["created_at", "2015-03-18 23:08:47.660119"], ["updated_at", "2015-03-18 23:08:47.660119"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iulianagh@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iulianagh@gmail.com"], ["list_id", 1], ["name", "IULIANA"], ["last_name", "GHEORGHE"], ["created_at", "2015-03-18 23:08:47.668999"], ["updated_at", "2015-03-18 23:08:47.668999"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ovalle.mariana@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ovalle.mariana@gmail.com"], ["list_id", 1], ["name", "Mariana"], ["last_name", "Ovalle"], ["created_at", "2015-03-18 23:08:47.678133"], ["updated_at", "2015-03-18 23:08:47.678133"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fraygino@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fraygino@yahoo.es"], ["list_id", 1], ["name", "Giovanni"], ["last_name", "Gellona"], ["created_at", "2015-03-18 23:08:47.692062"], ["updated_at", "2015-03-18 23:08:47.692062"]]  (5.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nusof.gonzalez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nusof.gonzalez@gmail.com"], ["list_id", 1], ["name", "Nuria"], ["last_name", "Sofía"], ["created_at", "2015-03-18 23:08:47.703548"], ["updated_at", "2015-03-18 23:08:47.703548"]]  (8.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pulga_supersonic@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pulga_supersonic@hotmail.com"], ["list_id", 1], ["name", "nagluck"], ["last_name", ""], ["created_at", "2015-03-18 23:08:47.717074"], ["updated_at", "2015-03-18 23:08:47.717074"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "saraoliviaf@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "saraoliviaf@gmail.com"], ["list_id", 1], ["name", "Sara"], ["last_name", "Olivia Fuentes Hernandez"], ["created_at", "2015-03-18 23:08:47.726135"], ["updated_at", "2015-03-18 23:08:47.726135"]]  (12.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nebspereira@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nebspereira@gmail.com"], ["list_id", 1], ["name", "Nebs"], ["last_name", "Pereira"], ["created_at", "2015-03-18 23:08:47.744227"], ["updated_at", "2015-03-18 23:08:47.744227"]]  (8.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patekong@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patekong@gmail.com"], ["list_id", 1], ["name", "mario"], ["last_name", "ibarra catalán"], ["created_at", "2015-03-18 23:08:47.758365"], ["updated_at", "2015-03-18 23:08:47.758365"]]  (11.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hh@hecherrod.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hh@hecherrod.com"], ["list_id", 1], ["name", "Héctor"], ["last_name", "Herrera"], ["created_at", "2015-03-18 23:08:47.777242"], ["updated_at", "2015-03-18 23:08:47.777242"]]  (64.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "karlindacl@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "karlindacl@yahoo.es"], ["list_id", 1], ["name", "carla"], ["last_name", "vaccaro"], ["created_at", "2015-03-18 23:08:47.847766"], ["updated_at", "2015-03-18 23:08:47.847766"]]  (11.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "frivoholic@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "frivoholic@hotmail.com"], ["list_id", 1], ["name", "Carmen"], ["last_name", "Gloria Faundez"], ["created_at", "2015-03-18 23:08:47.865751"], ["updated_at", "2015-03-18 23:08:47.865751"]]  (10.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diecroid@hotmail.com"]]  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diecroid@hotmail.com"], ["list_id", 1], ["name", "DIEGO"], ["last_name", "JURADO"], ["created_at", "2015-03-18 23:08:47.883079"], ["updated_at", "2015-03-18 23:08:47.883079"]]  (14.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nackatack@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nackatack@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Serrano"], ["created_at", "2015-03-18 23:08:47.909614"], ["updated_at", "2015-03-18 23:08:47.909614"]]  (5.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "doncuatico@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "doncuatico@yahoo.com"], ["list_id", 1], ["name", "migue"], ["last_name", ""], ["created_at", "2015-03-18 23:08:47.921505"], ["updated_at", "2015-03-18 23:08:47.921505"]]  (16.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "karenopolis@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "karenopolis@hotmail.com"], ["list_id", 1], ["name", "Karen"], ["last_name", "Riquelme"], ["created_at", "2015-03-18 23:08:47.944363"], ["updated_at", "2015-03-18 23:08:47.944363"]]  (11.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "borkowsky.c@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "borkowsky.c@gmail.com"], ["list_id", 1], ["name", "C"], ["last_name", "a m i l a F r a n c i s c a R o m e"], ["created_at", "2015-03-18 23:08:47.962050"], ["updated_at", "2015-03-18 23:08:47.962050"]]  (13.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "silla-piramide@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "silla-piramide@hotmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Marín"], ["created_at", "2015-03-18 23:08:47.981161"], ["updated_at", "2015-03-18 23:08:47.981161"]]  (23.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maquitaaa@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maquitaaa@gmail.com"], ["list_id", 1], ["name", "MACA"], ["last_name", "SPNZ"], ["created_at", "2015-03-18 23:08:48.010647"], ["updated_at", "2015-03-18 23:08:48.010647"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lylingalls@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lylingalls@gmail.com"], ["list_id", 1], ["name", "Lylibeth"], ["last_name", "Saavedra"], ["created_at", "2015-03-18 23:08:48.020131"], ["updated_at", "2015-03-18 23:08:48.020131"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anaalenso@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anaalenso@gmail.com"], ["list_id", 1], ["name", "Ana"], ["last_name", "Alenso"], ["created_at", "2015-03-18 23:08:48.029214"], ["updated_at", "2015-03-18 23:08:48.029214"]]  (13.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "afornickx@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "afornickx@hotmail.com"], ["list_id", 1], ["name", "afornickx"], ["last_name", ""], ["created_at", "2015-03-18 23:08:48.048601"], ["updated_at", "2015-03-18 23:08:48.048601"]]  (22.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "darksidehacker@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "darksidehacker@hotmail.com"], ["list_id", 1], ["name", "indie"], ["last_name", ""], ["created_at", "2015-03-18 23:08:48.077443"], ["updated_at", "2015-03-18 23:08:48.077443"]]  (9.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "openclown@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "openclown@gmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Schwarzenberg"], ["created_at", "2015-03-18 23:08:48.093363"], ["updated_at", "2015-03-18 23:08:48.093363"]]  (20.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javieraovallesazie@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javieraovallesazie@gmail.com"], ["list_id", 1], ["name", "Javiera"], ["last_name", "Ovalle Sazie"], ["created_at", "2015-03-18 23:08:48.119857"], ["updated_at", "2015-03-18 23:08:48.119857"]]  (6.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fllamazalesa@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fllamazalesa@gmail.com"], ["list_id", 1], ["name", "Fernanda"], ["last_name", "Llamazales"], ["created_at", "2015-03-18 23:08:48.132910"], ["updated_at", "2015-03-18 23:08:48.132910"]]  (9.4ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nicoletijoux@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nicoletijoux@yahoo.com"], ["list_id", 1], ["name", "nicole"], ["last_name", "tijoux"], ["created_at", "2015-03-18 23:08:48.147737"], ["updated_at", "2015-03-18 23:08:48.147737"]]  (7.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lenkalaya@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lenkalaya@gmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Laya"], ["created_at", "2015-03-18 23:08:48.160978"], ["updated_at", "2015-03-18 23:08:48.160978"]]  (10.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastian.silvat@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastian.silvat@gmail.com"], ["list_id", 1], ["name", "sebastian"], ["last_name", ""], ["created_at", "2015-03-18 23:08:48.177726"], ["updated_at", "2015-03-18 23:08:48.177726"]]  (15.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "beatriz.alarconh@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "beatriz.alarconh@hotmail.com"], ["list_id", 1], ["name", "Beatriz"], ["last_name", "Alarcon Hardy"], ["created_at", "2015-03-18 23:08:48.199257"], ["updated_at", "2015-03-18 23:08:48.199257"]]  (10.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carola_dz@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carola_dz@yahoo.es"], ["list_id", 1], ["name", "rock"], ["last_name", "art roll"], ["created_at", "2015-03-18 23:08:48.215705"], ["updated_at", "2015-03-18 23:08:48.215705"]]  (20.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bpitch.plop@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bpitch.plop@gmail.com"], ["list_id", 1], ["name", "Gastón"], ["last_name", "Vejar"], ["created_at", "2015-03-18 23:08:48.242739"], ["updated_at", "2015-03-18 23:08:48.242739"]]  (3.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@alejandraswett.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@alejandraswett.cl"], ["list_id", 1], ["name", "a"], ["last_name", "L e j a n d r a S w e T T"], ["created_at", "2015-03-18 23:08:48.257860"], ["updated_at", "2015-03-18 23:08:48.257860"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "perezbach@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "perezbach@gmail.com"], ["list_id", 1], ["name", "christian"], ["last_name", "perez bachmann"], ["created_at", "2015-03-18 23:08:48.266835"], ["updated_at", "2015-03-18 23:08:48.266835"]]  (5.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosajuana@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosajuana@hotmail.com"], ["list_id", 1], ["name", "r"], ["last_name", "o s a r i o r i v e r a"], ["created_at", "2015-03-18 23:08:48.277334"], ["updated_at", "2015-03-18 23:08:48.277334"]]  (5.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Thomasschatte@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Thomasschatte@gmail.com"], ["list_id", 1], ["name", "Thomas"], ["last_name", "Schatte"], ["created_at", "2015-03-18 23:08:48.288688"], ["updated_at", "2015-03-18 23:08:48.288688"]]  (4.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fcotorres9@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fcotorres9@gmail.com"], ["list_id", 1], ["name", "fco"], ["last_name", ""], ["created_at", "2015-03-18 23:08:48.308787"], ["updated_at", "2015-03-18 23:08:48.308787"]]  (9.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cguzman_12@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cguzman_12@hotmail.com"], ["list_id", 1], ["name", "carolina"], ["last_name", "guzman"], ["created_at", "2015-03-18 23:08:48.324450"], ["updated_at", "2015-03-18 23:08:48.324450"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daniela-sh@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daniela-sh@hotmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Santelices"], ["created_at", "2015-03-18 23:08:48.333944"], ["updated_at", "2015-03-18 23:08:48.333944"]]  (8.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tatanjocker@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tatanjocker@hotmail.com"], ["list_id", 1], ["name", "cristián"], ["last_name", "pinet"], ["created_at", "2015-03-18 23:08:48.347857"], ["updated_at", "2015-03-18 23:08:48.347857"]]  (12.2ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sastavros@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sastavros@yahoo.es"], ["list_id", 1], ["name", "Salvador"], ["last_name", "Stabros Reyes Coloma"], ["created_at", "2015-03-18 23:08:48.365467"], ["updated_at", "2015-03-18 23:08:48.365467"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pucca_lynch@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pucca_lynch@hotmail.com"], ["list_id", 1], ["name", "valentina"], ["last_name", ""], ["created_at", "2015-03-18 23:08:48.374328"], ["updated_at", "2015-03-18 23:08:48.374328"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artelauri@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artelauri@hotmail.com"], ["list_id", 1], ["name", "Orlando"], ["last_name", "Díaz H"], ["created_at", "2015-03-18 23:08:48.382961"], ["updated_at", "2015-03-18 23:08:48.382961"]]  (10.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulapinturas@yahoo.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulapinturas@yahoo.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Aguirre"], ["created_at", "2015-03-18 23:08:48.398660"], ["updated_at", "2015-03-18 23:08:48.398660"]]  (17.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bascovazko@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bascovazko@gmail.com"], ["list_id", 1], ["name", "basco"], ["last_name", ""], ["created_at", "2015-03-18 23:08:48.421953"], ["updated_at", "2015-03-18 23:08:48.421953"]]  (3.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "entrelaspiedras@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "entrelaspiedras@gmail.com"], ["list_id", 1], ["name", "Nicolas"], ["last_name", "Sanchez"], ["created_at", "2015-03-18 23:08:48.432408"], ["updated_at", "2015-03-18 23:08:48.432408"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alilayu@gmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alilayu@gmail.com"], ["list_id", 1], ["name", "Alexa"], ["last_name", "Lilayú"], ["created_at", "2015-03-18 23:08:48.442087"], ["updated_at", "2015-03-18 23:08:48.442087"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "romriquelm@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "romriquelm@yahoo.es"], ["list_id", 1], ["name", "Romina"], ["last_name", "Riquelme"], ["created_at", "2015-03-18 23:08:48.458490"], ["updated_at", "2015-03-18 23:08:48.458490"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "franciscoolivoslallave@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "franciscoolivoslallave@gmail.com"], ["list_id", 1], ["name", "francisco"], ["last_name", "lallave"], ["created_at", "2015-03-18 23:08:48.467218"], ["updated_at", "2015-03-18 23:08:48.467218"]]  (4.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "betinomail@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "betinomail@gmail.com"], ["list_id", 1], ["name", "Nibaldo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:48.476840"], ["updated_at", "2015-03-18 23:08:48.476840"]]  (16.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "notiene@hotmai.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "notiene@hotmai.com"], ["list_id", 1], ["name", "Alison"], ["last_name", "Haltenhof"], ["created_at", "2015-03-18 23:08:48.499066"], ["updated_at", "2015-03-18 23:08:48.499066"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lamantiz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lamantiz@gmail.com"], ["list_id", 1], ["name", "Max"], ["last_name", "Rosenthal"], ["created_at", "2015-03-18 23:08:48.509486"], ["updated_at", "2015-03-18 23:08:48.509486"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lostilos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lostilos@gmail.com"], ["list_id", 1], ["name", "Lorena"], ["last_name", "Muñoz Bahamondes"], ["created_at", "2015-03-18 23:08:48.518062"], ["updated_at", "2015-03-18 23:08:48.518062"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vvjarami@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vvjarami@uc.cl"], ["list_id", 1], ["name", "Valeria"], ["last_name", "Jaramillo"], ["created_at", "2015-03-18 23:08:48.526236"], ["updated_at", "2015-03-18 23:08:48.526236"]]  (16.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "unodelgado@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "unodelgado@gmail.com"], ["list_id", 1], ["name", "Alejandro"], ["last_name", "Delgado"], ["created_at", "2015-03-18 23:08:48.548162"], ["updated_at", "2015-03-18 23:08:48.548162"]]  (11.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "veroterrazas@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "veroterrazas@yahoo.com"], ["list_id", 1], ["name", "Veronica"], ["last_name", "Terrazas G"], ["created_at", "2015-03-18 23:08:48.565913"], ["updated_at", "2015-03-18 23:08:48.565913"]]  (15.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "trineos@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "trineos@gmail.com"], ["list_id", 1], ["name", "the"], ["last_name", "pasto island"], ["created_at", "2015-03-18 23:08:48.588306"], ["updated_at", "2015-03-18 23:08:48.588306"]]  (15.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kradiopictures@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kradiopictures@hotmail.com"], ["list_id", 1], ["name", "Eduardo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:48.610574"], ["updated_at", "2015-03-18 23:08:48.610574"]]  (9.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "prensa@norteamericano.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "prensa@norteamericano.cl"], ["list_id", 1], ["name", "Andrés"], ["last_name", "Bermúdez"], ["created_at", "2015-03-18 23:08:48.625796"], ["updated_at", "2015-03-18 23:08:48.625796"]]  (29.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diegomille@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diegomille@gmail.com"], ["list_id", 1], ["name", "Diego"], ["last_name", "Mille Notario"], ["created_at", "2015-03-18 23:08:48.660658"], ["updated_at", "2015-03-18 23:08:48.660658"]]  (11.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "loretoriverosf@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "loretoriverosf@gmail.com"], ["list_id", 1], ["name", "Loreto"], ["last_name", "Riveros Fraser"], ["created_at", "2015-03-18 23:08:48.677513"], ["updated_at", "2015-03-18 23:08:48.677513"]]  (9.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "clamp_pcx@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "clamp_pcx@hotmail.com"], ["list_id", 1], ["name", "Héctor"], ["last_name", "Matamala Jara"], ["created_at", "2015-03-18 23:08:48.692442"], ["updated_at", "2015-03-18 23:08:48.692442"]]  (28.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macrodosis@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macrodosis@yahoo.es"], ["list_id", 1], ["name", "Macrodosis"], ["last_name", ""], ["created_at", "2015-03-18 23:08:48.727827"], ["updated_at", "2015-03-18 23:08:48.727827"]]  (20.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "muertearonny@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "muertearonny@hotmail.com"], ["list_id", 1], ["name", "Ronny"], ["last_name", "Venegas"], ["created_at", "2015-03-18 23:08:48.756674"], ["updated_at", "2015-03-18 23:08:48.756674"]]  (5.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cega@vtr.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cega@vtr.net"], ["list_id", 1], ["name", "Cecilia"], ["last_name", "Galleguillos"], ["created_at", "2015-03-18 23:08:48.773435"], ["updated_at", "2015-03-18 23:08:48.773435"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "no_confies_n_nadie@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "no_confies_n_nadie@hotmail.com"], ["list_id", 1], ["name", "Roxana"], ["last_name", "Olmos Zavala"], ["created_at", "2015-03-18 23:08:48.781351"], ["updated_at", "2015-03-18 23:08:48.781351"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tatianasarda@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tatianasarda@gmail.com"], ["list_id", 1], ["name", "Tatiana"], ["last_name", "Sardá"], ["created_at", "2015-03-18 23:08:48.790357"], ["updated_at", "2015-03-18 23:08:48.790357"]]  (7.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pintorflores@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pintorflores@hotmail.com"], ["list_id", 1], ["name", "jose"], ["last_name", "tomas bastias"], ["created_at", "2015-03-18 23:08:48.807832"], ["updated_at", "2015-03-18 23:08:48.807832"]]  (17.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ladoenda@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ladoenda@gmail.com"], ["list_id", 1], ["name", "LA"], ["last_name", "DOENDA"], ["created_at", "2015-03-18 23:08:48.831324"], ["updated_at", "2015-03-18 23:08:48.831324"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sutulov@vtr.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sutulov@vtr.net"], ["list_id", 1], ["name", "Atelier"], ["last_name", "Alexander Sutulov"], ["created_at", "2015-03-18 23:08:48.841143"], ["updated_at", "2015-03-18 23:08:48.841143"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "PEDROJASBON@YAHOO.ES"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "PEDROJASBON@YAHOO.ES"], ["list_id", 1], ["name", "Pedro"], ["last_name", "José Ibañez Torres"], ["created_at", "2015-03-18 23:08:48.856592"], ["updated_at", "2015-03-18 23:08:48.856592"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elmataone@material.cl, gonzamatamala@gmail.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elmataone@material.cl, gonzamatamala@gmail.com"], ["list_id", 1], ["name", "Monica"], ["last_name", "Ortiz"], ["created_at", "2015-03-18 23:08:48.865913"], ["updated_at", "2015-03-18 23:08:48.865913"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cinecirco@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cinecirco@hotmail.com"], ["list_id", 1], ["name", "Radoslav"], ["last_name", "Rakela"], ["created_at", "2015-03-18 23:08:48.875404"], ["updated_at", "2015-03-18 23:08:48.875404"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "geraldo.gonzalo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "geraldo.gonzalo@gmail.com"], ["list_id", 1], ["name", "Gonzalo"], ["last_name", "Geraldo"], ["created_at", "2015-03-18 23:08:48.884220"], ["updated_at", "2015-03-18 23:08:48.884220"]]  (31.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lumosidad@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lumosidad@hotmail.com"], ["list_id", 1], ["name", "Fabián"], ["last_name", "Mora"], ["created_at", "2015-03-18 23:08:48.921565"], ["updated_at", "2015-03-18 23:08:48.921565"]]  (20.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "franciscarobles@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "franciscarobles@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Robles"], ["created_at", "2015-03-18 23:08:48.948936"], ["updated_at", "2015-03-18 23:08:48.948936"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vbrichett@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vbrichett@yahoo.com"], ["list_id", 1], ["name", "hola"], ["last_name", "hola"], ["created_at", "2015-03-18 23:08:48.958762"], ["updated_at", "2015-03-18 23:08:48.958762"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@fundacioncarpetania.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@fundacioncarpetania.com"], ["list_id", 1], ["name", "FUNDACION"], ["last_name", "CARPETANIA"], ["created_at", "2015-03-18 23:08:48.973353"], ["updated_at", "2015-03-18 23:08:48.973353"]]  (14.7ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigocien@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigocien@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Cienfuegos"], ["created_at", "2015-03-18 23:08:48.993602"], ["updated_at", "2015-03-18 23:08:48.993602"]]  (21.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "panemaa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "panemaa@gmail.com"], ["list_id", 1], ["name", "Pamela"], ["last_name", "Alvarado Álvarez"], ["created_at", "2015-03-18 23:08:49.021801"], ["updated_at", "2015-03-18 23:08:49.021801"]]  (37.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mignaciam7@hotmail.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mignaciam7@hotmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Ignacia Muñoz"], ["created_at", "2015-03-18 23:08:49.065419"], ["updated_at", "2015-03-18 23:08:49.065419"]]  (19.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "encuadre.x@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "encuadre.x@gmail.com"], ["list_id", 1], ["name", "César"], ["last_name", "Vargas"], ["created_at", "2015-03-18 23:08:49.093727"], ["updated_at", "2015-03-18 23:08:49.093727"]]  (16.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jaskask.zeth@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jaskask.zeth@gmail.com"], ["list_id", 1], ["name", "Jessica"], ["last_name", "Parra Nowajewski"], ["created_at", "2015-03-18 23:08:49.116362"], ["updated_at", "2015-03-18 23:08:49.116362"]]  (14.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "la_porte_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "la_porte_@hotmail.com"], ["list_id", 1], ["name", "Laporte"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.138991"], ["updated_at", "2015-03-18 23:08:49.138991"]]  (14.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tooatafune@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tooatafune@hotmail.com"], ["list_id", 1], ["name", "plantaverde"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.160680"], ["updated_at", "2015-03-18 23:08:49.160680"]]  (10.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "serafico0216@yohoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "serafico0216@yohoo.com"], ["list_id", 1], ["name", "serafin"], ["last_name", "romero wbake"], ["created_at", "2015-03-18 23:08:49.177475"], ["updated_at", "2015-03-18 23:08:49.177475"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ca_mi86@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ca_mi86@hotmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Cafatti"], ["created_at", "2015-03-18 23:08:49.186141"], ["updated_at", "2015-03-18 23:08:49.186141"]]  (17.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pilar.castro.e@gmail.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pilar.castro.e@gmail.com"], ["list_id", 1], ["name", "Pilar"], ["last_name", "Castro"], ["created_at", "2015-03-18 23:08:49.210229"], ["updated_at", "2015-03-18 23:08:49.210229"]]  (267.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felipemuhr@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felipemuhr@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Muhr"], ["created_at", "2015-03-18 23:08:49.484619"], ["updated_at", "2015-03-18 23:08:49.484619"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dark.chancellor@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dark.chancellor@yahoo.com"], ["list_id", 1], ["name", "marcela"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.494788"], ["updated_at", "2015-03-18 23:08:49.494788"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "insistidora@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "insistidora@gmail.com"], ["list_id", 1], ["name", "Isidora"], ["last_name", "Martínez Calvin"], ["created_at", "2015-03-18 23:08:49.503202"], ["updated_at", "2015-03-18 23:08:49.503202"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisca.onetto@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisca.onetto@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Onetto"], ["created_at", "2015-03-18 23:08:49.511368"], ["updated_at", "2015-03-18 23:08:49.511368"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "portishead_92@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "portishead_92@hotmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Quevedo"], ["created_at", "2015-03-18 23:08:49.519118"], ["updated_at", "2015-03-18 23:08:49.519118"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "larepauli@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "larepauli@gmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Altamirano"], ["created_at", "2015-03-18 23:08:49.538415"], ["updated_at", "2015-03-18 23:08:49.538415"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristianguionbajocero@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristianguionbajocero@gmail.com"], ["list_id", 1], ["name", "cristian"], ["last_name", "salinas"], ["created_at", "2015-03-18 23:08:49.546764"], ["updated_at", "2015-03-18 23:08:49.546764"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "peper@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "peper@yahoo.com"], ["list_id", 1], ["name", "julio"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.555042"], ["updated_at", "2015-03-18 23:08:49.555042"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "uvty03@latinmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "uvty03@latinmail.com"], ["list_id", 1], ["name", "hernan"], ["last_name", "droguett"], ["created_at", "2015-03-18 23:08:49.563719"], ["updated_at", "2015-03-18 23:08:49.563719"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leandrogp13@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leandrogp13@yahoo.com.ar"], ["list_id", 1], ["name", "Leandro"], ["last_name", "Garcia Pimentel"], ["created_at", "2015-03-18 23:08:49.572180"], ["updated_at", "2015-03-18 23:08:49.572180"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "animaerea@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "animaerea@hotmail.com"], ["list_id", 1], ["name", "paloma"], ["last_name", "palomino"], ["created_at", "2015-03-18 23:08:49.587761"], ["updated_at", "2015-03-18 23:08:49.587761"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fotografa_clausan@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fotografa_clausan@yahoo.es"], ["list_id", 1], ["name", "CLAUDIA"], ["last_name", "SANCHEZ"], ["created_at", "2015-03-18 23:08:49.596422"], ["updated_at", "2015-03-18 23:08:49.596422"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eliasesuninventodeelias@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eliasesuninventodeelias@gmail.com"], ["list_id", 1], ["name", "Elias"], ["last_name", "Santis"], ["created_at", "2015-03-18 23:08:49.604236"], ["updated_at", "2015-03-18 23:08:49.604236"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "spagnuoloart@tiscali.it"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "spagnuoloart@tiscali.it"], ["list_id", 1], ["name", "Anna"], ["last_name", "Teresa Spagnuolo"], ["created_at", "2015-03-18 23:08:49.612578"], ["updated_at", "2015-03-18 23:08:49.612578"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jekar.edge@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jekar.edge@hotmail.com"], ["list_id", 1], ["name", "jekar"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.621446"], ["updated_at", "2015-03-18 23:08:49.621446"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kalogatia@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kalogatia@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Figueroa"], ["created_at", "2015-03-18 23:08:49.637903"], ["updated_at", "2015-03-18 23:08:49.637903"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matiasolar@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matiasolar@gmail.com"], ["list_id", 1], ["name", "EL"], ["last_name", "MATO"], ["created_at", "2015-03-18 23:08:49.646070"], ["updated_at", "2015-03-18 23:08:49.646070"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "guajirovero@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "guajirovero@hotmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Juan Mora"], ["created_at", "2015-03-18 23:08:49.654680"], ["updated_at", "2015-03-18 23:08:49.654680"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jahmekia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jahmekia@gmail.com"], ["list_id", 1], ["name", "nelson"], ["last_name", "moya"], ["created_at", "2015-03-18 23:08:49.663192"], ["updated_at", "2015-03-18 23:08:49.663192"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sagito13@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sagito13@gmail.com"], ["list_id", 1], ["name", "SEBASTIAN"], ["last_name", "GEELL"], ["created_at", "2015-03-18 23:08:49.672221"], ["updated_at", "2015-03-18 23:08:49.672221"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "colectivoartisticotoma@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "colectivoartisticotoma@gmail.com"], ["list_id", 1], ["name", "colectivo"], ["last_name", "artistico TOMA"], ["created_at", "2015-03-18 23:08:49.687736"], ["updated_at", "2015-03-18 23:08:49.687736"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "emilita.mundt@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "emilita.mundt@gmail.com"], ["list_id", 1], ["name", "."], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.696211"], ["updated_at", "2015-03-18 23:08:49.696211"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alejandro_diazperez@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alejandro_diazperez@hotmail.com"], ["list_id", 1], ["name", "siroco"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.704831"], ["updated_at", "2015-03-18 23:08:49.704831"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leonellon@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leonellon@gmail.com"], ["list_id", 1], ["name", "Hugo"], ["last_name", "Leonello Núñez"], ["created_at", "2015-03-18 23:08:49.712448"], ["updated_at", "2015-03-18 23:08:49.712448"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mentejano@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mentejano@yahoo.es"], ["list_id", 1], ["name", "Alejandro"], ["last_name", "JANO Ríos A"], ["created_at", "2015-03-18 23:08:49.721700"], ["updated_at", "2015-03-18 23:08:49.721700"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "karenpazan@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "karenpazan@gmail.com"], ["list_id", 1], ["name", "Karen"], ["last_name", "Pazan Valencia"], ["created_at", "2015-03-18 23:08:49.737741"], ["updated_at", "2015-03-18 23:08:49.737741"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "imagenmortal@mail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "imagenmortal@mail.com"], ["list_id", 1], ["name", "alma"], ["last_name", "paz riquelme"], ["created_at", "2015-03-18 23:08:49.745580"], ["updated_at", "2015-03-18 23:08:49.745580"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chacografix@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chacografix@gmail.com"], ["list_id", 1], ["name", "claudio"], ["last_name", "ovando"], ["created_at", "2015-03-18 23:08:49.754250"], ["updated_at", "2015-03-18 23:08:49.754250"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "goghsgirl@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "goghsgirl@gmail.com"], ["list_id", 1], ["name", "CvL"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.762457"], ["updated_at", "2015-03-18 23:08:49.762457"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jrodriguezenglish@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jrodriguezenglish@gmail.com"], ["list_id", 1], ["name", "Jessica"], ["last_name", "Rodriguez"], ["created_at", "2015-03-18 23:08:49.771813"], ["updated_at", "2015-03-18 23:08:49.771813"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "smuruagc@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "smuruagc@yahoo.com"], ["list_id", 1], ["name", "Santiago"], ["last_name", "Muruaga Carrere"], ["created_at", "2015-03-18 23:08:49.787844"], ["updated_at", "2015-03-18 23:08:49.787844"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "imagenmortal@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "imagenmortal@gmail.com"], ["list_id", 1], ["name", "Alma"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.873808"], ["updated_at", "2015-03-18 23:08:49.873808"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "z6qjvm4rxn9pc8h@golfilla.info"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "z6qjvm4rxn9pc8h@golfilla.info"], ["list_id", 1], ["name", "xtra"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.887202"], ["updated_at", "2015-03-18 23:08:49.887202"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nebul_art@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nebul_art@hotmail.com"], ["list_id", 1], ["name", "heinekt"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.896246"], ["updated_at", "2015-03-18 23:08:49.896246"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "videomaca@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "videomaca@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Molina"], ["created_at", "2015-03-18 23:08:49.904550"], ["updated_at", "2015-03-18 23:08:49.904550"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anguita.rodrigo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anguita.rodrigo@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Anguita"], ["created_at", "2015-03-18 23:08:49.913025"], ["updated_at", "2015-03-18 23:08:49.913025"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodcasanova@vtr.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodcasanova@vtr.net"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Casanova"], ["created_at", "2015-03-18 23:08:49.921782"], ["updated_at", "2015-03-18 23:08:49.921782"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mayaescobar@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mayaescobar@gmail.com"], ["list_id", 1], ["name", "maya"], ["last_name", "escobar"], ["created_at", "2015-03-18 23:08:49.936887"], ["updated_at", "2015-03-18 23:08:49.936887"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "laualtimir@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "laualtimir@hotmail.com"], ["list_id", 1], ["name", "Laura"], ["last_name", "Altimir Colao"], ["created_at", "2015-03-18 23:08:49.945188"], ["updated_at", "2015-03-18 23:08:49.945188"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ren134@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ren134@hotmail.com"], ["list_id", 1], ["name", "mono"], ["last_name", "rata matamala"], ["created_at", "2015-03-18 23:08:49.954022"], ["updated_at", "2015-03-18 23:08:49.954022"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caro_domo_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caro_domo_@hotmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Moreno Bustamante"], ["created_at", "2015-03-18 23:08:49.962710"], ["updated_at", "2015-03-18 23:08:49.962710"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vanalase@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vanalase@gmail.com"], ["list_id", 1], ["name", "Gabriela"], ["last_name", "Solís"], ["created_at", "2015-03-18 23:08:49.971196"], ["updated_at", "2015-03-18 23:08:49.971196"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "peliculachilena@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "peliculachilena@yahoo.es"], ["list_id", 1], ["name", "F.W.DISEL"], ["last_name", ""], ["created_at", "2015-03-18 23:08:49.987010"], ["updated_at", "2015-03-18 23:08:49.987010"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "clula14@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "clula14@hotmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Abeliuk"], ["created_at", "2015-03-18 23:08:49.995429"], ["updated_at", "2015-03-18 23:08:49.995429"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "consueloca_stillo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "consueloca_stillo@hotmail.com"], ["list_id", 1], ["name", "consuelo"], ["last_name", "castillo"], ["created_at", "2015-03-18 23:08:50.003734"], ["updated_at", "2015-03-18 23:08:50.003734"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fabiolaalarcon@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fabiolaalarcon@live.cl"], ["list_id", 1], ["name", "FABIOLA"], ["last_name", "ALARCON"], ["created_at", "2015-03-18 23:08:50.013039"], ["updated_at", "2015-03-18 23:08:50.013039"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanpa_gospel@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanpa_gospel@hotmail.com"], ["list_id", 1], ["name", "Juanpa"], ["last_name", "Gomez Garzon"], ["created_at", "2015-03-18 23:08:50.021717"], ["updated_at", "2015-03-18 23:08:50.021717"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jimenacastrov@vtr.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jimenacastrov@vtr.net"], ["list_id", 1], ["name", "Jimena"], ["last_name", "Castro"], ["created_at", "2015-03-18 23:08:50.036935"], ["updated_at", "2015-03-18 23:08:50.036935"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "avacolores@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "avacolores@hotmail.com"], ["list_id", 1], ["name", "Valeria"], ["last_name", "Mendoza"], ["created_at", "2015-03-18 23:08:50.045440"], ["updated_at", "2015-03-18 23:08:50.045440"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rivasfreire@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rivasfreire@gmail.com"], ["list_id", 1], ["name", "Jose"], ["last_name", "Luis Rivas freire"], ["created_at", "2015-03-18 23:08:50.054350"], ["updated_at", "2015-03-18 23:08:50.054350"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Jackson@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Jackson@yahoo.com"], ["list_id", 1], ["name", "Abraham"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.062987"], ["updated_at", "2015-03-18 23:08:50.062987"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gh.rodrigo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gh.rodrigo@gmail.com"], ["list_id", 1], ["name", "rodrigo"], ["last_name", "mancilla"], ["created_at", "2015-03-18 23:08:50.071396"], ["updated_at", "2015-03-18 23:08:50.071396"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maitemaria06@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maitemaria06@yahoo.com"], ["list_id", 1], ["name", "maite"], ["last_name", "zabala"], ["created_at", "2015-03-18 23:08:50.087370"], ["updated_at", "2015-03-18 23:08:50.087370"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Ricardo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Ricardo@gmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Goebbles"], ["created_at", "2015-03-18 23:08:50.095877"], ["updated_at", "2015-03-18 23:08:50.095877"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "landejavu@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "landejavu@gmail.com"], ["list_id", 1], ["name", "claudio"], ["last_name", "olmos alegria"], ["created_at", "2015-03-18 23:08:50.103610"], ["updated_at", "2015-03-18 23:08:50.103610"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carhum007@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carhum007@hotmail.com"], ["list_id", 1], ["name", "CARHUM"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.111467"], ["updated_at", "2015-03-18 23:08:50.111467"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hector.menendez@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hector.menendez@gmail.com"], ["list_id", 1], ["name", "Héctor"], ["last_name", "Menéndez"], ["created_at", "2015-03-18 23:08:50.119750"], ["updated_at", "2015-03-18 23:08:50.119750"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "musicapez@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "musicapez@gmail.com"], ["list_id", 1], ["name", "pascual"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.138541"], ["updated_at", "2015-03-18 23:08:50.138541"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "scrabscrey@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "scrabscrey@gmail.com"], ["list_id", 1], ["name", "Scrab"], ["last_name", "Screy"], ["created_at", "2015-03-18 23:08:50.147907"], ["updated_at", "2015-03-18 23:08:50.147907"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dieztoros@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dieztoros@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Jim"], ["created_at", "2015-03-18 23:08:50.156609"], ["updated_at", "2015-03-18 23:08:50.156609"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fugonavaz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fugonavaz@gmail.com"], ["list_id", 1], ["name", "HUGO"], ["last_name", "NAVARRO ZUÑIGA"], ["created_at", "2015-03-18 23:08:50.165235"], ["updated_at", "2015-03-18 23:08:50.165235"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kathydunker@esfera.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kathydunker@esfera.cl"], ["list_id", 1], ["name", "Kathy"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.173693"], ["updated_at", "2015-03-18 23:08:50.173693"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catoniart@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catoniart@gmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Catoni"], ["created_at", "2015-03-18 23:08:50.187190"], ["updated_at", "2015-03-18 23:08:50.187190"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "oseamarilyn@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "oseamarilyn@hotmail.com"], ["list_id", 1], ["name", "Marina"], ["last_name", "Muñoz García"], ["created_at", "2015-03-18 23:08:50.195114"], ["updated_at", "2015-03-18 23:08:50.195114"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcos8328@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcos8328@hotmail.com"], ["list_id", 1], ["name", "Marcos"], ["last_name", "Martinez Perez"], ["created_at", "2015-03-18 23:08:50.203520"], ["updated_at", "2015-03-18 23:08:50.203520"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "corredorkm42@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "corredorkm42@gmail.com"], ["list_id", 1], ["name", "KM42"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.212085"], ["updated_at", "2015-03-18 23:08:50.212085"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "habacuc.habacuc@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "habacuc.habacuc@gmail.com"], ["list_id", 1], ["name", "Habacuc"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.220987"], ["updated_at", "2015-03-18 23:08:50.220987"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gabyf6x_x@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gabyf6x_x@hotmail.com"], ["list_id", 1], ["name", "gabriela"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.237043"], ["updated_at", "2015-03-18 23:08:50.237043"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iriachousar@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iriachousar@hotmail.com"], ["list_id", 1], ["name", "iria"], ["last_name", "chousa"], ["created_at", "2015-03-18 23:08:50.245811"], ["updated_at", "2015-03-18 23:08:50.245811"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "okt8pus@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "okt8pus@gmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Tapia"], ["created_at", "2015-03-18 23:08:50.253844"], ["updated_at", "2015-03-18 23:08:50.253844"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cuerpomanoseado@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cuerpomanoseado@gmail.com"], ["list_id", 1], ["name", "CUERPO"], ["last_name", "MANOSEADO"], ["created_at", "2015-03-18 23:08:50.262674"], ["updated_at", "2015-03-18 23:08:50.262674"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "heinsenandres@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "heinsenandres@hotmail.com"], ["list_id", 1], ["name", "andres"], ["last_name", "heinsen planella"], ["created_at", "2015-03-18 23:08:50.271712"], ["updated_at", "2015-03-18 23:08:50.271712"]]  (7.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catamuda@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catamuda@hotmail.com"], ["list_id", 1], ["name", "catalina"], ["last_name", "bustos"], ["created_at", "2015-03-18 23:08:50.286718"], ["updated_at", "2015-03-18 23:08:50.286718"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "glassfetus@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "glassfetus@hotmail.com"], ["list_id", 1], ["name", "vincent"], ["last_name", "didier"], ["created_at", "2015-03-18 23:08:50.295587"], ["updated_at", "2015-03-18 23:08:50.295587"]]  (14.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vicentemarti101@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vicentemarti101@hotmail.com"], ["list_id", 1], ["name", "Vicente"], ["last_name", "Marti"], ["created_at", "2015-03-18 23:08:50.316970"], ["updated_at", "2015-03-18 23:08:50.316970"]]  (7.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yair_lepra_2003@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yair_lepra_2003@hotmail.com"], ["list_id", 1], ["name", "yair"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.330460"], ["updated_at", "2015-03-18 23:08:50.330460"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "convencionalmente@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "convencionalmente@gmail.com"], ["list_id", 1], ["name", "Aquiles"], ["last_name", "Boyd"], ["created_at", "2015-03-18 23:08:50.341657"], ["updated_at", "2015-03-18 23:08:50.341657"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antoniacruzs@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antoniacruzs@hotmail.com"], ["list_id", 1], ["name", "antoniacruz"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.349684"], ["updated_at", "2015-03-18 23:08:50.349684"]]  (54.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "capilla648@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "capilla648@gmail.com"], ["list_id", 1], ["name", "Konstanza"], ["last_name", "Scheihing"], ["created_at", "2015-03-18 23:08:50.410621"], ["updated_at", "2015-03-18 23:08:50.410621"]]  (12.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "james.colleman@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "james.colleman@gmail.com"], ["list_id", 1], ["name", "james"], ["last_name", "colleman"], ["created_at", "2015-03-18 23:08:50.429712"], ["updated_at", "2015-03-18 23:08:50.429712"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cesargaetea@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cesargaetea@gmail.com"], ["list_id", 1], ["name", "cesar"], ["last_name", "alonso gaete"], ["created_at", "2015-03-18 23:08:50.439209"], ["updated_at", "2015-03-18 23:08:50.439209"]]  (5.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ppaannttoojjaa@yahoo.es"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ppaannttoojjaa@yahoo.es"], ["list_id", 1], ["name", "Fernando"], ["last_name", "Franco"], ["created_at", "2015-03-18 23:08:50.450417"], ["updated_at", "2015-03-18 23:08:50.450417"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "i_gatica71@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "i_gatica71@hotmail.com"], ["list_id", 1], ["name", "ignacio"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.470442"], ["updated_at", "2015-03-18 23:08:50.470442"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ighor.alarcon@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ighor.alarcon@gmail.com"], ["list_id", 1], ["name", "Ighor"], ["last_name", "Alarcón"], ["created_at", "2015-03-18 23:08:50.479383"], ["updated_at", "2015-03-18 23:08:50.479383"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "panemaa@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "panemaa@yahoo.com"], ["list_id", 1], ["name", "Pamela"], ["last_name", "A, A"], ["created_at", "2015-03-18 23:08:50.487929"], ["updated_at", "2015-03-18 23:08:50.487929"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "panemaa@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "panemaa@hotmail.com"], ["list_id", 1], ["name", "Pamela"], ["last_name", "a. a"], ["created_at", "2015-03-18 23:08:50.496514"], ["updated_at", "2015-03-18 23:08:50.496514"]]  (4.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elcantodelasplantas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elcantodelasplantas@gmail.com"], ["list_id", 1], ["name", "CAMPANA"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.507082"], ["updated_at", "2015-03-18 23:08:50.507082"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristobal@cristobalcea.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristobal@cristobalcea.net"], ["list_id", 1], ["name", "Cristóbal"], ["last_name", "Cea Sánchez"], ["created_at", "2015-03-18 23:08:50.519438"], ["updated_at", "2015-03-18 23:08:50.519438"]]  (17.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosensvaigpintor@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosensvaigpintor@gmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Rosensvaig"], ["created_at", "2015-03-18 23:08:50.543458"], ["updated_at", "2015-03-18 23:08:50.543458"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arte.sonado@hotmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arte.sonado@hotmail.com"], ["list_id", 1], ["name", "MJESUS"], ["last_name", "HERNANDEZ"], ["created_at", "2015-03-18 23:08:50.554120"], ["updated_at", "2015-03-18 23:08:50.554120"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ossan73@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ossan73@hotmail.com"], ["list_id", 1], ["name", "Manuel"], ["last_name", "Ossandón"], ["created_at", "2015-03-18 23:08:50.568869"], ["updated_at", "2015-03-18 23:08:50.568869"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kwehrhahn@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kwehrhahn@gmail.com"], ["list_id", 1], ["name", "Karin"], ["last_name", "Wehrhahn"], ["created_at", "2015-03-18 23:08:50.577852"], ["updated_at", "2015-03-18 23:08:50.577852"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jebusacido@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jebusacido@hotmail.com"], ["list_id", 1], ["name", "jesus"], ["last_name", "ivan ortega suckel"], ["created_at", "2015-03-18 23:08:50.586114"], ["updated_at", "2015-03-18 23:08:50.586114"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chiriubses@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chiriubses@gmail.com"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Elizalde"], ["created_at", "2015-03-18 23:08:50.594635"], ["updated_at", "2015-03-18 23:08:50.594635"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "phantom_mg42@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "phantom_mg42@hotmail.com"], ["list_id", 1], ["name", "Fredo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.603169"], ["updated_at", "2015-03-18 23:08:50.603169"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisca_lastra_07_2007@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisca_lastra_07_2007@yahoo.es"], ["list_id", 1], ["name", "francisca"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.619764"], ["updated_at", "2015-03-18 23:08:50.619764"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yuyito345@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yuyito345@hotmail.com"], ["list_id", 1], ["name", "Fabiola"], ["last_name", "Caro"], ["created_at", "2015-03-18 23:08:50.627816"], ["updated_at", "2015-03-18 23:08:50.627816"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "shinkawa_master@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "shinkawa_master@hotmail.com"], ["list_id", 1], ["name", "Mariano"], ["last_name", "Bilyk"], ["created_at", "2015-03-18 23:08:50.636150"], ["updated_at", "2015-03-18 23:08:50.636150"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xiomaraltda@tutopia.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xiomaraltda@tutopia.com"], ["list_id", 1], ["name", "jaime"], ["last_name", "huerta"], ["created_at", "2015-03-18 23:08:50.644777"], ["updated_at", "2015-03-18 23:08:50.644777"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "belenb_16@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "belenb_16@hotmail.com"], ["list_id", 1], ["name", "Belen"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.653880"], ["updated_at", "2015-03-18 23:08:50.653880"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fran.vilches@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fran.vilches@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Vilches"], ["created_at", "2015-03-18 23:08:50.668420"], ["updated_at", "2015-03-18 23:08:50.668420"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sombrasyluces@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sombrasyluces@gmail.com"], ["list_id", 1], ["name", "Animita"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.677948"], ["updated_at", "2015-03-18 23:08:50.677948"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vaicyber@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vaicyber@yahoo.com.ar"], ["list_id", 1], ["name", "veronica"], ["last_name", "astorga inostroza"], ["created_at", "2015-03-18 23:08:50.685950"], ["updated_at", "2015-03-18 23:08:50.685950"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "unravelheart@msn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "unravelheart@msn.com"], ["list_id", 1], ["name", "Luna"], ["last_name", "Diaz Segovia"], ["created_at", "2015-03-18 23:08:50.695019"], ["updated_at", "2015-03-18 23:08:50.695019"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pedrofodich13@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pedrofodich13@gmail.com"], ["list_id", 1], ["name", "Pedro"], ["last_name", "Fodich"], ["created_at", "2015-03-18 23:08:50.703592"], ["updated_at", "2015-03-18 23:08:50.703592"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "trinitronia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "trinitronia@hotmail.com"], ["list_id", 1], ["name", "trinidad"], ["last_name", "pacheco"], ["created_at", "2015-03-18 23:08:50.718745"], ["updated_at", "2015-03-18 23:08:50.718745"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gatostar777@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gatostar777@hotmail.com"], ["list_id", 1], ["name", "nestor"], ["last_name", "ayala"], ["created_at", "2015-03-18 23:08:50.727688"], ["updated_at", "2015-03-18 23:08:50.727688"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alejandrocabeza1@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alejandrocabeza1@gmail.com"], ["list_id", 1], ["name", "ALEJANDRO"], ["last_name", "CABEZA"], ["created_at", "2015-03-18 23:08:50.736762"], ["updated_at", "2015-03-18 23:08:50.736762"]]  (52.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "intrsuo1978@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "intrsuo1978@hotmail.com"], ["list_id", 1], ["name", "alvaro"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.796161"], ["updated_at", "2015-03-18 23:08:50.796161"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vsilvabruce@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vsilvabruce@gmail.com"], ["list_id", 1], ["name", "Verónica"], ["last_name", "Silva"], ["created_at", "2015-03-18 23:08:50.805770"], ["updated_at", "2015-03-18 23:08:50.805770"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patriciacarvajal@yahoo.es"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patriciacarvajal@yahoo.es"], ["list_id", 1], ["name", "Patricia"], ["last_name", "Carvajal"], ["created_at", "2015-03-18 23:08:50.815516"], ["updated_at", "2015-03-18 23:08:50.815516"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "olivarisantana@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "olivarisantana@hotmail.com"], ["list_id", 1], ["name", "SEBASTIAN"], ["last_name", "OLIVARI"], ["created_at", "2015-03-18 23:08:50.834883"], ["updated_at", "2015-03-18 23:08:50.834883"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lscalquin@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lscalquin@yahoo.es"], ["list_id", 1], ["name", "LEONARDO"], ["last_name", "SOTO CALQUIN"], ["created_at", "2015-03-18 23:08:50.851564"], ["updated_at", "2015-03-18 23:08:50.851564"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "blankstarter@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "blankstarter@gmail.com"], ["list_id", 1], ["name", "El"], ["last_name", "Peace Revolucion"], ["created_at", "2015-03-18 23:08:50.860945"], ["updated_at", "2015-03-18 23:08:50.860945"]]  (10.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "annah8a@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "annah8a@hotmail.com"], ["list_id", 1], ["name", "Alika"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.876425"], ["updated_at", "2015-03-18 23:08:50.876425"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "norfolko@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "norfolko@hotmail.com"], ["list_id", 1], ["name", "Matias"], ["last_name", "Gonzalez Cornejo"], ["created_at", "2015-03-18 23:08:50.886236"], ["updated_at", "2015-03-18 23:08:50.886236"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elihudiaz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elihudiaz@gmail.com"], ["list_id", 1], ["name", "Manuel"], ["last_name", "Elihú Díaz"], ["created_at", "2015-03-18 23:08:50.901894"], ["updated_at", "2015-03-18 23:08:50.901894"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "correo@chelinsanjuan.info"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "correo@chelinsanjuan.info"], ["list_id", 1], ["name", "Chelin"], ["last_name", "Sanjuan"], ["created_at", "2015-03-18 23:08:50.911193"], ["updated_at", "2015-03-18 23:08:50.911193"]]  (4.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolina_ibarrac@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolina_ibarrac@yahoo.es"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Ibarra"], ["created_at", "2015-03-18 23:08:50.920590"], ["updated_at", "2015-03-18 23:08:50.920590"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "valentinacont@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "valentinacont@gmail.com"], ["list_id", 1], ["name", "valentinavarela"], ["last_name", ""], ["created_at", "2015-03-18 23:08:50.929931"], ["updated_at", "2015-03-18 23:08:50.929931"]]  (52.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "constanzaferrada@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "constanzaferrada@yahoo.com.ar"], ["list_id", 1], ["name", "constanza"], ["last_name", "ferrada"], ["created_at", "2015-03-18 23:08:50.988799"], ["updated_at", "2015-03-18 23:08:50.988799"]]  (4.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eleborquez@vtr.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eleborquez@vtr.net"], ["list_id", 1], ["name", "Luis"], ["last_name", "Bórquez"], ["created_at", "2015-03-18 23:08:50.999616"], ["updated_at", "2015-03-18 23:08:50.999616"]]  (27.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "angelascavo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "angelascavo@gmail.com"], ["list_id", 1], ["name", "angela"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.034983"], ["updated_at", "2015-03-18 23:08:51.034983"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "is.cata.gzz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "is.cata.gzz@gmail.com"], ["list_id", 1], ["name", "Cata"], ["last_name", "González"], ["created_at", "2015-03-18 23:08:51.044438"], ["updated_at", "2015-03-18 23:08:51.044438"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanmartinezproducciones@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanmartinezproducciones@yahoo.com"], ["list_id", 1], ["name", "juan"], ["last_name", "martínez guirado"], ["created_at", "2015-03-18 23:08:51.053106"], ["updated_at", "2015-03-18 23:08:51.053106"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iuhiu@kjhkj.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iuhiu@kjhkj.cl"], ["list_id", 1], ["name", "iuhikj"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.061419"], ["updated_at", "2015-03-18 23:08:51.061419"]]  (65.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chidalgo@nd.edu"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chidalgo@nd.edu"], ["list_id", 1], ["name", "Cesar"], ["last_name", "Hidalgo"], ["created_at", "2015-03-18 23:08:51.132825"], ["updated_at", "2015-03-18 23:08:51.132825"]]  (20.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bonzo.bz@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bonzo.bz@gmail.com"], ["list_id", 1], ["name", "Raúl"], ["last_name", "Ciudad"], ["created_at", "2015-03-18 23:08:51.159979"], ["updated_at", "2015-03-18 23:08:51.159979"]]  (5.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "asd@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "asd@hotmail.com"], ["list_id", 1], ["name", "asdf"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.171824"], ["updated_at", "2015-03-18 23:08:51.171824"]]  (4.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguel.michelson@oxus.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguel.michelson@oxus.cl"], ["list_id", 1], ["name", "mimimoi"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.184861"], ["updated_at", "2015-03-18 23:08:51.184861"]]  (15.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wangulem@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wangulem@gmail.com"], ["list_id", 1], ["name", "carola"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.206793"], ["updated_at", "2015-03-18 23:08:51.206793"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "taquilpa@puc.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "taquilpa@puc.cl"], ["list_id", 1], ["name", "Tamara"], ["last_name", "Quilpatay"], ["created_at", "2015-03-18 23:08:51.216600"], ["updated_at", "2015-03-18 23:08:51.216600"]]  (20.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maurobasaez@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maurobasaez@yahoo.es"], ["list_id", 1], ["name", "maurobasaez.cl.tf"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.244406"], ["updated_at", "2015-03-18 23:08:51.244406"]]  (21.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andluk_22@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andluk_22@hotmail.com"], ["list_id", 1], ["name", "andrea"], ["last_name", "fuentealba elizalde"], ["created_at", "2015-03-18 23:08:51.272511"], ["updated_at", "2015-03-18 23:08:51.272511"]]  (20.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "martinezabarca@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "martinezabarca@gmail.com"], ["list_id", 1], ["name", "Adolfo"], ["last_name", "Martínez"], ["created_at", "2015-03-18 23:08:51.298472"], ["updated_at", "2015-03-18 23:08:51.298472"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elisamenabar@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elisamenabar@gmail.com"], ["list_id", 1], ["name", "Elisa"], ["last_name", "Amenabar"], ["created_at", "2015-03-18 23:08:51.307010"], ["updated_at", "2015-03-18 23:08:51.307010"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danielasantacruzvergara@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danielasantacruzvergara@yahoo.com.mx"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Santa Cruz Vergara"], ["created_at", "2015-03-18 23:08:51.315670"], ["updated_at", "2015-03-18 23:08:51.315670"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "subgenio@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "subgenio@gmail.com"], ["list_id", 1], ["name", "alvaro"], ["last_name", "balcazar"], ["created_at", "2015-03-18 23:08:51.334235"], ["updated_at", "2015-03-18 23:08:51.334235"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "7films@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "7films@gmail.com"], ["list_id", 1], ["name", "Ariztopapelo"], ["last_name", "en coma"], ["created_at", "2015-03-18 23:08:51.343741"], ["updated_at", "2015-03-18 23:08:51.343741"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "azur200@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "azur200@hotmail.com"], ["list_id", 1], ["name", "mario"], ["last_name", "sanchez"], ["created_at", "2015-03-18 23:08:51.351897"], ["updated_at", "2015-03-18 23:08:51.351897"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "findiulas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "findiulas@gmail.com"], ["list_id", 1], ["name", "Lila"], ["last_name", "Mejias"], ["created_at", "2015-03-18 23:08:51.360707"], ["updated_at", "2015-03-18 23:08:51.360707"]]  (16.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Victor.Araya@live.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Victor.Araya@live.cl"], ["list_id", 1], ["name", "Victor"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.384122"], ["updated_at", "2015-03-18 23:08:51.384122"]]  (4.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nova_era_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nova_era_@hotmail.com"], ["list_id", 1], ["name", "franklin"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.395012"], ["updated_at", "2015-03-18 23:08:51.395012"]]  (15.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "raga96@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "raga96@gmail.com"], ["list_id", 1], ["name", "Pilar"], ["last_name", "Pozzo"], ["created_at", "2015-03-18 23:08:51.417317"], ["updated_at", "2015-03-18 23:08:51.417317"]]  (13.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristilup77@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristilup77@gmail.com"], ["list_id", 1], ["name", "cristina"], ["last_name", "nunez"], ["created_at", "2015-03-18 23:08:51.436618"], ["updated_at", "2015-03-18 23:08:51.436618"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "perezjaviera@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "perezjaviera@gmail.com"], ["list_id", 1], ["name", "javiera"], ["last_name", "perez"], ["created_at", "2015-03-18 23:08:51.445288"], ["updated_at", "2015-03-18 23:08:51.445288"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "beatrizacevedocabello@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "beatrizacevedocabello@hotmail.com"], ["list_id", 1], ["name", "Beatriz"], ["last_name", "Sofía Acevedo Cabello"], ["created_at", "2015-03-18 23:08:51.453957"], ["updated_at", "2015-03-18 23:08:51.453957"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lcalderon@graficauno.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lcalderon@graficauno.com"], ["list_id", 1], ["name", "Lorena"], ["last_name", "Calderón"], ["created_at", "2015-03-18 23:08:51.462493"], ["updated_at", "2015-03-18 23:08:51.462493"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Kiltronauta@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Kiltronauta@gmail.com"], ["list_id", 1], ["name", "kiltronauta"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.471050"], ["updated_at", "2015-03-18 23:08:51.471050"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kraken_279@yahoo.es"]]  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kraken_279@yahoo.es"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Alejandro Rojas Sandoval"], ["created_at", "2015-03-18 23:08:51.483793"], ["updated_at", "2015-03-18 23:08:51.483793"]]  (5.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alejandra.valenzuelal@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alejandra.valenzuelal@gmail.com"], ["list_id", 1], ["name", "Alejandra"], ["last_name", "Valenzuela"], ["created_at", "2015-03-18 23:08:51.495143"], ["updated_at", "2015-03-18 23:08:51.495143"]]  (13.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arteespinola@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arteespinola@hotmail.com"], ["list_id", 1], ["name", "Enrique"], ["last_name", "Espinola"], ["created_at", "2015-03-18 23:08:51.514563"], ["updated_at", "2015-03-18 23:08:51.514563"]]  (7.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "albertomarincastro@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "albertomarincastro@gmail.com"], ["list_id", 1], ["name", "Alberto"], ["last_name", "Marin"], ["created_at", "2015-03-18 23:08:51.533725"], ["updated_at", "2015-03-18 23:08:51.533725"]]  (10.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ncristianrojasroman@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ncristianrojasroman@gmail.com"], ["list_id", 1], ["name", "Cristián"], ["last_name", "Rojas Román"], ["created_at", "2015-03-18 23:08:51.549957"], ["updated_at", "2015-03-18 23:08:51.549957"]]  (17.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zuldeka@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zuldeka@hotmail.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Riquelme Peña"], ["created_at", "2015-03-18 23:08:51.574472"], ["updated_at", "2015-03-18 23:08:51.574472"]]  (18.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "frana.sarina@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "frana.sarina@hotmail.com"], ["list_id", 1], ["name", "f"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.599379"], ["updated_at", "2015-03-18 23:08:51.599379"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lazaro.naranjo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lazaro.naranjo@gmail.com"], ["list_id", 1], ["name", "Lazaro"], ["last_name", "Naranjo"], ["created_at", "2015-03-18 23:08:51.609796"], ["updated_at", "2015-03-18 23:08:51.609796"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mauricio@anaya.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mauricio@anaya.cl"], ["list_id", 1], ["name", "Mercurio"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.618665"], ["updated_at", "2015-03-18 23:08:51.618665"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "m.m.a.s.m@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "m.m.a.s.m@hotmail.com"], ["list_id", 1], ["name", "Mi"], ["last_name", "mejor amiga se murió"], ["created_at", "2015-03-18 23:08:51.632958"], ["updated_at", "2015-03-18 23:08:51.632958"]]  (11.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cromo@udec.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cromo@udec.cl"], ["list_id", 1], ["name", "claudio"], ["last_name", "romo"], ["created_at", "2015-03-18 23:08:51.649494"], ["updated_at", "2015-03-18 23:08:51.649494"]]  (21.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "esramuhurcu@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "esramuhurcu@gmail.com"], ["list_id", 1], ["name", "ESRA"], ["last_name", "MUHURCU"], ["created_at", "2015-03-18 23:08:51.677564"], ["updated_at", "2015-03-18 23:08:51.677564"]]  (9.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "imaginamac@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "imaginamac@gmail.com"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Morales Ordenes"], ["created_at", "2015-03-18 23:08:51.694342"], ["updated_at", "2015-03-18 23:08:51.694342"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vmendiburo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vmendiburo@gmail.com"], ["list_id", 1], ["name", "Valentina"], ["last_name", "Mendiburo Seguel"], ["created_at", "2015-03-18 23:08:51.703490"], ["updated_at", "2015-03-18 23:08:51.703490"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "barbarafernandez.f@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "barbarafernandez.f@gmail.com"], ["list_id", 1], ["name", "BARBARA"], ["last_name", "FERNANDEZ F"], ["created_at", "2015-03-18 23:08:51.711519"], ["updated_at", "2015-03-18 23:08:51.711519"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iness1221@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iness1221@yahoo.com"], ["list_id", 1], ["name", "Inessa"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.719995"], ["updated_at", "2015-03-18 23:08:51.719995"]]  (17.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yomac.arquitec@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yomac.arquitec@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "López"], ["created_at", "2015-03-18 23:08:51.744073"], ["updated_at", "2015-03-18 23:08:51.744073"]]  (5.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arte_fran@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arte_fran@yahoo.com"], ["list_id", 1], ["name", "maria"], ["last_name", "francisca mendoza cabalá"], ["created_at", "2015-03-18 23:08:51.755876"], ["updated_at", "2015-03-18 23:08:51.755876"]]  (4.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gocasantana@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gocasantana@gmail.com"], ["list_id", 1], ["name", "jenny"], ["last_name", "Santana"], ["created_at", "2015-03-18 23:08:51.766597"], ["updated_at", "2015-03-18 23:08:51.766597"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "estefistan@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "estefistan@gmail.com"], ["list_id", 1], ["name", "Estefani"], ["last_name", "Stansfield"], ["created_at", "2015-03-18 23:08:51.783780"], ["updated_at", "2015-03-18 23:08:51.783780"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pataguan@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pataguan@gmail.com"], ["list_id", 1], ["name", "Gonzalo"], ["last_name", "Cueto"], ["created_at", "2015-03-18 23:08:51.799054"], ["updated_at", "2015-03-18 23:08:51.799054"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanillo"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanillo"], ["list_id", 1], ["name", "juanillo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.808159"], ["updated_at", "2015-03-18 23:08:51.808159"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "foylland@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "foylland@hotmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Ureta"], ["created_at", "2015-03-18 23:08:51.816394"], ["updated_at", "2015-03-18 23:08:51.816394"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bebita_@msn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bebita_@msn.com"], ["list_id", 1], ["name", "Belen"], ["last_name", "Cereceda"], ["created_at", "2015-03-18 23:08:51.832422"], ["updated_at", "2015-03-18 23:08:51.832422"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ceballoshoy@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ceballoshoy@gmail.com"], ["list_id", 1], ["name", "pablo"], ["last_name", "ceballos"], ["created_at", "2015-03-18 23:08:51.847327"], ["updated_at", "2015-03-18 23:08:51.847327"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "norka_haruko7@hotmail.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "norka_haruko7@hotmail.cl"], ["list_id", 1], ["name", "norka"], ["last_name", "alvarez"], ["created_at", "2015-03-18 23:08:51.856616"], ["updated_at", "2015-03-18 23:08:51.856616"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "acromatica000@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "acromatica000@yahoo.es"], ["list_id", 1], ["name", "maria"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.865232"], ["updated_at", "2015-03-18 23:08:51.865232"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javierpz5@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javierpz5@hotmail.com"], ["list_id", 1], ["name", "Javier"], ["last_name", "Pavez"], ["created_at", "2015-03-18 23:08:51.882516"], ["updated_at", "2015-03-18 23:08:51.882516"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bernal64@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bernal64@gmail.com"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Bernal"], ["created_at", "2015-03-18 23:08:51.897950"], ["updated_at", "2015-03-18 23:08:51.897950"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fillkunfu@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fillkunfu@gmail.com"], ["list_id", 1], ["name", "fillkun"], ["last_name", ""], ["created_at", "2015-03-18 23:08:51.907115"], ["updated_at", "2015-03-18 23:08:51.907115"]]  (16.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "smides9@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "smides9@hotmail.com"], ["list_id", 1], ["name", "felipe"], ["last_name", "smides"], ["created_at", "2015-03-18 23:08:51.931343"], ["updated_at", "2015-03-18 23:08:51.931343"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "valeriamazo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "valeriamazo@gmail.com"], ["list_id", 1], ["name", "Valeria"], ["last_name", "Mazo"], ["created_at", "2015-03-18 23:08:51.941521"], ["updated_at", "2015-03-18 23:08:51.941521"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudiaadriazola@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudiaadriazola@hotmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Adriazola"], ["created_at", "2015-03-18 23:08:51.950387"], ["updated_at", "2015-03-18 23:08:51.950387"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rveloso@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rveloso@yahoo.com"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Velozo"], ["created_at", "2015-03-18 23:08:51.959199"], ["updated_at", "2015-03-18 23:08:51.959199"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vguilisasti@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vguilisasti@gmail.com"], ["list_id", 1], ["name", "VIRGINIA"], ["last_name", "GUILISASTI"], ["created_at", "2015-03-18 23:08:51.967787"], ["updated_at", "2015-03-18 23:08:51.967787"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jorgemeza65@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jorgemeza65@gmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Meza"], ["created_at", "2015-03-18 23:08:52.053539"], ["updated_at", "2015-03-18 23:08:52.053539"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rvfrance@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rvfrance@gmail.com"], ["list_id", 1], ["name", "Raul"], ["last_name", "Vasquez France"], ["created_at", "2015-03-18 23:08:52.062183"], ["updated_at", "2015-03-18 23:08:52.062183"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "desdibujos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "desdibujos@gmail.com"], ["list_id", 1], ["name", "Marco Antonio"], ["last_name", "Sepúlveda"], ["created_at", "2015-03-18 23:08:52.070606"], ["updated_at", "2015-03-18 23:08:52.070606"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "neamc3@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "neamc3@yahoo.com"], ["list_id", 1], ["name", "nea"], ["last_name", ""], ["created_at", "2015-03-18 23:08:52.078897"], ["updated_at", "2015-03-18 23:08:52.078897"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ricardosilveira1@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ricardosilveira1@yahoo.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "G Silveira"], ["created_at", "2015-03-18 23:08:52.088645"], ["updated_at", "2015-03-18 23:08:52.088645"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "agim@hotmail.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "agim@hotmail.es"], ["list_id", 1], ["name", "Agim"], ["last_name", "Meta"], ["created_at", "2015-03-18 23:08:52.098896"], ["updated_at", "2015-03-18 23:08:52.098896"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alabadia@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alabadia@uc.cl"], ["list_id", 1], ["name", "Antonia"], ["last_name", "Labadía"], ["created_at", "2015-03-18 23:08:52.108299"], ["updated_at", "2015-03-18 23:08:52.108299"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tbrinck@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tbrinck@uc.cl"], ["list_id", 1], ["name", "Tomas"], ["last_name", "Brinck"], ["created_at", "2015-03-18 23:08:52.117396"], ["updated_at", "2015-03-18 23:08:52.117396"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "proyectorgroup@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "proyectorgroup@yahoo.com"], ["list_id", 1], ["name", "ivonne"], ["last_name", ""], ["created_at", "2015-03-18 23:08:52.126723"], ["updated_at", "2015-03-18 23:08:52.126723"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ARTEMULLER@GMAIL.COM"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ARTEMULLER@GMAIL.COM"], ["list_id", 1], ["name", "CLAUDIA"], ["last_name", "MÜLLER MONTES"], ["created_at", "2015-03-18 23:08:52.135458"], ["updated_at", "2015-03-18 23:08:52.135458"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kelpiecilla@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kelpiecilla@hotmail.com"], ["list_id", 1], ["name", "Luisa"], ["last_name", "Rivera"], ["created_at", "2015-03-18 23:08:52.148836"], ["updated_at", "2015-03-18 23:08:52.148836"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ceodos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ceodos@gmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Donoso"], ["created_at", "2015-03-18 23:08:52.157400"], ["updated_at", "2015-03-18 23:08:52.157400"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "erick.strange@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "erick.strange@gmail.com"], ["list_id", 1], ["name", "Erick"], ["last_name", "Strange"], ["created_at", "2015-03-18 23:08:52.166397"], ["updated_at", "2015-03-18 23:08:52.166397"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "silent.telescope@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "silent.telescope@hotmail.com"], ["list_id", 1], ["name", "Otterleo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:52.175455"], ["updated_at", "2015-03-18 23:08:52.175455"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aravena.edo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aravena.edo@gmail.com"], ["list_id", 1], ["name", "Eduardo"], ["last_name", "Aravena Delgado"], ["created_at", "2015-03-18 23:08:52.185104"], ["updated_at", "2015-03-18 23:08:52.185104"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "afro_tagger@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "afro_tagger@hotmail.com"], ["list_id", 1], ["name", "armando"], ["last_name", "rosales"], ["created_at", "2015-03-18 23:08:52.198996"], ["updated_at", "2015-03-18 23:08:52.198996"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "conita_07@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "conita_07@hotmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Arancibia Valdivia"], ["created_at", "2015-03-18 23:08:52.207811"], ["updated_at", "2015-03-18 23:08:52.207811"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gabrielaisabelgabriela@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gabrielaisabelgabriela@hotmail.com"], ["list_id", 1], ["name", "Gabriela"], ["last_name", "González Bernales"], ["created_at", "2015-03-18 23:08:52.216517"], ["updated_at", "2015-03-18 23:08:52.216517"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lacz2@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lacz2@hotmail.com"], ["list_id", 1], ["name", "LA"], ["last_name", "Cáceres"], ["created_at", "2015-03-18 23:08:52.225842"], ["updated_at", "2015-03-18 23:08:52.225842"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mthscnc@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mthscnc@gmail.com"], ["list_id", 1], ["name", "julio"], ["last_name", "narbona"], ["created_at", "2015-03-18 23:08:52.234092"], ["updated_at", "2015-03-18 23:08:52.234092"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "piguillem@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "piguillem@gmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Piguillem"], ["created_at", "2015-03-18 23:08:52.248469"], ["updated_at", "2015-03-18 23:08:52.248469"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "victoria.achurra@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "victoria.achurra@gmail.com"], ["list_id", 1], ["name", "Victoria"], ["last_name", "Achurra"], ["created_at", "2015-03-18 23:08:52.257318"], ["updated_at", "2015-03-18 23:08:52.257318"]]  (9.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "willisvega18@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "willisvega18@yahoo.com"], ["list_id", 1], ["name", "Willis"], ["last_name", "Vega"], ["created_at", "2015-03-18 23:08:52.272736"], ["updated_at", "2015-03-18 23:08:52.272736"]]  (10.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "reyeslaborie@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "reyeslaborie@gmail.com"], ["list_id", 1], ["name", "Sebastián"], ["last_name", "Reyes"], ["created_at", "2015-03-18 23:08:52.289845"], ["updated_at", "2015-03-18 23:08:52.289845"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dadadirt@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dadadirt@yahoo.com"], ["list_id", 1], ["name", "el"], ["last_name", "brujo"], ["created_at", "2015-03-18 23:08:52.300102"], ["updated_at", "2015-03-18 23:08:52.300102"]]  (4.8ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artecubiles@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artecubiles@hotmail.com"], ["list_id", 1], ["name", "Ramón"], ["last_name", "Cubiles Robles"], ["created_at", "2015-03-18 23:08:52.310672"], ["updated_at", "2015-03-18 23:08:52.310672"]]  (5.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosarioantonia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosarioantonia@hotmail.com"], ["list_id", 1], ["name", "Rosario"], ["last_name", "Carmona Yost"], ["created_at", "2015-03-18 23:08:52.321456"], ["updated_at", "2015-03-18 23:08:52.321456"]]  (14.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "the_silbone@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "the_silbone@hotmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Luis Sanchez"], ["created_at", "2015-03-18 23:08:52.343879"], ["updated_at", "2015-03-18 23:08:52.343879"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eterno_fulgor@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eterno_fulgor@yahoo.com"], ["list_id", 1], ["name", "Miguelángel"], ["last_name", "Lander"], ["created_at", "2015-03-18 23:08:52.353919"], ["updated_at", "2015-03-18 23:08:52.353919"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "didieroberti@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "didieroberti@gmail.com"], ["list_id", 1], ["name", "Didier"], ["last_name", "Roberti"], ["created_at", "2015-03-18 23:08:52.362173"], ["updated_at", "2015-03-18 23:08:52.362173"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "valdesfrancisca@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "valdesfrancisca@gmail.com"], ["list_id", 1], ["name", "francisca"], ["last_name", "valdes bulnes"], ["created_at", "2015-03-18 23:08:52.371418"], ["updated_at", "2015-03-18 23:08:52.371418"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "golden_boy611@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "golden_boy611@hotmail.com"], ["list_id", 1], ["name", "angel"], ["last_name", "caro"], ["created_at", "2015-03-18 23:08:52.380737"], ["updated_at", "2015-03-18 23:08:52.380737"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caglezro@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caglezro@gmail.com"], ["list_id", 1], ["name", "caglez"], ["last_name", ""], ["created_at", "2015-03-18 23:08:52.398670"], ["updated_at", "2015-03-18 23:08:52.398670"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "akatalim@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "akatalim@gmail.com"], ["list_id", 1], ["name", "Catalina"], ["last_name", "Isidora Limardo Rebolledo"], ["created_at", "2015-03-18 23:08:52.407457"], ["updated_at", "2015-03-18 23:08:52.407457"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "famenabar@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "famenabar@hotmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Amenábar Chimenti"], ["created_at", "2015-03-18 23:08:52.416844"], ["updated_at", "2015-03-18 23:08:52.416844"]]  (10.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bella.creacion@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bella.creacion@hotmail.com"], ["list_id", 1], ["name", "carola"], ["last_name", "muñoz"], ["created_at", "2015-03-18 23:08:52.434921"], ["updated_at", "2015-03-18 23:08:52.434921"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "uzabeagavalle@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "uzabeagavalle@hotmail.com"], ["list_id", 1], ["name", "FRANCISCO"], ["last_name", "UZABEAGA VALLE"], ["created_at", "2015-03-18 23:08:52.449075"], ["updated_at", "2015-03-18 23:08:52.449075"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joeldtw@tutopia.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joeldtw@tutopia.com"], ["list_id", 1], ["name", "joel"], ["last_name", ""], ["created_at", "2015-03-18 23:08:52.457711"], ["updated_at", "2015-03-18 23:08:52.457711"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danielserrano@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danielserrano@gmail.com"], ["list_id", 1], ["name", "daniel"], ["last_name", "Serrano Diaz"], ["created_at", "2015-03-18 23:08:52.467000"], ["updated_at", "2015-03-18 23:08:52.467000"]]  (14.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "corre_forest_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "corre_forest_@hotmail.com"], ["list_id", 1], ["name", "omar"], ["last_name", "gonzalez"], ["created_at", "2015-03-18 23:08:52.488539"], ["updated_at", "2015-03-18 23:08:52.488539"]]  (9.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paula.arnal@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paula.arnal@gmail.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Arnal"], ["created_at", "2015-03-18 23:08:52.503727"], ["updated_at", "2015-03-18 23:08:52.503727"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "inniura@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "inniura@hotmail.com"], ["list_id", 1], ["name", "saho"], ["last_name", ""], ["created_at", "2015-03-18 23:08:52.512253"], ["updated_at", "2015-03-18 23:08:52.512253"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "blauart@hotmail.con"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "blauart@hotmail.con"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Blau Astraín"], ["created_at", "2015-03-18 23:08:52.521294"], ["updated_at", "2015-03-18 23:08:52.521294"]]  (8.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlamckaym@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlamckaym@hotmail.com"], ["list_id", 1], ["name", "Carla"], ["last_name", "McKay"], ["created_at", "2015-03-18 23:08:52.535715"], ["updated_at", "2015-03-18 23:08:52.535715"]]  (19.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@diegosantos.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@diegosantos.com.ar"], ["list_id", 1], ["name", "Diego"], ["last_name", "Santos"], ["created_at", "2015-03-18 23:08:52.561186"], ["updated_at", "2015-03-18 23:08:52.561186"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Carolinalvarezcarcamo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Carolinalvarezcarcamo@gmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Alvarez"], ["created_at", "2015-03-18 23:08:52.570960"], ["updated_at", "2015-03-18 23:08:52.570960"]]  (4.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "suspensionado@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "suspensionado@gmail.com"], ["list_id", 1], ["name", "CEVADO"], ["last_name", ""], ["created_at", "2015-03-18 23:08:52.581523"], ["updated_at", "2015-03-18 23:08:52.581523"]]  (11.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "clau.verdejo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "clau.verdejo@gmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Verdejo Fredes"], ["created_at", "2015-03-18 23:08:52.599181"], ["updated_at", "2015-03-18 23:08:52.599181"]]  (22.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nikure@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nikure@gmail.com"], ["list_id", 1], ["name", "Nicole"], ["last_name", ""], ["created_at", "2015-03-18 23:08:52.628224"], ["updated_at", "2015-03-18 23:08:52.628224"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "potrofer@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "potrofer@gmail.com"], ["list_id", 1], ["name", "Christopher"], ["last_name", ""], ["created_at", "2015-03-18 23:08:52.637093"], ["updated_at", "2015-03-18 23:08:52.637093"]]  (12.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigo@pintoh.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigo@pintoh.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Pinto Hoffmann"], ["created_at", "2015-03-18 23:08:52.656330"], ["updated_at", "2015-03-18 23:08:52.656330"]]  (5.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sanhuezakuschel@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sanhuezakuschel@gmail.com"], ["list_id", 1], ["name", "Ingo"], ["last_name", "Sanhueza Kuschel"], ["created_at", "2015-03-18 23:08:52.668228"], ["updated_at", "2015-03-18 23:08:52.668228"]]  (58.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andresvildosola@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andresvildosola@gmail.com"], ["list_id", 1], ["name", "Andrés"], ["last_name", "Castillo Vildósola"], ["created_at", "2015-03-18 23:08:52.733154"], ["updated_at", "2015-03-18 23:08:52.733154"]]  (21.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matiasnoguerra@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matiasnoguerra@gmail.com"], ["list_id", 1], ["name", "Matias"], ["last_name", "Noguera"], ["created_at", "2015-03-18 23:08:52.761927"], ["updated_at", "2015-03-18 23:08:52.761927"]]  (9.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arte@tomascastano.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arte@tomascastano.com"], ["list_id", 1], ["name", "TOMAS"], ["last_name", "CASTAÑO"], ["created_at", "2015-03-18 23:08:52.779404"], ["updated_at", "2015-03-18 23:08:52.779404"]]  (710.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vivitarock@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vivitarock@gmail.com"], ["list_id", 1], ["name", "Viviana"], ["last_name", "Silva Flores"], ["created_at", "2015-03-18 23:08:53.496267"], ["updated_at", "2015-03-18 23:08:53.496267"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alexisdvalle@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alexisdvalle@gmail.com"], ["list_id", 1], ["name", "Alexis"], ["last_name", "Díaz Valle"], ["created_at", "2015-03-18 23:08:53.505841"], ["updated_at", "2015-03-18 23:08:53.505841"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "grabadoscgh@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "grabadoscgh@yahoo.com"], ["list_id", 1], ["name", "carolina"], ["last_name", "garcía huidobro"], ["created_at", "2015-03-18 23:08:53.514004"], ["updated_at", "2015-03-18 23:08:53.514004"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gonzalostecher@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gonzalostecher@yahoo.com"], ["list_id", 1], ["name", "Gonzalo"], ["last_name", "Stecher"], ["created_at", "2015-03-18 23:08:53.522122"], ["updated_at", "2015-03-18 23:08:53.522122"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bernarditalynch@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bernarditalynch@gmail.com"], ["list_id", 1], ["name", "bernardita"], ["last_name", "lynch sanchez"], ["created_at", "2015-03-18 23:08:53.532081"], ["updated_at", "2015-03-18 23:08:53.532081"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "grupo.ripper@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "grupo.ripper@gmail.com"], ["list_id", 1], ["name", "gruporipper"], ["last_name", ""], ["created_at", "2015-03-18 23:08:53.545315"], ["updated_at", "2015-03-18 23:08:53.545315"]]  (15.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rebecape@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rebecape@hotmail.com"], ["list_id", 1], ["name", "Rebeca"], ["last_name", "Peña"], ["created_at", "2015-03-18 23:08:53.566907"], ["updated_at", "2015-03-18 23:08:53.566907"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dizzlecciko@gmail.com"]]  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dizzlecciko@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Balladares Muñoz"], ["created_at", "2015-03-18 23:08:53.578306"], ["updated_at", "2015-03-18 23:08:53.578306"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macarenariv@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macarenariv@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Rivera De la Maza"], ["created_at", "2015-03-18 23:08:53.595310"], ["updated_at", "2015-03-18 23:08:53.595310"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolhen58@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolhen58@yahoo.com"], ["list_id", 1], ["name", "CAROLINA"], ["last_name", "HENRIQUEZ"], ["created_at", "2015-03-18 23:08:53.604673"], ["updated_at", "2015-03-18 23:08:53.604673"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sonik222@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sonik222@gmail.com"], ["list_id", 1], ["name", "SoniaGonzalez"], ["last_name", ""], ["created_at", "2015-03-18 23:08:53.613095"], ["updated_at", "2015-03-18 23:08:53.613095"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "princesa_hallulla@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "princesa_hallulla@yahoo.es"], ["list_id", 1], ["name", "sandra"], ["last_name", "yessenia martinez fuentes"], ["created_at", "2015-03-18 23:08:53.621690"], ["updated_at", "2015-03-18 23:08:53.621690"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cgomezz@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cgomezz@uc.cl"], ["list_id", 1], ["name", "Cristián"], ["last_name", "Gómez Zaccarelli"], ["created_at", "2015-03-18 23:08:53.630201"], ["updated_at", "2015-03-18 23:08:53.630201"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mafalda_foxy2@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mafalda_foxy2@hotmail.com"], ["list_id", 1], ["name", "camila"], ["last_name", "pizarro"], ["created_at", "2015-03-18 23:08:53.644783"], ["updated_at", "2015-03-18 23:08:53.644783"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "franterrazas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "franterrazas@hotmail.com"], ["list_id", 1], ["name", "francisca"], ["last_name", "terrazas"], ["created_at", "2015-03-18 23:08:53.652728"], ["updated_at", "2015-03-18 23:08:53.652728"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dieguetexxx@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dieguetexxx@gmail.com"], ["list_id", 1], ["name", "Diego"], ["last_name", "ACorvalan"], ["created_at", "2015-03-18 23:08:53.661185"], ["updated_at", "2015-03-18 23:08:53.661185"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "voltajemarciano@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "voltajemarciano@hotmail.com"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Rojas Cifuentes"], ["created_at", "2015-03-18 23:08:53.669525"], ["updated_at", "2015-03-18 23:08:53.669525"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "soledadbravo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "soledadbravo@hotmail.com"], ["list_id", 1], ["name", "Soledad"], ["last_name", "Bravo"], ["created_at", "2015-03-18 23:08:53.677940"], ["updated_at", "2015-03-18 23:08:53.677940"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "admin@alvarogiron.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "admin@alvarogiron.com"], ["list_id", 1], ["name", "Alvaro"], ["last_name", "Giron"], ["created_at", "2015-03-18 23:08:53.695741"], ["updated_at", "2015-03-18 23:08:53.695741"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lilianaricci@vtr.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lilianaricci@vtr.net"], ["list_id", 1], ["name", "liliana"], ["last_name", "ricci diaz"], ["created_at", "2015-03-18 23:08:53.705184"], ["updated_at", "2015-03-18 23:08:53.705184"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mpnovoa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mpnovoa@gmail.com"], ["list_id", 1], ["name", "magdalena"], ["last_name", "novoa"], ["created_at", "2015-03-18 23:08:53.713236"], ["updated_at", "2015-03-18 23:08:53.713236"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudiayarur@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudiayarur@gmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Yarur"], ["created_at", "2015-03-18 23:08:53.722902"], ["updated_at", "2015-03-18 23:08:53.722902"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "trivinosur@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "trivinosur@gmail.com"], ["list_id", 1], ["name", "Jose"], ["last_name", "Triviño"], ["created_at", "2015-03-18 23:08:53.730808"], ["updated_at", "2015-03-18 23:08:53.730808"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iosoifhan@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iosoifhan@yahoo.com.mx"], ["list_id", 1], ["name", "Valeria"], ["last_name", "Roffiel"], ["created_at", "2015-03-18 23:08:53.745122"], ["updated_at", "2015-03-18 23:08:53.745122"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "estebanpappa@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "estebanpappa@hotmail.com"], ["list_id", 1], ["name", "Esteban"], ["last_name", "Pappa"], ["created_at", "2015-03-18 23:08:53.753140"], ["updated_at", "2015-03-18 23:08:53.753140"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alexmezac@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alexmezac@yahoo.es"], ["list_id", 1], ["name", "Alex"], ["last_name", "Meza"], ["created_at", "2015-03-18 23:08:53.762424"], ["updated_at", "2015-03-18 23:08:53.762424"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leon3vgc@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leon3vgc@gmail.com"], ["list_id", 1], ["name", "Paulo"], ["last_name", "León Correa"], ["created_at", "2015-03-18 23:08:53.770846"], ["updated_at", "2015-03-18 23:08:53.770846"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nfarto@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nfarto@yahoo.es"], ["list_id", 1], ["name", "Pta."], ["last_name", ""], ["created_at", "2015-03-18 23:08:53.779607"], ["updated_at", "2015-03-18 23:08:53.779607"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kerocolor@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kerocolor@hotmail.com"], ["list_id", 1], ["name", "Renato"], ["last_name", "simon correa vasquez"], ["created_at", "2015-03-18 23:08:53.795358"], ["updated_at", "2015-03-18 23:08:53.795358"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miljanakovacic@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miljanakovacic@gmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Kovacic"], ["created_at", "2015-03-18 23:08:53.809803"], ["updated_at", "2015-03-18 23:08:53.809803"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antocafati@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antocafati@gmail.com"], ["list_id", 1], ["name", "antonia"], ["last_name", "cafati"], ["created_at", "2015-03-18 23:08:53.818474"], ["updated_at", "2015-03-18 23:08:53.818474"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jetzabelgonza@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jetzabelgonza@gmail.com"], ["list_id", 1], ["name", "JETZABEL"], ["last_name", "GONZALEZ"], ["created_at", "2015-03-18 23:08:53.826822"], ["updated_at", "2015-03-18 23:08:53.826822"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pequecanas@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pequecanas@gmail.com"], ["list_id", 1], ["name", "Peque"], ["last_name", "Cañas"], ["created_at", "2015-03-18 23:08:53.844888"], ["updated_at", "2015-03-18 23:08:53.844888"]]  (9.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lalourbano@mac.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lalourbano@mac.com"], ["list_id", 1], ["name", "eduardo"], ["last_name", "urbano merino"], ["created_at", "2015-03-18 23:08:53.861053"], ["updated_at", "2015-03-18 23:08:53.861053"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ecaritooo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ecaritooo@hotmail.com"], ["list_id", 1], ["name", "Evelyn"], ["last_name", "Alvarez"], ["created_at", "2015-03-18 23:08:53.870535"], ["updated_at", "2015-03-18 23:08:53.870535"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felbaeza@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felbaeza@hotmail.com"], ["list_id", 1], ["name", "felipe"], ["last_name", "guillermo baeza villegas"], ["created_at", "2015-03-18 23:08:53.878887"], ["updated_at", "2015-03-18 23:08:53.878887"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ferroarte70@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ferroarte70@hotmail.com"], ["list_id", 1], ["name", "Fernando"], ["last_name", "Antonio Romero Araujo"], ["created_at", "2015-03-18 23:08:53.894630"], ["updated_at", "2015-03-18 23:08:53.894630"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "florenciainfante@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "florenciainfante@gmail.com"], ["list_id", 1], ["name", "Florencia"], ["last_name", "Infante"], ["created_at", "2015-03-18 23:08:53.909335"], ["updated_at", "2015-03-18 23:08:53.909335"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yonotengoseisdedos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yonotengoseisdedos@gmail.com"], ["list_id", 1], ["name", "gabriel"], ["last_name", "seisdedos"], ["created_at", "2015-03-18 23:08:53.918747"], ["updated_at", "2015-03-18 23:08:53.918747"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luzms06@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luzms06@hotmail.com"], ["list_id", 1], ["name", "lucia"], ["last_name", "Milan"], ["created_at", "2015-03-18 23:08:53.927424"], ["updated_at", "2015-03-18 23:08:53.927424"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anaclaraholm@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anaclaraholm@hotmail.com"], ["list_id", 1], ["name", "anaclara"], ["last_name", ""], ["created_at", "2015-03-18 23:08:53.944258"], ["updated_at", "2015-03-18 23:08:53.944258"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jczuniga.a@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jczuniga.a@hotmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Carlos Zúñiga Andrades"], ["created_at", "2015-03-18 23:08:53.953469"], ["updated_at", "2015-03-18 23:08:53.953469"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nevenkart@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nevenkart@yahoo.com"], ["list_id", 1], ["name", "nevenka"], ["last_name", "pavic"], ["created_at", "2015-03-18 23:08:53.961551"], ["updated_at", "2015-03-18 23:08:53.961551"]]  (3.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jacodorlhiac@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jacodorlhiac@gmail.com"], ["list_id", 1], ["name", "jacqueline"], ["last_name", "dorlhiac"], ["created_at", "2015-03-18 23:08:53.971254"], ["updated_at", "2015-03-18 23:08:53.971254"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alepcoirini@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alepcoirini@yahoo.com.ar"], ["list_id", 1], ["name", "Alejandra"], ["last_name", "Coirini"], ["created_at", "2015-03-18 23:08:53.979653"], ["updated_at", "2015-03-18 23:08:53.979653"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "david.quinteros.a@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "david.quinteros.a@gmail.com"], ["list_id", 1], ["name", "David"], ["last_name", "Quinteros"], ["created_at", "2015-03-18 23:08:53.994154"], ["updated_at", "2015-03-18 23:08:53.994154"]]  (6.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daniaravena@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daniaravena@gmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Aravena Jordan (DAJ)"], ["created_at", "2015-03-18 23:08:54.006284"], ["updated_at", "2015-03-18 23:08:54.006284"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "an63l6r15@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "an63l6r15@hotmail.com"], ["list_id", 1], ["name", "lucio"], ["last_name", "gonzalez"], ["created_at", "2015-03-18 23:08:54.014666"], ["updated_at", "2015-03-18 23:08:54.014666"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "will@menta.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "will@menta.net"], ["list_id", 1], ["name", "Guillermo"], ["last_name", "Castellvi"], ["created_at", "2015-03-18 23:08:54.023328"], ["updated_at", "2015-03-18 23:08:54.023328"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "susanasandia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "susanasandia@gmail.com"], ["list_id", 1], ["name", "susana"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.031732"], ["updated_at", "2015-03-18 23:08:54.031732"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maggyaguirre@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maggyaguirre@hotmail.com"], ["list_id", 1], ["name", "magda"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.045077"], ["updated_at", "2015-03-18 23:08:54.045077"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pk_ogino@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pk_ogino@yahoo.com"], ["list_id", 1], ["name", "Koichiro"], ["last_name", "Ogino"], ["created_at", "2015-03-18 23:08:54.053843"], ["updated_at", "2015-03-18 23:08:54.053843"]]  (4.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leytonmonica@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leytonmonica@gmail.com"], ["list_id", 1], ["name", "MONICA"], ["last_name", "LEYTON"], ["created_at", "2015-03-18 23:08:54.064050"], ["updated_at", "2015-03-18 23:08:54.064050"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jjcoronadog@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jjcoronadog@gmail.com"], ["list_id", 1], ["name", "Javier"], ["last_name", "Coronado"], ["created_at", "2015-03-18 23:08:54.072773"], ["updated_at", "2015-03-18 23:08:54.072773"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dansilvaplata@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dansilvaplata@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Silva Plata"], ["created_at", "2015-03-18 23:08:54.081012"], ["updated_at", "2015-03-18 23:08:54.081012"]]  (15.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "retratosobretela@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "retratosobretela@gmail.com"], ["list_id", 1], ["name", "Jonh"], ["last_name", "Doe"], ["created_at", "2015-03-18 23:08:54.102186"], ["updated_at", "2015-03-18 23:08:54.102186"]]  (9.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "smujicap@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "smujicap@gmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Mujica"], ["created_at", "2015-03-18 23:08:54.117248"], ["updated_at", "2015-03-18 23:08:54.117248"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "papelmadera@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "papelmadera@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Contreras"], ["created_at", "2015-03-18 23:08:54.126710"], ["updated_at", "2015-03-18 23:08:54.126710"]]  (4.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maxalarguti@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maxalarguti@hotmail.com"], ["list_id", 1], ["name", "MAX"], ["last_name", "ALARCON"], ["created_at", "2015-03-18 23:08:54.144858"], ["updated_at", "2015-03-18 23:08:54.144858"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sandraguzman01@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sandraguzman01@hotmail.com"], ["list_id", 1], ["name", "SANDRA"], ["last_name", "GUZMÁN"], ["created_at", "2015-03-18 23:08:54.153984"], ["updated_at", "2015-03-18 23:08:54.153984"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gladysvega13@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gladysvega13@hotmail.com"], ["list_id", 1], ["name", "Gladys"], ["last_name", "Vega"], ["created_at", "2015-03-18 23:08:54.162605"], ["updated_at", "2015-03-18 23:08:54.162605"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cv_marga@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cv_marga@hotmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Martínez"], ["created_at", "2015-03-18 23:08:54.171182"], ["updated_at", "2015-03-18 23:08:54.171182"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosarioateaga@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosarioateaga@gmail.com"], ["list_id", 1], ["name", "rosarioateaga"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.180010"], ["updated_at", "2015-03-18 23:08:54.180010"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "minga269@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "minga269@gmail.com"], ["list_id", 1], ["name", "danielita"], ["last_name", "nuñez"], ["created_at", "2015-03-18 23:08:54.194536"], ["updated_at", "2015-03-18 23:08:54.194536"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "inshector@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "inshector@gmail.com"], ["list_id", 1], ["name", "hector"], ["last_name", "vergara maturana"], ["created_at", "2015-03-18 23:08:54.203827"], ["updated_at", "2015-03-18 23:08:54.203827"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "romeroarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "romeroarte@gmail.com"], ["list_id", 1], ["name", "francisco"], ["last_name", "romero cruz"], ["created_at", "2015-03-18 23:08:54.212864"], ["updated_at", "2015-03-18 23:08:54.212864"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "julio@ducuron.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "julio@ducuron.com.ar"], ["list_id", 1], ["name", "Julio"], ["last_name", "Ducuron"], ["created_at", "2015-03-18 23:08:54.221242"], ["updated_at", "2015-03-18 23:08:54.221242"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "monca_234@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "monca_234@hotmail.com"], ["list_id", 1], ["name", "monica"], ["last_name", "garcia"], ["created_at", "2015-03-18 23:08:54.230188"], ["updated_at", "2015-03-18 23:08:54.230188"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mirandaquiroz@mirandaquiroz.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mirandaquiroz@mirandaquiroz.cl"], ["list_id", 1], ["name", "ANA"], ["last_name", "MARIA"], ["created_at", "2015-03-18 23:08:54.243671"], ["updated_at", "2015-03-18 23:08:54.243671"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ines.zrgt@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ines.zrgt@gmail.com"], ["list_id", 1], ["name", "inês"], ["last_name", "ribeiro"], ["created_at", "2015-03-18 23:08:54.252437"], ["updated_at", "2015-03-18 23:08:54.252437"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andylampas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andylampas@hotmail.com"], ["list_id", 1], ["name", "ANDREA"], ["last_name", "LAMPAS"], ["created_at", "2015-03-18 23:08:54.260853"], ["updated_at", "2015-03-18 23:08:54.260853"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "biscein2000@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "biscein2000@yahoo.com"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Carrizo"], ["created_at", "2015-03-18 23:08:54.269755"], ["updated_at", "2015-03-18 23:08:54.269755"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "szamozky@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "szamozky@gmail.com"], ["list_id", 1], ["name", "enrique"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.278946"], ["updated_at", "2015-03-18 23:08:54.278946"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camusartist@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camusartist@gmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Camus"], ["created_at", "2015-03-18 23:08:54.294013"], ["updated_at", "2015-03-18 23:08:54.294013"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "coto.chadid@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "coto.chadid@gmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Luis Chadid Pedraza"], ["created_at", "2015-03-18 23:08:54.303604"], ["updated_at", "2015-03-18 23:08:54.303604"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vpuchi@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vpuchi@hotmail.com"], ["list_id", 1], ["name", "VERO"], ["last_name", "PUCHI"], ["created_at", "2015-03-18 23:08:54.312137"], ["updated_at", "2015-03-18 23:08:54.312137"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luchonomas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luchonomas@hotmail.com"], ["list_id", 1], ["name", "Lucho"], ["last_name", "Pérez"], ["created_at", "2015-03-18 23:08:54.320285"], ["updated_at", "2015-03-18 23:08:54.320285"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eliarocio1118@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eliarocio1118@gmail.com"], ["list_id", 1], ["name", "ELIA"], ["last_name", "GIRON RUIZ"], ["created_at", "2015-03-18 23:08:54.329821"], ["updated_at", "2015-03-18 23:08:54.329821"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sylviariverar@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sylviariverar@gmail.com"], ["list_id", 1], ["name", "sylvia"], ["last_name", "rivera rosales"], ["created_at", "2015-03-18 23:08:54.344780"], ["updated_at", "2015-03-18 23:08:54.344780"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mpazbezanilla@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mpazbezanilla@gmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Paz Bezanilla"], ["created_at", "2015-03-18 23:08:54.353561"], ["updated_at", "2015-03-18 23:08:54.353561"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sofiacolacci@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sofiacolacci@yahoo.es"], ["list_id", 1], ["name", "SOFIA"], ["last_name", "COLACCI"], ["created_at", "2015-03-18 23:08:54.362055"], ["updated_at", "2015-03-18 23:08:54.362055"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xgeisse@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xgeisse@gmail.com"], ["list_id", 1], ["name", "ximena"], ["last_name", "geisse"], ["created_at", "2015-03-18 23:08:54.370573"], ["updated_at", "2015-03-18 23:08:54.370573"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marco.simola@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marco.simola@gmail.com"], ["list_id", 1], ["name", "volamario"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.379320"], ["updated_at", "2015-03-18 23:08:54.379320"]]  (14.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kieesbaiser@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kieesbaiser@gmail.com"], ["list_id", 1], ["name", "Ingrid"], ["last_name", "Kiessling"], ["created_at", "2015-03-18 23:08:54.400045"], ["updated_at", "2015-03-18 23:08:54.400045"]]  (28.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paula.arrieta@arrietascl.org"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paula.arrieta@arrietascl.org"], ["list_id", 1], ["name", "Arrieta"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.435056"], ["updated_at", "2015-03-18 23:08:54.435056"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gabriel.rodriguez@paisfotografico.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gabriel.rodriguez@paisfotografico.cl"], ["list_id", 1], ["name", "Gabriel"], ["last_name", "Rodriguez Santa Maria"], ["created_at", "2015-03-18 23:08:54.446101"], ["updated_at", "2015-03-18 23:08:54.446101"]]  (8.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "astridfh@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "astridfh@hotmail.com"], ["list_id", 1], ["name", "Astrid"], ["last_name", "Fuchslocher"], ["created_at", "2015-03-18 23:08:54.460159"], ["updated_at", "2015-03-18 23:08:54.460159"]]  (11.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macarena26molina@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macarena26molina@hotmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Macarena Molina Dufflocq"], ["created_at", "2015-03-18 23:08:54.477794"], ["updated_at", "2015-03-18 23:08:54.477794"]]  (80.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "balmacedaelisa@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "balmacedaelisa@gmail.com"], ["list_id", 1], ["name", "Elisa"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.565072"], ["updated_at", "2015-03-18 23:08:54.565072"]]  (7.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "isavjuliet@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "isavjuliet@yahoo.com"], ["list_id", 1], ["name", "Isabel"], ["last_name", "Vega"], ["created_at", "2015-03-18 23:08:54.579422"], ["updated_at", "2015-03-18 23:08:54.579422"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caesadechomba@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caesadechomba@gmail.com"], ["list_id", 1], ["name", "GonzaloFloresMuñoz"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.588385"], ["updated_at", "2015-03-18 23:08:54.588385"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristianrsa@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristianrsa@gmail.com"], ["list_id", 1], ["name", "cristian"], ["last_name", "rodriguez saavedra"], ["created_at", "2015-03-18 23:08:54.597060"], ["updated_at", "2015-03-18 23:08:54.597060"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "silvanairiondo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "silvanairiondo@hotmail.com"], ["list_id", 1], ["name", "silvana"], ["last_name", "IRIONDO"], ["created_at", "2015-03-18 23:08:54.609524"], ["updated_at", "2015-03-18 23:08:54.609524"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "birnizka@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "birnizka@hotmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Zapata"], ["created_at", "2015-03-18 23:08:54.618228"], ["updated_at", "2015-03-18 23:08:54.618228"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "furruti@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "furruti@gmail.com"], ["list_id", 1], ["name", "fernanda"], ["last_name", "urrutia"], ["created_at", "2015-03-18 23:08:54.626560"], ["updated_at", "2015-03-18 23:08:54.626560"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulimillas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulimillas@hotmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Millas"], ["created_at", "2015-03-18 23:08:54.635137"], ["updated_at", "2015-03-18 23:08:54.635137"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manicomiobunkers@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manicomiobunkers@hotmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Andrés - VALPOGRAFIAS"], ["created_at", "2015-03-18 23:08:54.643800"], ["updated_at", "2015-03-18 23:08:54.643800"]]  (57.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nuevas_excusas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nuevas_excusas@hotmail.com"], ["list_id", 1], ["name", "Matías"], ["last_name", "Valenzuela Fuentealba"], ["created_at", "2015-03-18 23:08:54.708862"], ["updated_at", "2015-03-18 23:08:54.708862"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "welcometothechongo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "welcometothechongo@hotmail.com"], ["list_id", 1], ["name", "flor"], ["last_name", "infante"], ["created_at", "2015-03-18 23:08:54.797796"], ["updated_at", "2015-03-18 23:08:54.797796"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josecuri1@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josecuri1@gmail.com"], ["list_id", 1], ["name", "JOSE"], ["last_name", "CURI"], ["created_at", "2015-03-18 23:08:54.809634"], ["updated_at", "2015-03-18 23:08:54.809634"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lilianapatlayan@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lilianapatlayan@hotmail.com"], ["list_id", 1], ["name", "LILIANA"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.818917"], ["updated_at", "2015-03-18 23:08:54.818917"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pollitopooley@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pollitopooley@hotmail.com"], ["list_id", 1], ["name", "Stephanie"], ["last_name", "Pooley"], ["created_at", "2015-03-18 23:08:54.827177"], ["updated_at", "2015-03-18 23:08:54.827177"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rebecasantaella@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rebecasantaella@yahoo.es"], ["list_id", 1], ["name", "rebeca"], ["last_name", "santaella"], ["created_at", "2015-03-18 23:08:54.843099"], ["updated_at", "2015-03-18 23:08:54.843099"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "malena26cl@yahoo.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "malena26cl@yahoo.com"], ["list_id", 1], ["name", "maria"], ["last_name", "elena etchepare"], ["created_at", "2015-03-18 23:08:54.851033"], ["updated_at", "2015-03-18 23:08:54.851033"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luisbsalazar@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luisbsalazar@yahoo.es"], ["list_id", 1], ["name", "rebequita"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.860393"], ["updated_at", "2015-03-18 23:08:54.860393"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pol.lion7@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pol.lion7@gmail.com"], ["list_id", 1], ["name", "paul"], ["last_name", "leyton"], ["created_at", "2015-03-18 23:08:54.869003"], ["updated_at", "2015-03-18 23:08:54.869003"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bejorque@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bejorque@uc.cl"], ["list_id", 1], ["name", "Venjamin"], ["last_name", "Jorquera"], ["created_at", "2015-03-18 23:08:54.877602"], ["updated_at", "2015-03-18 23:08:54.877602"]]  (4.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aicangi@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aicangi@gmail.com"], ["list_id", 1], ["name", "Ignacia"], ["last_name", "Yañez"], ["created_at", "2015-03-18 23:08:54.892533"], ["updated_at", "2015-03-18 23:08:54.892533"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fdelaguilazz11@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fdelaguilazz11@yahoo.es"], ["list_id", 1], ["name", "felipe"], ["last_name", "del aguila"], ["created_at", "2015-03-18 23:08:54.908637"], ["updated_at", "2015-03-18 23:08:54.908637"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mrr109@aol.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mrr109@aol.com"], ["list_id", 1], ["name", "mike"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.917195"], ["updated_at", "2015-03-18 23:08:54.917195"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gcercos@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gcercos@gmail.com"], ["list_id", 1], ["name", "gabriela"], ["last_name", "cercos"], ["created_at", "2015-03-18 23:08:54.925718"], ["updated_at", "2015-03-18 23:08:54.925718"]]  (4.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "peluzza_1989@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "peluzza_1989@hotmail.com"], ["list_id", 1], ["name", "francisca"], ["last_name", "olave"], ["created_at", "2015-03-18 23:08:54.941930"], ["updated_at", "2015-03-18 23:08:54.941930"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "p3luzz4@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "p3luzz4@hotmail.com"], ["list_id", 1], ["name", "p3luzz4"], ["last_name", ""], ["created_at", "2015-03-18 23:08:54.951323"], ["updated_at", "2015-03-18 23:08:54.951323"]]  (43.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joselonthomassiny@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joselonthomassiny@yahoo.es"], ["list_id", 1], ["name", "Joselo"], ["last_name", "Thomassiny"], ["created_at", "2015-03-18 23:08:55.001437"], ["updated_at", "2015-03-18 23:08:55.001437"]]  (15.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "delbatitu@montevideo.com.uy"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "delbatitu@montevideo.com.uy"], ["list_id", 1], ["name", "delbatitu"], ["last_name", ""], ["created_at", "2015-03-18 23:08:55.024344"], ["updated_at", "2015-03-18 23:08:55.024344"]]  (14.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gelfriocalor@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gelfriocalor@gmail.com"], ["list_id", 1], ["name", "tomas"], ["last_name", ""], ["created_at", "2015-03-18 23:08:55.044723"], ["updated_at", "2015-03-18 23:08:55.044723"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "seb_ham@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "seb_ham@yahoo.com"], ["list_id", 1], ["name", "Sebastián"], ["last_name", "Soto (HMSTR)"], ["created_at", "2015-03-18 23:08:55.058876"], ["updated_at", "2015-03-18 23:08:55.058876"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juliofabresrivas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juliofabresrivas@gmail.com"], ["list_id", 1], ["name", "julio"], ["last_name", "fabres"], ["created_at", "2015-03-18 23:08:55.067756"], ["updated_at", "2015-03-18 23:08:55.067756"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "susanabotello@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "susanabotello@hotmail.com"], ["list_id", 1], ["name", "Susana"], ["last_name", "Botello"], ["created_at", "2015-03-18 23:08:55.076335"], ["updated_at", "2015-03-18 23:08:55.076335"]]  (18.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nico.olivares@gmail.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nico.olivares@gmail.com"], ["list_id", 1], ["name", "Nicolás"], ["last_name", "Olivares"], ["created_at", "2015-03-18 23:08:55.101306"], ["updated_at", "2015-03-18 23:08:55.101306"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "theotherfreakshow@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "theotherfreakshow@gmail.com"], ["list_id", 1], ["name", "ivan"], ["last_name", "cea"], ["created_at", "2015-03-18 23:08:55.111646"], ["updated_at", "2015-03-18 23:08:55.111646"]]  (17.4ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patbruna@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patbruna@yahoo.es"], ["list_id", 1], ["name", "Patricio"], ["last_name", "Bruna Poblete"], ["created_at", "2015-03-18 23:08:55.134713"], ["updated_at", "2015-03-18 23:08:55.134713"]]  (5.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paula.vall@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paula.vall@gmail.com"], ["list_id", 1], ["name", "Ingrid"], ["last_name", "Vallverdú"], ["created_at", "2015-03-18 23:08:55.145518"], ["updated_at", "2015-03-18 23:08:55.145518"]]  (44.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "martinez_fadic@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "martinez_fadic@hotmail.com"], ["list_id", 1], ["name", "Sebastian"], ["last_name", "Martinez"], ["created_at", "2015-03-18 23:08:55.196036"], ["updated_at", "2015-03-18 23:08:55.196036"]]  (16.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "albertovegas_768@msn.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "albertovegas_768@msn.com"], ["list_id", 1], ["name", "carlos"], ["last_name", ""], ["created_at", "2015-03-18 23:08:55.220213"], ["updated_at", "2015-03-18 23:08:55.220213"]]  (10.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yadiralarreal@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yadiralarreal@hotmail.com"], ["list_id", 1], ["name", "yadira"], ["last_name", ""], ["created_at", "2015-03-18 23:08:55.238166"], ["updated_at", "2015-03-18 23:08:55.238166"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mosh_amg@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mosh_amg@hotmail.com"], ["list_id", 1], ["name", "Marisol"], ["last_name", ""], ["created_at", "2015-03-18 23:08:55.247646"], ["updated_at", "2015-03-18 23:08:55.247646"]]  (11.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carmenshuuu@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carmenshuuu@hotmail.com"], ["list_id", 1], ["name", "Carmen"], ["last_name", "Fernández"], ["created_at", "2015-03-18 23:08:55.264787"], ["updated_at", "2015-03-18 23:08:55.264787"]]  (19.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fredymebu@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fredymebu@hotmail.com"], ["list_id", 1], ["name", "Fredy"], ["last_name", "Wilson Melo Bustos"], ["created_at", "2015-03-18 23:08:55.291506"], ["updated_at", "2015-03-18 23:08:55.291506"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "segizmundo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "segizmundo@gmail.com"], ["list_id", 1], ["name", "carolina"], ["last_name", "pino"], ["created_at", "2015-03-18 23:08:55.308638"], ["updated_at", "2015-03-18 23:08:55.308638"]]  (15.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcospoeta@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcospoeta@hotmail.com"], ["list_id", 1], ["name", "marcospoeta"], ["last_name", ""], ["created_at", "2015-03-18 23:08:55.329921"], ["updated_at", "2015-03-18 23:08:55.329921"]]  (6.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rominaortegam@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rominaortegam@hotmail.com"], ["list_id", 1], ["name", "Romina"], ["last_name", "Ortega Mella"], ["created_at", "2015-03-18 23:08:55.342546"], ["updated_at", "2015-03-18 23:08:55.342546"]]  (61.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudio.penailillo@oxus.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudio.penailillo@oxus.cl"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Peñailillo"], ["created_at", "2015-03-18 23:08:55.410300"], ["updated_at", "2015-03-18 23:08:55.410300"]]  (25.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "driveros@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "driveros@gmail.com"], ["list_id", 1], ["name", "David"], ["last_name", ""], ["created_at", "2015-03-18 23:08:55.442484"], ["updated_at", "2015-03-18 23:08:55.442484"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "clarkurt@vtr.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "clarkurt@vtr.net"], ["list_id", 1], ["name", "clark"], ["last_name", ""], ["created_at", "2015-03-18 23:08:55.459106"], ["updated_at", "2015-03-18 23:08:55.459106"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "odiseaskatsh@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "odiseaskatsh@hotmail.com"], ["list_id", 1], ["name", "Catalina"], ["last_name", "Rayo"], ["created_at", "2015-03-18 23:08:55.467483"], ["updated_at", "2015-03-18 23:08:55.467483"]]  (25.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luisguerramiranda@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luisguerramiranda@gmail.com"], ["list_id", 1], ["name", "Luis"], ["last_name", "Guerra Miranda"], ["created_at", "2015-03-18 23:08:55.498383"], ["updated_at", "2015-03-18 23:08:55.498383"]]  (13.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "runsaber@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "runsaber@hotmail.com"], ["list_id", 1], ["name", "Run"], ["last_name", "Saber"], ["created_at", "2015-03-18 23:08:55.518869"], ["updated_at", "2015-03-18 23:08:55.518869"]]  (8.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "graciaviless@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "graciaviless@hotmail.com"], ["list_id", 1], ["name", "Gracia"], ["last_name", "Aviles"], ["created_at", "2015-03-18 23:08:55.533674"], ["updated_at", "2015-03-18 23:08:55.533674"]]  (13.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "orlandogarridor@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "orlandogarridor@gmail.com"], ["list_id", 1], ["name", "Orlando"], ["last_name", "Hernán Garrido Rivera"], ["created_at", "2015-03-18 23:08:55.555192"], ["updated_at", "2015-03-18 23:08:55.555192"]]  (24.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pviojo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pviojo@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Viojo"], ["created_at", "2015-03-18 23:08:55.587080"], ["updated_at", "2015-03-18 23:08:55.587080"]]  (24.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "letthal@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "letthal@hotmail.com"], ["list_id", 1], ["name", "Ignacio"], ["last_name", "Leal"], ["created_at", "2015-03-18 23:08:55.618702"], ["updated_at", "2015-03-18 23:08:55.618702"]]  (15.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cyngr@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cyngr@hotmail.com"], ["list_id", 1], ["name", "cynsclay"], ["last_name", ""], ["created_at", "2015-03-18 23:08:55.641965"], ["updated_at", "2015-03-18 23:08:55.641965"]]  (17.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "locorovi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "locorovi@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Rivera"], ["created_at", "2015-03-18 23:08:55.666224"], ["updated_at", "2015-03-18 23:08:55.666224"]]  (57.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hubert.castillo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hubert.castillo@gmail.com"], ["list_id", 1], ["name", "Hubert"], ["last_name", "Castillo"], ["created_at", "2015-03-18 23:08:55.730203"], ["updated_at", "2015-03-18 23:08:55.730203"]]  (14.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felipe.valdivia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felipe.valdivia@hotmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Valdivia Infante"], ["created_at", "2015-03-18 23:08:55.751632"], ["updated_at", "2015-03-18 23:08:55.751632"]]  (8.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jaime@comodo.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jaime@comodo.cl"], ["list_id", 1], ["name", "Jaime"], ["last_name", "Ramírez - Cotal"], ["created_at", "2015-03-18 23:08:55.767148"], ["updated_at", "2015-03-18 23:08:55.767148"]]  (15.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "asignorelli@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "asignorelli@gmail.com"], ["list_id", 1], ["name", "Signorelli"], ["last_name", ""], ["created_at", "2015-03-18 23:08:55.792065"], ["updated_at", "2015-03-18 23:08:55.792065"]]  (21.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antonia@plazagmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antonia@plazagmail.com"], ["list_id", 1], ["name", "antonia"], ["last_name", "plaza"], ["created_at", "2015-03-18 23:08:55.821776"], ["updated_at", "2015-03-18 23:08:55.821776"]]  (20.7ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caroangel84@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caroangel84@gmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Tolosa"], ["created_at", "2015-03-18 23:08:55.849174"], ["updated_at", "2015-03-18 23:08:55.849174"]]  (7.3ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jackhumano@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jackhumano@hotmail.com"], ["list_id", 1], ["name", "jack"], ["last_name", "silva garcia"], ["created_at", "2015-03-18 23:08:55.863714"], ["updated_at", "2015-03-18 23:08:55.863714"]]  (53.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "psychoretro@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "psychoretro@gmail.com"], ["list_id", 1], ["name", "Monserrat"], ["last_name", "Videla"], ["created_at", "2015-03-18 23:08:55.923744"], ["updated_at", "2015-03-18 23:08:55.923744"]]  (19.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "OPINA@LAICRAM.ES"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "OPINA@LAICRAM.ES"], ["list_id", 1], ["name", "MARCIAL"], ["last_name", "MALLEBRERA MARTINEZ"], ["created_at", "2015-03-18 23:08:55.950461"], ["updated_at", "2015-03-18 23:08:55.950461"]]  (9.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ignaciomunozvicuna@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ignaciomunozvicuna@gmail.com"], ["list_id", 1], ["name", "Ignacio"], ["last_name", "Muñoz Vicuña"], ["created_at", "2015-03-18 23:08:55.965659"], ["updated_at", "2015-03-18 23:08:55.965659"]]  (4.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tresgatosnegros@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tresgatosnegros@gmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "López Balló"], ["created_at", "2015-03-18 23:08:55.977061"], ["updated_at", "2015-03-18 23:08:55.977061"]]  (25.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carola.hermana@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carola.hermana@gmail.com"], ["list_id", 1], ["name", "carolina"], ["last_name", "lolas"], ["created_at", "2015-03-18 23:08:56.009599"], ["updated_at", "2015-03-18 23:08:56.009599"]]  (5.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "julia.sanchez.viveros@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "julia.sanchez.viveros@gmail.com"], ["list_id", 1], ["name", "JULIA"], ["last_name", "SANCHEZ VIVEROS"], ["created_at", "2015-03-18 23:08:56.024112"], ["updated_at", "2015-03-18 23:08:56.024112"]]  (7.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matiasolaruss@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matiasolaruss@hotmail.com"], ["list_id", 1], ["name", "matias"], ["last_name", "solar"], ["created_at", "2015-03-18 23:08:56.036675"], ["updated_at", "2015-03-18 23:08:56.036675"]]  (17.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sara_cancellieri@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sara_cancellieri@hotmail.com"], ["list_id", 1], ["name", "Sara"], ["last_name", "Cancellieri"], ["created_at", "2015-03-18 23:08:56.059950"], ["updated_at", "2015-03-18 23:08:56.059950"]]  (29.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carocorrales21@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carocorrales21@hotmail.com"], ["list_id", 1], ["name", "CAROLINA"], ["last_name", "CORRALES"], ["created_at", "2015-03-18 23:08:56.096583"], ["updated_at", "2015-03-18 23:08:56.096583"]]  (20.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lucreconget@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lucreconget@yahoo.es"], ["list_id", 1], ["name", "Lucrecia"], ["last_name", "Conget"], ["created_at", "2015-03-18 23:08:56.123986"], ["updated_at", "2015-03-18 23:08:56.123986"]]  (16.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fquezadaleal@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fquezadaleal@gmail.com"], ["list_id", 1], ["name", "trafyk"], ["last_name", "power"], ["created_at", "2015-03-18 23:08:56.147070"], ["updated_at", "2015-03-18 23:08:56.147070"]]  (15.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cavergara@udec.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cavergara@udec.cl"], ["list_id", 1], ["name", "Charles"], ["last_name", "Bronson Kelly Gallagher"], ["created_at", "2015-03-18 23:08:56.170572"], ["updated_at", "2015-03-18 23:08:56.170572"]]  (15.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vroaguirre@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vroaguirre@gmail.com"], ["list_id", 1], ["name", "Verónica"], ["last_name", "Aguirre"], ["created_at", "2015-03-18 23:08:56.192318"], ["updated_at", "2015-03-18 23:08:56.192318"]]  (17.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lisbethps@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lisbethps@hotmail.com"], ["list_id", 1], ["name", "lisbeth"], ["last_name", "perez"], ["created_at", "2015-03-18 23:08:56.216303"], ["updated_at", "2015-03-18 23:08:56.216303"]]  (18.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "exorton@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "exorton@gmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Miguel Valdivieso"], ["created_at", "2015-03-18 23:08:56.243770"], ["updated_at", "2015-03-18 23:08:56.243770"]]  (17.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "adolfo.martinez@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "adolfo.martinez@hotmail.com"], ["list_id", 1], ["name", "adolfo"], ["last_name", "martinez abarca"], ["created_at", "2015-03-18 23:08:56.269665"], ["updated_at", "2015-03-18 23:08:56.269665"]]  (22.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "controlealafemme@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "controlealafemme@gmail.com"], ["list_id", 1], ["name", "el"], ["last_name", "Team Burton"], ["created_at", "2015-03-18 23:08:56.298874"], ["updated_at", "2015-03-18 23:08:56.298874"]]  (16.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanpablotapia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanpablotapia@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Pablo Tapia"], ["created_at", "2015-03-18 23:08:56.321933"], ["updated_at", "2015-03-18 23:08:56.321933"]]  (23.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "payanussis@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "payanussis@gmail.com"], ["list_id", 1], ["name", "Javier"], ["last_name", "Panussis"], ["created_at", "2015-03-18 23:08:56.351404"], ["updated_at", "2015-03-18 23:08:56.351404"]]  (10.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "monicalabrat@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "monicalabrat@hotmail.com"], ["list_id", 1], ["name", "Monica"], ["last_name", "Labra"], ["created_at", "2015-03-18 23:08:56.369698"], ["updated_at", "2015-03-18 23:08:56.369698"]]  (19.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sanhuezalopez@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sanhuezalopez@hotmail.com"], ["list_id", 1], ["name", "Elizabeth"], ["last_name", "Sanhueza López"], ["created_at", "2015-03-18 23:08:56.396296"], ["updated_at", "2015-03-18 23:08:56.396296"]]  (8.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cartes25@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cartes25@gmail.com"], ["list_id", 1], ["name", "ROBERTO"], ["last_name", "CARTES MONTOYA"], ["created_at", "2015-03-18 23:08:56.410592"], ["updated_at", "2015-03-18 23:08:56.410592"]]  (26.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fcolavin@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fcolavin@gmail.com"], ["list_id", 1], ["name", "flavin"], ["last_name", ""], ["created_at", "2015-03-18 23:08:56.444095"], ["updated_at", "2015-03-18 23:08:56.444095"]]  (21.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cinta.amarga@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cinta.amarga@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Bravo"], ["created_at", "2015-03-18 23:08:56.472725"], ["updated_at", "2015-03-18 23:08:56.472725"]]  (9.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "monaurzua@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "monaurzua@gmail.com"], ["list_id", 1], ["name", "MONA"], ["last_name", ""], ["created_at", "2015-03-18 23:08:56.488221"], ["updated_at", "2015-03-18 23:08:56.488221"]]  (11.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gabotron@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gabotron@hotmail.com"], ["list_id", 1], ["name", "Gabriel"], ["last_name", "Miller"], ["created_at", "2015-03-18 23:08:56.506484"], ["updated_at", "2015-03-18 23:08:56.506484"]]  (8.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "karinacastanedaz@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "karinacastanedaz@hotmail.com"], ["list_id", 1], ["name", "karina"], ["last_name", "castañeda zúñiga"], ["created_at", "2015-03-18 23:08:56.522391"], ["updated_at", "2015-03-18 23:08:56.522391"]]  (25.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bhuaira@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bhuaira@yahoo.com.ar"], ["list_id", 1], ["name", "huaira"], ["last_name", ""], ["created_at", "2015-03-18 23:08:56.554152"], ["updated_at", "2015-03-18 23:08:56.554152"]]  (90.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "trueno.pe@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "trueno.pe@gmail.com"], ["list_id", 1], ["name", "Pedro"], ["last_name", "Quintana"], ["created_at", "2015-03-18 23:08:56.651797"], ["updated_at", "2015-03-18 23:08:56.651797"]]  (11.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cromososma@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cromososma@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "E. Navarrete Sitja"], ["created_at", "2015-03-18 23:08:56.669343"], ["updated_at", "2015-03-18 23:08:56.669343"]]  (11.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "franciscositja@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "franciscositja@yahoo.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Esteban Navarrete Sitja"], ["created_at", "2015-03-18 23:08:56.686846"], ["updated_at", "2015-03-18 23:08:56.686846"]]  (14.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristobalgazmuri@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristobalgazmuri@gmail.com"], ["list_id", 1], ["name", "CRISTOBAL"], ["last_name", "GAZMURI"], ["created_at", "2015-03-18 23:08:56.707445"], ["updated_at", "2015-03-18 23:08:56.707445"]]  (26.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jm_marty@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jm_marty@hotmail.com"], ["list_id", 1], ["name", "jose"], ["last_name", "miguel marty"], ["created_at", "2015-03-18 23:08:56.742573"], ["updated_at", "2015-03-18 23:08:56.742573"]]  (13.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "blodoks@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "blodoks@hotmail.com"], ["list_id", 1], ["name", "Gonzalo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:56.762395"], ["updated_at", "2015-03-18 23:08:56.762395"]]  (16.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cruzjalfonso@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cruzjalfonso@yahoo.es"], ["list_id", 1], ["name", "alfonso"], ["last_name", "cruz"], ["created_at", "2015-03-18 23:08:56.785437"], ["updated_at", "2015-03-18 23:08:56.785437"]]  (28.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wirinkutral@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wirinkutral@gmail.com"], ["list_id", 1], ["name", "Alvaro"], ["last_name", "Vargas Vargas"], ["created_at", "2015-03-18 23:08:56.821208"], ["updated_at", "2015-03-18 23:08:56.821208"]]  (26.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "al_atac3@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "al_atac3@hotmail.com"], ["list_id", 1], ["name", "alex"], ["last_name", ""], ["created_at", "2015-03-18 23:08:56.855861"], ["updated_at", "2015-03-18 23:08:56.855861"]]  (25.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "delesterorealizadora@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "delesterorealizadora@gmail.com"], ["list_id", 1], ["name", "Javiera"], ["last_name", "Gallardo"], ["created_at", "2015-03-18 23:08:56.888594"], ["updated_at", "2015-03-18 23:08:56.888594"]]  (10.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jorgemorenogomez@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jorgemorenogomez@gmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "moreno gomez"], ["created_at", "2015-03-18 23:08:56.906915"], ["updated_at", "2015-03-18 23:08:56.906915"]]  (5.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jose.conchajara@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jose.conchajara@gmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Concha Jara"], ["created_at", "2015-03-18 23:08:56.919557"], ["updated_at", "2015-03-18 23:08:56.919557"]]  (16.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "robertogiustigiusti@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "robertogiustigiusti@gmail.com"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Giusti"], ["created_at", "2015-03-18 23:08:56.942277"], ["updated_at", "2015-03-18 23:08:56.942277"]]  (26.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariaagabler@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariaagabler@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Gabler"], ["created_at", "2015-03-18 23:08:56.974656"], ["updated_at", "2015-03-18 23:08:56.974656"]]  (14.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "corvalanarmijo@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "corvalanarmijo@gmail.com"], ["list_id", 1], ["name", "Viviana"], ["last_name", "Corvalán Armijo"], ["created_at", "2015-03-18 23:08:56.995577"], ["updated_at", "2015-03-18 23:08:56.995577"]]  (28.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ales.villegas@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ales.villegas@gmail.com"], ["list_id", 1], ["name", "Ales"], ["last_name", ""], ["created_at", "2015-03-18 23:08:57.031657"], ["updated_at", "2015-03-18 23:08:57.031657"]]  (16.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elartista04@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elartista04@hotmail.com"], ["list_id", 1], ["name", "gabriel"], ["last_name", ""], ["created_at", "2015-03-18 23:08:57.054747"], ["updated_at", "2015-03-18 23:08:57.054747"]]  (23.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "quiauhtecpa@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "quiauhtecpa@yahoo.com.mx"], ["list_id", 1], ["name", "Malinalli"], ["last_name", ""], ["created_at", "2015-03-18 23:08:57.085083"], ["updated_at", "2015-03-18 23:08:57.085083"]]  (18.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguel.dinamarca@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguel.dinamarca@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Castro Dinamarca"], ["created_at", "2015-03-18 23:08:57.109735"], ["updated_at", "2015-03-18 23:08:57.109735"]]  (24.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "moephius@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "moephius@gmail.com"], ["list_id", 1], ["name", "Hugo"], ["last_name", "Javier Palmar Cruz"], ["created_at", "2015-03-18 23:08:57.140180"], ["updated_at", "2015-03-18 23:08:57.140180"]]  (15.5ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "renemoya4@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "renemoya4@gmail.com"], ["list_id", 1], ["name", "René"], ["last_name", "Moya"], ["created_at", "2015-03-18 23:08:57.162033"], ["updated_at", "2015-03-18 23:08:57.162033"]]  (75.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ciacaidalibre@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ciacaidalibre@hotmail.com"], ["list_id", 1], ["name", "Brisa"], ["last_name", ""], ["created_at", "2015-03-18 23:08:57.244260"], ["updated_at", "2015-03-18 23:08:57.244260"]]  (25.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "flapan@vtr.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "flapan@vtr.net"], ["list_id", 1], ["name", "Flavio"], ["last_name", "Pancetti"], ["created_at", "2015-03-18 23:08:57.276744"], ["updated_at", "2015-03-18 23:08:57.276744"]]  (15.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alexaphotos@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alexaphotos@gmail.com"], ["list_id", 1], ["name", "Alexa"], ["last_name", ""], ["created_at", "2015-03-18 23:08:57.303067"], ["updated_at", "2015-03-18 23:08:57.303067"]]  (33.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alescartonera@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alescartonera@gmail.com"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Mares"], ["created_at", "2015-03-18 23:08:57.342837"], ["updated_at", "2015-03-18 23:08:57.342837"]]  (17.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "laclaudiasalas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "laclaudiasalas@gmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Salas Vergara"], ["created_at", "2015-03-18 23:08:57.366894"], ["updated_at", "2015-03-18 23:08:57.366894"]]  (15.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iturrietabarra@gmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iturrietabarra@gmail.com"], ["list_id", 1], ["name", "Joaquin"], ["last_name", "Alfredo Iturrieta Barra"], ["created_at", "2015-03-18 23:08:57.389218"], ["updated_at", "2015-03-18 23:08:57.389218"]]  (22.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisco.sitja@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisco.sitja@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Navarrete"], ["created_at", "2015-03-18 23:08:57.418270"], ["updated_at", "2015-03-18 23:08:57.418270"]]  (9.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "spiacente.signore@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "spiacente.signore@gmail.com"], ["list_id", 1], ["name", "alex"], ["last_name", "reimann"], ["created_at", "2015-03-18 23:08:57.433691"], ["updated_at", "2015-03-18 23:08:57.433691"]]  (25.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Clau_bwm@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Clau_bwm@hotmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "P.M.Santibáñez"], ["created_at", "2015-03-18 23:08:57.465528"], ["updated_at", "2015-03-18 23:08:57.465528"]]  (13.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "deliriosvioletas@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "deliriosvioletas@gmail.com"], ["list_id", 1], ["name", "Pilar"], ["last_name", "Contreras Gonzalez"], ["created_at", "2015-03-18 23:08:57.485208"], ["updated_at", "2015-03-18 23:08:57.485208"]]  (20.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pateberlin@hotmail.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pateberlin@hotmail.es"], ["list_id", 1], ["name", "Pilarde"], ["last_name", "conzales"], ["created_at", "2015-03-18 23:08:57.512237"], ["updated_at", "2015-03-18 23:08:57.512237"]]  (14.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "acvicuna@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "acvicuna@gmail.com"], ["list_id", 1], ["name", "Ana"], ["last_name", "Catalina Vicuña"], ["created_at", "2015-03-18 23:08:57.531864"], ["updated_at", "2015-03-18 23:08:57.531864"]]  (14.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "norellana@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "norellana@gmail.com"], ["list_id", 1], ["name", "Nico"], ["last_name", "Orellana"], ["created_at", "2015-03-18 23:08:57.553216"], ["updated_at", "2015-03-18 23:08:57.553216"]]  (17.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yuki_sunao@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yuki_sunao@hotmail.com"], ["list_id", 1], ["name", "Triana"], ["last_name", ""], ["created_at", "2015-03-18 23:08:57.577733"], ["updated_at", "2015-03-18 23:08:57.577733"]]  (25.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mozaico@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mozaico@gmail.com"], ["list_id", 1], ["name", "fjba"], ["last_name", ""], ["created_at", "2015-03-18 23:08:57.609834"], ["updated_at", "2015-03-18 23:08:57.609834"]]  (13.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "etertaller@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "etertaller@hotmail.com"], ["list_id", 1], ["name", "Franco"], ["last_name", "Rampoldi Cifuentes"], ["created_at", "2015-03-18 23:08:57.629974"], ["updated_at", "2015-03-18 23:08:57.629974"]]  (24.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arquijorge.dib@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arquijorge.dib@gmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "D' Az Carrasco"], ["created_at", "2015-03-18 23:08:57.660593"], ["updated_at", "2015-03-18 23:08:57.660593"]]  (9.8ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisca.martinezfernandez@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisca.martinezfernandez@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Martínez Fernández"], ["created_at", "2015-03-18 23:08:57.676065"], ["updated_at", "2015-03-18 23:08:57.676065"]]  (18.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "DOBLESTAY@GMAIL.COM"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "DOBLESTAY@GMAIL.COM"], ["list_id", 1], ["name", "EDWARDS"], ["last_name", "ESTAY"], ["created_at", "2015-03-18 23:08:57.700206"], ["updated_at", "2015-03-18 23:08:57.700206"]]  (54.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dipunto@vtr.net"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dipunto@vtr.net"], ["list_id", 1], ["name", "andrea"], ["last_name", "rodriguez"], ["created_at", "2015-03-18 23:08:57.761360"], ["updated_at", "2015-03-18 23:08:57.761360"]]  (15.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fotos.omega@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fotos.omega@gmail.com"], ["list_id", 1], ["name", "Mario"], ["last_name", ""], ["created_at", "2015-03-18 23:08:57.784943"], ["updated_at", "2015-03-18 23:08:57.784943"]]  (19.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sole.p.o@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sole.p.o@gmail.com"], ["list_id", 1], ["name", "sole"], ["last_name", "poirot"], ["created_at", "2015-03-18 23:08:57.810442"], ["updated_at", "2015-03-18 23:08:57.810442"]]  (23.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "s.bh_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "s.bh_@hotmail.com"], ["list_id", 1], ["name", "Scandar"], ["last_name", "Bradford"], ["created_at", "2015-03-18 23:08:57.841521"], ["updated_at", "2015-03-18 23:08:57.841521"]]  (18.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolinasoft@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolinasoft@gmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Penafiel"], ["created_at", "2015-03-18 23:08:57.867694"], ["updated_at", "2015-03-18 23:08:57.867694"]]  (20.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elias.carlo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elias.carlo@gmail.com"], ["list_id", 1], ["name", "Elias"], ["last_name", "Carlo"], ["created_at", "2015-03-18 23:08:57.894865"], ["updated_at", "2015-03-18 23:08:57.894865"]]  (54.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pcrios@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pcrios@gmail.com"], ["list_id", 1], ["name", "paola"], ["last_name", "rios peters"], ["created_at", "2015-03-18 23:08:57.956400"], ["updated_at", "2015-03-18 23:08:57.956400"]]  (35.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "loretogreve@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "loretogreve@hotmail.com"], ["list_id", 1], ["name", "loreto"], ["last_name", ""], ["created_at", "2015-03-18 23:08:58.000758"], ["updated_at", "2015-03-18 23:08:58.000758"]]  (15.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "olmazabal@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "olmazabal@gmail.com"], ["list_id", 1], ["name", "Gerardo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:58.022124"], ["updated_at", "2015-03-18 23:08:58.022124"]]  (14.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "avillas1000@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "avillas1000@yahoo.com"], ["list_id", 1], ["name", "Ale"], ["last_name", "Villasmil"], ["created_at", "2015-03-18 23:08:58.043051"], ["updated_at", "2015-03-18 23:08:58.043051"]]  (13.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "no_surprises@live.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "no_surprises@live.cl"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Campos"], ["created_at", "2015-03-18 23:08:58.062943"], ["updated_at", "2015-03-18 23:08:58.062943"]]  (4.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulinagarciac@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulinagarciac@gmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Garcia"], ["created_at", "2015-03-18 23:08:58.074334"], ["updated_at", "2015-03-18 23:08:58.074334"]]  (19.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pichulita@esfera.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pichulita@esfera.cl"], ["list_id", 1], ["name", "aaaa"], ["last_name", "gg"], ["created_at", "2015-03-18 23:08:58.100927"], ["updated_at", "2015-03-18 23:08:58.100927"]]  (11.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mocoetereo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mocoetereo@hotmail.com"], ["list_id", 1], ["name", "felipe"], ["last_name", "gonzalez valero"], ["created_at", "2015-03-18 23:08:58.118582"], ["updated_at", "2015-03-18 23:08:58.118582"]]  (9.0ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fgonzalezarriagada@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fgonzalezarriagada@gmail.com"], ["list_id", 1], ["name", "felipegonzalezvalero"], ["last_name", ""], ["created_at", "2015-03-18 23:08:58.133617"], ["updated_at", "2015-03-18 23:08:58.133617"]]  (26.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manuelss@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manuelss@hotmail.com"], ["list_id", 1], ["name", "Manuel"], ["last_name", ""], ["created_at", "2015-03-18 23:08:58.166093"], ["updated_at", "2015-03-18 23:08:58.166093"]]  (16.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cmibanez@puc.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cmibanez@puc.cl"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Ibáñez"], ["created_at", "2015-03-18 23:08:58.189194"], ["updated_at", "2015-03-18 23:08:58.189194"]]  (22.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "violante.rodrigo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "violante.rodrigo@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Violante"], ["created_at", "2015-03-18 23:08:58.217891"], ["updated_at", "2015-03-18 23:08:58.217891"]]  (5.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tb.cristobal@gmail.com"]]  (0.1ms) begin transaction SQL (1.1ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tb.cristobal@gmail.com"], ["list_id", 1], ["name", "Cristobal"], ["last_name", "Traslaviña"], ["created_at", "2015-03-18 23:08:58.230126"], ["updated_at", "2015-03-18 23:08:58.230126"]]  (836.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jshaoul@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jshaoul@gmail.com"], ["list_id", 1], ["name", "Joseph"], ["last_name", "Shaoul"], ["created_at", "2015-03-18 23:08:59.074422"], ["updated_at", "2015-03-18 23:08:59.074422"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vroaguirre@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vroaguirre@hotmail.com"], ["list_id", 1], ["name", "Verónica"], ["last_name", "Aguirre LInares"], ["created_at", "2015-03-18 23:08:59.084274"], ["updated_at", "2015-03-18 23:08:59.084274"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cmoralesk@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cmoralesk@gmail.com"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Fernando Morales-Kallina"], ["created_at", "2015-03-18 23:08:59.092976"], ["updated_at", "2015-03-18 23:08:59.092976"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marchantdearte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marchantdearte@gmail.com"], ["list_id", 1], ["name", "Andres"], ["last_name", "Chavez"], ["created_at", "2015-03-18 23:08:59.101400"], ["updated_at", "2015-03-18 23:08:59.101400"]]  (4.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pancha_al@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pancha_al@hotmail.com"], ["list_id", 1], ["name", "francisca"], ["last_name", "alvarez"], ["created_at", "2015-03-18 23:08:59.111358"], ["updated_at", "2015-03-18 23:08:59.111358"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caroparra@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caroparra@hotmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Parra Ortega"], ["created_at", "2015-03-18 23:08:59.133189"], ["updated_at", "2015-03-18 23:08:59.133189"]]  (7.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fuentesrodrigo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fuentesrodrigo@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Fuentes"], ["created_at", "2015-03-18 23:08:59.147440"], ["updated_at", "2015-03-18 23:08:59.147440"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danizeta@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danizeta@gmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Zúñiga"], ["created_at", "2015-03-18 23:08:59.156750"], ["updated_at", "2015-03-18 23:08:59.156750"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristiandepablo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristiandepablo@gmail.com"], ["list_id", 1], ["name", "Cristián"], ["last_name", "de Pablo"], ["created_at", "2015-03-18 23:08:59.164876"], ["updated_at", "2015-03-18 23:08:59.164876"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "urbanodonte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "urbanodonte@gmail.com"], ["list_id", 1], ["name", "darwin"], ["last_name", "andino"], ["created_at", "2015-03-18 23:08:59.181927"], ["updated_at", "2015-03-18 23:08:59.181927"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "RUTHD4444@HOTMAIL.COM"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "RUTHD4444@HOTMAIL.COM"], ["list_id", 1], ["name", "JAIME"], ["last_name", "DOMÍNGUEZ BLEIN"], ["created_at", "2015-03-18 23:08:59.190734"], ["updated_at", "2015-03-18 23:08:59.190734"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fromebg@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fromebg@hotmail.com"], ["list_id", 1], ["name", "eduardo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.199519"], ["updated_at", "2015-03-18 23:08:59.199519"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pecesillo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pecesillo@gmail.com"], ["list_id", 1], ["name", "CRISTIAN"], ["last_name", "VIVANCO MENDEZ"], ["created_at", "2015-03-18 23:08:59.285573"], ["updated_at", "2015-03-18 23:08:59.285573"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "raymondlakes@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "raymondlakes@gmail.com"], ["list_id", 1], ["name", "Raimundo"], ["last_name", "Lagos"], ["created_at", "2015-03-18 23:08:59.294818"], ["updated_at", "2015-03-18 23:08:59.294818"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "methoz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "methoz@gmail.com"], ["list_id", 1], ["name", "Paulo"], ["last_name", "Mendez"], ["created_at", "2015-03-18 23:08:59.304090"], ["updated_at", "2015-03-18 23:08:59.304090"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dmoralesvogt@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dmoralesvogt@yahoo.es"], ["list_id", 1], ["name", "Doris"], ["last_name", "Morales Vogt"], ["created_at", "2015-03-18 23:08:59.313034"], ["updated_at", "2015-03-18 23:08:59.313034"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablo_88x@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablo_88x@hotmail.com"], ["list_id", 1], ["name", "pablo"], ["last_name", "sandoval poblete"], ["created_at", "2015-03-18 23:08:59.321959"], ["updated_at", "2015-03-18 23:08:59.321959"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caesargazli@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caesargazli@gmail.com"], ["list_id", 1], ["name", "Romina"], ["last_name", "Caceres"], ["created_at", "2015-03-18 23:08:59.349389"], ["updated_at", "2015-03-18 23:08:59.349389"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pferraris@vtr.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pferraris@vtr.net"], ["list_id", 1], ["name", "Paola"], ["last_name", "Ferraris"], ["created_at", "2015-03-18 23:08:59.358955"], ["updated_at", "2015-03-18 23:08:59.358955"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "1220@albertolazo.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "1220@albertolazo.cl"], ["list_id", 1], ["name", "Alberto"], ["last_name", "Lazo"], ["created_at", "2015-03-18 23:08:59.366879"], ["updated_at", "2015-03-18 23:08:59.366879"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mim698@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mim698@hotmail.com"], ["list_id", 1], ["name", "MARIA"], ["last_name", "INES MORAGA MOLLENHAUER"], ["created_at", "2015-03-18 23:08:59.375788"], ["updated_at", "2015-03-18 23:08:59.375788"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manemoraga@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manemoraga@yahoo.com"], ["list_id", 1], ["name", "MANE"], ["last_name", "MORAGA MOLLENHAUER"], ["created_at", "2015-03-18 23:08:59.384723"], ["updated_at", "2015-03-18 23:08:59.384723"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "metamann@metamann.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "metamann@metamann.com"], ["list_id", 1], ["name", "Christian"], ["last_name", "Ziehlmann"], ["created_at", "2015-03-18 23:08:59.397662"], ["updated_at", "2015-03-18 23:08:59.397662"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tonika@entelchile.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tonika@entelchile.net"], ["list_id", 1], ["name", "Alfredo"], ["last_name", "Burrell"], ["created_at", "2015-03-18 23:08:59.406543"], ["updated_at", "2015-03-18 23:08:59.406543"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tinne_duir@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tinne_duir@hotmail.com"], ["list_id", 1], ["name", "valentina"], ["last_name", "arevalo lamas"], ["created_at", "2015-03-18 23:08:59.415037"], ["updated_at", "2015-03-18 23:08:59.415037"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "poetayladron@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "poetayladron@gmail.com"], ["list_id", 1], ["name", "Jack"], ["last_name", "Lesage"], ["created_at", "2015-03-18 23:08:59.423373"], ["updated_at", "2015-03-18 23:08:59.423373"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "almabusari@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "almabusari@hotmail.com"], ["list_id", 1], ["name", "alberto"], ["last_name", "bustos arias"], ["created_at", "2015-03-18 23:08:59.432236"], ["updated_at", "2015-03-18 23:08:59.432236"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aqt@powermedia.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aqt@powermedia.cl"], ["list_id", 1], ["name", "Alvaro"], ["last_name", "Quezada"], ["created_at", "2015-03-18 23:08:59.448231"], ["updated_at", "2015-03-18 23:08:59.448231"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "le.ivre@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "le.ivre@gmail.com"], ["list_id", 1], ["name", "Nicolás"], ["last_name", "Bravo Gárate"], ["created_at", "2015-03-18 23:08:59.457502"], ["updated_at", "2015-03-18 23:08:59.457502"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gtramonna@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gtramonna@hotmail.com"], ["list_id", 1], ["name", "RAMON"], ["last_name", "CABRERA"], ["created_at", "2015-03-18 23:08:59.466307"], ["updated_at", "2015-03-18 23:08:59.466307"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lilianismo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lilianismo@hotmail.com"], ["list_id", 1], ["name", "liliana"], ["last_name", "joplin"], ["created_at", "2015-03-18 23:08:59.475558"], ["updated_at", "2015-03-18 23:08:59.475558"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cramberrie@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cramberrie@gmail.com"], ["list_id", 1], ["name", "Estefanía"], ["last_name", "Bravo"], ["created_at", "2015-03-18 23:08:59.484103"], ["updated_at", "2015-03-18 23:08:59.484103"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macarenaperich@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macarenaperich@gmail.com"], ["list_id", 1], ["name", "macarena"], ["last_name", "perich rosas"], ["created_at", "2015-03-18 23:08:59.498578"], ["updated_at", "2015-03-18 23:08:59.498578"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javier.rodriguez.pino@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javier.rodriguez.pino@gmail.com"], ["list_id", 1], ["name", "Javier"], ["last_name", "Rodriguez"], ["created_at", "2015-03-18 23:08:59.507339"], ["updated_at", "2015-03-18 23:08:59.507339"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ru.sottolichio@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ru.sottolichio@gmail.com"], ["list_id", 1], ["name", "ruboc"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.515668"], ["updated_at", "2015-03-18 23:08:59.515668"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jpfarru@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jpfarru@hotmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Pablo Farru"], ["created_at", "2015-03-18 23:08:59.524548"], ["updated_at", "2015-03-18 23:08:59.524548"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "domilath@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "domilath@gmail.com"], ["list_id", 1], ["name", "Dominique"], ["last_name", "Lathrop"], ["created_at", "2015-03-18 23:08:59.533493"], ["updated_at", "2015-03-18 23:08:59.533493"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hugo.arenas@enaer.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hugo.arenas@enaer.cl"], ["list_id", 1], ["name", "hugo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.547548"], ["updated_at", "2015-03-18 23:08:59.547548"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artecota@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artecota@yahoo.es"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Carrasco"], ["created_at", "2015-03-18 23:08:59.557231"], ["updated_at", "2015-03-18 23:08:59.557231"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artecotacarloscarrasco@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artecotacarloscarrasco@gmail.com"], ["list_id", 1], ["name", "CarloCota"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.565756"], ["updated_at", "2015-03-18 23:08:59.565756"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "g29digital@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "g29digital@gmail.com"], ["list_id", 1], ["name", "joel"], ["last_name", "caica"], ["created_at", "2015-03-18 23:08:59.574945"], ["updated_at", "2015-03-18 23:08:59.574945"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "m.constanza.avello@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "m.constanza.avello@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Avello"], ["created_at", "2015-03-18 23:08:59.583877"], ["updated_at", "2015-03-18 23:08:59.583877"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlis306@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlis306@hotmail.com"], ["list_id", 1], ["name", "carla"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.597988"], ["updated_at", "2015-03-18 23:08:59.597988"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dyango.escultor@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dyango.escultor@gmail.com"], ["list_id", 1], ["name", "DYANGO"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.606672"], ["updated_at", "2015-03-18 23:08:59.606672"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jesu_cdm@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jesu_cdm@hotmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Jesús Gomez Donoso"], ["created_at", "2015-03-18 23:08:59.615102"], ["updated_at", "2015-03-18 23:08:59.615102"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "henruz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "henruz@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Henríquez Ruz"], ["created_at", "2015-03-18 23:08:59.624247"], ["updated_at", "2015-03-18 23:08:59.624247"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "michwanoo1@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "michwanoo1@hotmail.com"], ["list_id", 1], ["name", "Colectivo"], ["last_name", "Heroestencil"], ["created_at", "2015-03-18 23:08:59.633707"], ["updated_at", "2015-03-18 23:08:59.633707"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ivhan_franco@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ivhan_franco@hotmail.com"], ["list_id", 1], ["name", "ivhan"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.647063"], ["updated_at", "2015-03-18 23:08:59.647063"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "barbarawormull@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "barbarawormull@hotmail.com"], ["list_id", 1], ["name", "Barbara"], ["last_name", "Wormull"], ["created_at", "2015-03-18 23:08:59.655565"], ["updated_at", "2015-03-18 23:08:59.655565"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mlavaisse@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mlavaisse@hotmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Luisa"], ["created_at", "2015-03-18 23:08:59.665561"], ["updated_at", "2015-03-18 23:08:59.665561"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "beatrizvarga@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "beatrizvarga@gmail.com"], ["list_id", 1], ["name", "Beatriz"], ["last_name", "Vargas González"], ["created_at", "2015-03-18 23:08:59.674147"], ["updated_at", "2015-03-18 23:08:59.674147"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "saidokins@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "saidokins@yahoo.com.mx"], ["list_id", 1], ["name", "Said"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.682719"], ["updated_at", "2015-03-18 23:08:59.682719"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zs@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zs@live.cl"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Ángel Leal Silva"], ["created_at", "2015-03-18 23:08:59.698316"], ["updated_at", "2015-03-18 23:08:59.698316"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "katty9981@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "katty9981@hotmail.com"], ["list_id", 1], ["name", "Joselyne"], ["last_name", "Contreras Cerda"], ["created_at", "2015-03-18 23:08:59.706969"], ["updated_at", "2015-03-18 23:08:59.706969"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@enricbardera.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@enricbardera.com"], ["list_id", 1], ["name", "Enric"], ["last_name", "Bardera"], ["created_at", "2015-03-18 23:08:59.715509"], ["updated_at", "2015-03-18 23:08:59.715509"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulinavelizg@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulinavelizg@gmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Veliz gutierrez"], ["created_at", "2015-03-18 23:08:59.725204"], ["updated_at", "2015-03-18 23:08:59.725204"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "victortugahiena@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "victortugahiena@hotmail.com"], ["list_id", 1], ["name", "victor"], ["last_name", "flores"], ["created_at", "2015-03-18 23:08:59.734416"], ["updated_at", "2015-03-18 23:08:59.734416"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artistavisualcca@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artistavisualcca@gmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Paz Cortés Araya"], ["created_at", "2015-03-18 23:08:59.747757"], ["updated_at", "2015-03-18 23:08:59.747757"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolinapazcortes@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolinapazcortes@gmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Paz Cortes A."], ["created_at", "2015-03-18 23:08:59.756520"], ["updated_at", "2015-03-18 23:08:59.756520"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pazpudica@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pazpudica@gmail.com"], ["list_id", 1], ["name", "carolina"], ["last_name", "paz cortes"], ["created_at", "2015-03-18 23:08:59.765407"], ["updated_at", "2015-03-18 23:08:59.765407"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "piojito_0.7@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "piojito_0.7@hotmail.com"], ["list_id", 1], ["name", "nicole"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.774403"], ["updated_at", "2015-03-18 23:08:59.774403"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "schmittzalba@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "schmittzalba@yahoo.es"], ["list_id", 1], ["name", "ALEJANDRO"], ["last_name", "SCHMITT"], ["created_at", "2015-03-18 23:08:59.783062"], ["updated_at", "2015-03-18 23:08:59.783062"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "brunacarlos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "brunacarlos@gmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Bruna"], ["created_at", "2015-03-18 23:08:59.797342"], ["updated_at", "2015-03-18 23:08:59.797342"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@sala01.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@sala01.cl"], ["list_id", 1], ["name", "SALA"], ["last_name", "01"], ["created_at", "2015-03-18 23:08:59.806065"], ["updated_at", "2015-03-18 23:08:59.806065"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felipe-aliaga@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felipe-aliaga@hotmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Aliaga"], ["created_at", "2015-03-18 23:08:59.814336"], ["updated_at", "2015-03-18 23:08:59.814336"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "piadellorto@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "piadellorto@gmail.com"], ["list_id", 1], ["name", "Pía"], ["last_name", "Dell´Orto Huneeus"], ["created_at", "2015-03-18 23:08:59.823989"], ["updated_at", "2015-03-18 23:08:59.823989"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "masacra1@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "masacra1@hotmail.com"], ["list_id", 1], ["name", "All"], ["last_name", "Gore"], ["created_at", "2015-03-18 23:08:59.833780"], ["updated_at", "2015-03-18 23:08:59.833780"]]  (4.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "karoars.m.n@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "karoars.m.n@hotmail.com"], ["list_id", 1], ["name", "CaRoLiNa"], ["last_name", "MiRaNdA NiLo"], ["created_at", "2015-03-18 23:08:59.847475"], ["updated_at", "2015-03-18 23:08:59.847475"]]  (20.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elsir@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elsir@hotmail.com"], ["list_id", 1], ["name", "David"], ["last_name", "Lino"], ["created_at", "2015-03-18 23:08:59.874872"], ["updated_at", "2015-03-18 23:08:59.874872"]]  (15.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ce.aguileraalvarez@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ce.aguileraalvarez@gmail.com"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Aguilera"], ["created_at", "2015-03-18 23:08:59.897722"], ["updated_at", "2015-03-18 23:08:59.897722"]]  (18.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariaguzmanc@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariaguzmanc@gmail.com"], ["list_id", 1], ["name", "maria"], ["last_name", "elena guzman"], ["created_at", "2015-03-18 23:08:59.922121"], ["updated_at", "2015-03-18 23:08:59.922121"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sweet_child_82@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sweet_child_82@hotmail.com"], ["list_id", 1], ["name", "HAYDEE"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.932837"], ["updated_at", "2015-03-18 23:08:59.932837"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dark_hunter_sr@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dark_hunter_sr@hotmail.com"], ["list_id", 1], ["name", "Leonardo"], ["last_name", ""], ["created_at", "2015-03-18 23:08:59.941377"], ["updated_at", "2015-03-18 23:08:59.941377"]]  (7.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mauroolivares@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mauroolivares@gmail.com"], ["list_id", 1], ["name", "Mauricio"], ["last_name", "Olivares Montes (mom)"], ["created_at", "2015-03-18 23:08:59.955107"], ["updated_at", "2015-03-18 23:08:59.955107"]]  (63.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camii.relax@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camii.relax@gmail.com"], ["list_id", 1], ["name", "camila"], ["last_name", "diaz"], ["created_at", "2015-03-18 23:09:00.025073"], ["updated_at", "2015-03-18 23:09:00.025073"]]  (21.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gustavors@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gustavors@gmail.com"], ["list_id", 1], ["name", "Gustavo"], ["last_name", "Miranda"], ["created_at", "2015-03-18 23:09:00.052958"], ["updated_at", "2015-03-18 23:09:00.052958"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juju1992@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juju1992@hotmail.com"], ["list_id", 1], ["name", "Jacqueline"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.062448"], ["updated_at", "2015-03-18 23:09:00.062448"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tarasolar@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tarasolar@gmail.com"], ["list_id", 1], ["name", "Geraldine"], ["last_name", "Karina Toledo Guerrero"], ["created_at", "2015-03-18 23:09:00.080989"], ["updated_at", "2015-03-18 23:09:00.080989"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vivemosaico@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vivemosaico@gmail.com"], ["list_id", 1], ["name", "cindy"], ["last_name", "pizarro toledo"], ["created_at", "2015-03-18 23:09:00.090358"], ["updated_at", "2015-03-18 23:09:00.090358"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "superjaimo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "superjaimo@gmail.com"], ["list_id", 1], ["name", "Jaime"], ["last_name", "Alvarado"], ["created_at", "2015-03-18 23:09:00.099323"], ["updated_at", "2015-03-18 23:09:00.099323"]]  (25.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "videodanzacl@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "videodanzacl@gmail.com"], ["list_id", 1], ["name", "Mila"], ["last_name", "Berríos Palomino"], ["created_at", "2015-03-18 23:09:00.130467"], ["updated_at", "2015-03-18 23:09:00.130467"]]  (8.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristian_rsa@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristian_rsa@hotmail.com"], ["list_id", 1], ["name", "cristian"], ["last_name", "orsen krugen vain"], ["created_at", "2015-03-18 23:09:00.144426"], ["updated_at", "2015-03-18 23:09:00.144426"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sreyes@ripley.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sreyes@ripley.cl"], ["list_id", 1], ["name", "Salvador"], ["last_name", "Reyes"], ["created_at", "2015-03-18 23:09:00.153332"], ["updated_at", "2015-03-18 23:09:00.153332"]]  (7.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "robot2xl@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "robot2xl@gmail.com"], ["list_id", 1], ["name", "oscar"], ["last_name", "a. garcia"], ["created_at", "2015-03-18 23:09:00.167763"], ["updated_at", "2015-03-18 23:09:00.167763"]]  (5.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "videofemme@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "videofemme@yahoo.com"], ["list_id", 1], ["name", "claudia"], ["last_name", "prado"], ["created_at", "2015-03-18 23:09:00.180482"], ["updated_at", "2015-03-18 23:09:00.180482"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jetiandolamoska@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jetiandolamoska@hotmail.com"], ["list_id", 1], ["name", "PIOJORADIOACTIVO"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.189950"], ["updated_at", "2015-03-18 23:09:00.189950"]]  (48.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "franco_zuna@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "franco_zuna@hotmail.com"], ["list_id", 1], ["name", "Andres"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.244668"], ["updated_at", "2015-03-18 23:09:00.244668"]]  (22.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "throne_of_alzeth88@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "throne_of_alzeth88@hotmail.com"], ["list_id", 1], ["name", "Diego"], ["last_name", "Donoso"], ["created_at", "2015-03-18 23:09:00.274449"], ["updated_at", "2015-03-18 23:09:00.274449"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gustavodanielrios@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gustavodanielrios@yahoo.com.ar"], ["list_id", 1], ["name", "gustavo"], ["last_name", "daniel"], ["created_at", "2015-03-18 23:09:00.283841"], ["updated_at", "2015-03-18 23:09:00.283841"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "oyeian@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "oyeian@hotmail.com"], ["list_id", 1], ["name", "ian"], ["last_name", "obrecht"], ["created_at", "2015-03-18 23:09:00.297257"], ["updated_at", "2015-03-18 23:09:00.297257"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "david.floreshora@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "david.floreshora@gmail.com"], ["list_id", 1], ["name", "David"], ["last_name", "Flores-Hora"], ["created_at", "2015-03-18 23:09:00.306810"], ["updated_at", "2015-03-18 23:09:00.306810"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nilo.casares@uv.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nilo.casares@uv.es"], ["list_id", 1], ["name", "nilo"], ["last_name", "casares"], ["created_at", "2015-03-18 23:09:00.315437"], ["updated_at", "2015-03-18 23:09:00.315437"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "praeesse@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "praeesse@hotmail.com"], ["list_id", 1], ["name", "Andrea"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.324338"], ["updated_at", "2015-03-18 23:09:00.324338"]]  (14.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "crismurg_93@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "crismurg_93@hotmail.com"], ["list_id", 1], ["name", "cristian"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.345204"], ["updated_at", "2015-03-18 23:09:00.345204"]]  (26.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "laradiocarpintero@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "laradiocarpintero@gmail.com"], ["list_id", 1], ["name", "arturo"], ["last_name", "mayegas ugarte"], ["created_at", "2015-03-18 23:09:00.378482"], ["updated_at", "2015-03-18 23:09:00.378482"]]  (11.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cglorianova@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cglorianova@gmail.com"], ["list_id", 1], ["name", "C."], ["last_name", "GLoria"], ["created_at", "2015-03-18 23:09:00.396420"], ["updated_at", "2015-03-18 23:09:00.396420"]]  (19.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "podriasveniraverme@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "podriasveniraverme@gmail.com"], ["list_id", 1], ["name", "paraiso"], ["last_name", "chi"], ["created_at", "2015-03-18 23:09:00.422818"], ["updated_at", "2015-03-18 23:09:00.422818"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cdeurresti@skinrsp.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cdeurresti@skinrsp.cl"], ["list_id", 1], ["name", "Carlos"], ["last_name", "de Urresti Longton"], ["created_at", "2015-03-18 23:09:00.432303"], ["updated_at", "2015-03-18 23:09:00.432303"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rubneia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rubneia@gmail.com"], ["list_id", 1], ["name", "Rubnéia"], ["last_name", "Leandro de Souza"], ["created_at", "2015-03-18 23:09:00.446926"], ["updated_at", "2015-03-18 23:09:00.446926"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cureta@pmc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cureta@pmc.cl"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Ureta"], ["created_at", "2015-03-18 23:09:00.456079"], ["updated_at", "2015-03-18 23:09:00.456079"]]  (13.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jasi71@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jasi71@hotmail.com"], ["list_id", 1], ["name", "javier"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.476335"], ["updated_at", "2015-03-18 23:09:00.476335"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "oued2@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "oued2@yahoo.es"], ["list_id", 1], ["name", "OUED"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.485985"], ["updated_at", "2015-03-18 23:09:00.485985"]]  (15.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hijo_ra@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hijo_ra@hotmail.com"], ["list_id", 1], ["name", "Hijo"], ["last_name", "Ra Leiva Cabrera"], ["created_at", "2015-03-18 23:09:00.507420"], ["updated_at", "2015-03-18 23:09:00.507420"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danielaperezdearce@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danielaperezdearce@hotmail.com"], ["list_id", 1], ["name", "daniela"], ["last_name", "pérez de arce valenzuela"], ["created_at", "2015-03-18 23:09:00.516206"], ["updated_at", "2015-03-18 23:09:00.516206"]]  (11.0ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosaeliasmass@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosaeliasmass@yahoo.com.mx"], ["list_id", 1], ["name", "la"], ["last_name", "gata roja"], ["created_at", "2015-03-18 23:09:00.532654"], ["updated_at", "2015-03-18 23:09:00.532654"]]  (27.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "in_unda@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "in_unda@hotmail.com"], ["list_id", 1], ["name", "nora"], ["last_name", "unda"], ["created_at", "2015-03-18 23:09:00.565861"], ["updated_at", "2015-03-18 23:09:00.565861"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "faundez.roberto@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "faundez.roberto@gmail.com"], ["list_id", 1], ["name", "ROBERTO"], ["last_name", "FAUNDEZ"], ["created_at", "2015-03-18 23:09:00.574991"], ["updated_at", "2015-03-18 23:09:00.574991"]]  (18.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "valentina.montero@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "valentina.montero@gmail.com"], ["list_id", 1], ["name", "Valentina"], ["last_name", "Montero"], ["created_at", "2015-03-18 23:09:00.599760"], ["updated_at", "2015-03-18 23:09:00.599760"]]  (27.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bodhinirav@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bodhinirav@gmail.com"], ["list_id", 1], ["name", "BodhiNirav"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.633054"], ["updated_at", "2015-03-18 23:09:00.633054"]]  (27.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cotaguell@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cotaguell@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Guell"], ["created_at", "2015-03-18 23:09:00.666778"], ["updated_at", "2015-03-18 23:09:00.666778"]]  (26.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sergioamado@claroscuroafv.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sergioamado@claroscuroafv.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Amado"], ["created_at", "2015-03-18 23:09:00.699485"], ["updated_at", "2015-03-18 23:09:00.699485"]]  (17.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mrojaspi@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mrojaspi@gmail.com"], ["list_id", 1], ["name", "Monica"], ["last_name", "Rojas Piffre"], ["created_at", "2015-03-18 23:09:00.724518"], ["updated_at", "2015-03-18 23:09:00.724518"]]  (28.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "milaymultitud@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "milaymultitud@gmail.com"], ["list_id", 1], ["name", "mg"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.759719"], ["updated_at", "2015-03-18 23:09:00.759719"]]  (26.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gocasantana@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gocasantana@hotmail.com"], ["list_id", 1], ["name", "jenny"], ["last_name", "santana"], ["created_at", "2015-03-18 23:09:00.793725"], ["updated_at", "2015-03-18 23:09:00.793725"]]  (21.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alejandrovisual@gmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alejandrovisual@gmail.com"], ["list_id", 1], ["name", "Alejandro"], ["last_name", "Ortiz"], ["created_at", "2015-03-18 23:09:00.822976"], ["updated_at", "2015-03-18 23:09:00.822976"]]  (15.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pequenyojuan@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pequenyojuan@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Manuel Ipiña"], ["created_at", "2015-03-18 23:09:00.845968"], ["updated_at", "2015-03-18 23:09:00.845968"]]  (14.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "solnaciente29@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "solnaciente29@gmail.com"], ["list_id", 1], ["name", "Natalia"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.866216"], ["updated_at", "2015-03-18 23:09:00.866216"]]  (22.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "renzovisual@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "renzovisual@gmail.com"], ["list_id", 1], ["name", "Renzo"], ["last_name", "Ortega"], ["created_at", "2015-03-18 23:09:00.895880"], ["updated_at", "2015-03-18 23:09:00.895880"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elcanoa@gmail.com"]]  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elcanoa@gmail.com"], ["list_id", 1], ["name", "alejandro"], ["last_name", "quiroga vial"], ["created_at", "2015-03-18 23:09:00.912474"], ["updated_at", "2015-03-18 23:09:00.912474"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mac@mac.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mac@mac.cl"], ["list_id", 1], ["name", "Mac"], ["last_name", ""], ["created_at", "2015-03-18 23:09:00.921549"], ["updated_at", "2015-03-18 23:09:00.921549"]]  (25.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vacc85@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vacc85@yahoo.com"], ["list_id", 1], ["name", "valentina"], ["last_name", "castro"], ["created_at", "2015-03-18 23:09:00.952925"], ["updated_at", "2015-03-18 23:09:00.952925"]]  (8.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "berceruelohector@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "berceruelohector@gmail.com"], ["list_id", 1], ["name", "Hector"], ["last_name", "Martinez Berceruelo"], ["created_at", "2015-03-18 23:09:00.967393"], ["updated_at", "2015-03-18 23:09:00.967393"]]  (19.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "concigliery@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "concigliery@gmail.com"], ["list_id", 1], ["name", "Sebastian"], ["last_name", "Alberto Lopez"], ["created_at", "2015-03-18 23:09:00.993063"], ["updated_at", "2015-03-18 23:09:00.993063"]]  (19.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tiepola@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tiepola@gmail.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Molina Echegoyen"], ["created_at", "2015-03-18 23:09:01.019552"], ["updated_at", "2015-03-18 23:09:01.019552"]]  (16.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nanidesarasqueta@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nanidesarasqueta@gmail.com"], ["list_id", 1], ["name", "nani"], ["last_name", ""], ["created_at", "2015-03-18 23:09:01.043370"], ["updated_at", "2015-03-18 23:09:01.043370"]]  (17.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "quenita__s@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "quenita__s@hotmail.com"], ["list_id", 1], ["name", "raquel"], ["last_name", "eugenia soto cortez"], ["created_at", "2015-03-18 23:09:01.067371"], ["updated_at", "2015-03-18 23:09:01.067371"]]  (29.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "orlitaromerogomez@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "orlitaromerogomez@gmail.com"], ["list_id", 1], ["name", "Orlita"], ["last_name", "Romero Gómez"], ["created_at", "2015-03-18 23:09:01.102696"], ["updated_at", "2015-03-18 23:09:01.102696"]]  (22.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pitapia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pitapia@hotmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Tapia Villalobos"], ["created_at", "2015-03-18 23:09:01.133224"], ["updated_at", "2015-03-18 23:09:01.133224"]]  (13.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patbrunapo@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patbrunapo@gmail.com"], ["list_id", 1], ["name", "patricio"], ["last_name", "bruna poblete"], ["created_at", "2015-03-18 23:09:01.152690"], ["updated_at", "2015-03-18 23:09:01.152690"]]  (14.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lecarospalumbo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lecarospalumbo@gmail.com"], ["list_id", 1], ["name", "Martín"], ["last_name", "Lecaros"], ["created_at", "2015-03-18 23:09:01.175626"], ["updated_at", "2015-03-18 23:09:01.175626"]]  (14.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luisa@srtata.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luisa@srtata.com"], ["list_id", 1], ["name", "Luisa"], ["last_name", "Fuentes Guaza"], ["created_at", "2015-03-18 23:09:01.199187"], ["updated_at", "2015-03-18 23:09:01.199187"]]  (19.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pabloncholoncho@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pabloncholoncho@hotmail.com"], ["list_id", 1], ["name", "Ano"], ["last_name", "Nimo"], ["created_at", "2015-03-18 23:09:01.226120"], ["updated_at", "2015-03-18 23:09:01.226120"]]  (16.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pesaitamarisopa@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pesaitamarisopa@yahoo.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Moyano Anfossi"], ["created_at", "2015-03-18 23:09:01.249293"], ["updated_at", "2015-03-18 23:09:01.249293"]]  (21.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mmiranda4@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mmiranda4@hotmail.com"], ["list_id", 1], ["name", "Mibuel"], ["last_name", "Miranda"], ["created_at", "2015-03-18 23:09:01.277575"], ["updated_at", "2015-03-18 23:09:01.277575"]]  (21.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jdm@tmconceptos.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jdm@tmconceptos.cl"], ["list_id", 1], ["name", "joaquin"], ["last_name", "mota"], ["created_at", "2015-03-18 23:09:01.307746"], ["updated_at", "2015-03-18 23:09:01.307746"]]  (18.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javierarte68@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javierarte68@yahoo.es"], ["list_id", 1], ["name", "Javiera"], ["last_name", "Perez Escalante"], ["created_at", "2015-03-18 23:09:01.332785"], ["updated_at", "2015-03-18 23:09:01.332785"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cordegarza2@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cordegarza2@hotmail.com"], ["list_id", 1], ["name", "cordelia"], ["last_name", "garza"], ["created_at", "2015-03-18 23:09:01.342406"], ["updated_at", "2015-03-18 23:09:01.342406"]]  (5.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alcibarcr@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alcibarcr@hotmail.com"], ["list_id", 1], ["name", "Eric"], ["last_name", "Alcibar"], ["created_at", "2015-03-18 23:09:01.361414"], ["updated_at", "2015-03-18 23:09:01.361414"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jpriquelmem@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jpriquelmem@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Pablo Riquelme M"], ["created_at", "2015-03-18 23:09:01.370106"], ["updated_at", "2015-03-18 23:09:01.370106"]]  (12.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vetealinfierno2@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vetealinfierno2@gmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", ""], ["created_at", "2015-03-18 23:09:01.388675"], ["updated_at", "2015-03-18 23:09:01.388675"]]  (27.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Necro__Goth@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Necro__Goth@hotmail.com"], ["list_id", 1], ["name", "Vicente"], ["last_name", "Zigarre des Regens"], ["created_at", "2015-03-18 23:09:01.423819"], ["updated_at", "2015-03-18 23:09:01.423819"]]  (10.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gabriela.aranguiz@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gabriela.aranguiz@hotmail.com"], ["list_id", 1], ["name", "Gabriela"], ["last_name", ""], ["created_at", "2015-03-18 23:09:01.440993"], ["updated_at", "2015-03-18 23:09:01.440993"]]  (19.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "potter.barbarita@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "potter.barbarita@gmail.com"], ["list_id", 1], ["name", "Barbara"], ["last_name", "Contreras"], ["created_at", "2015-03-18 23:09:01.467251"], ["updated_at", "2015-03-18 23:09:01.467251"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "edoaraos@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "edoaraos@yahoo.es"], ["list_id", 1], ["name", "Eduardo"], ["last_name", "Araos"], ["created_at", "2015-03-18 23:09:01.477092"], ["updated_at", "2015-03-18 23:09:01.477092"]]  (57.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "constanzaloyolola@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "constanzaloyolola@gmail.com"], ["list_id", 1], ["name", "constanza"], ["last_name", "loyola ramirez"], ["created_at", "2015-03-18 23:09:01.540902"], ["updated_at", "2015-03-18 23:09:01.540902"]]  (20.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "samuelsarmiento87@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "samuelsarmiento87@hotmail.com"], ["list_id", 1], ["name", "samuelsarmiento"], ["last_name", ""], ["created_at", "2015-03-18 23:09:01.568440"], ["updated_at", "2015-03-18 23:09:01.568440"]]  (21.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gusmillon@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gusmillon@gmail.com"], ["list_id", 1], ["name", "A."], ["last_name", "Milo"], ["created_at", "2015-03-18 23:09:01.596310"], ["updated_at", "2015-03-18 23:09:01.596310"]]  (18.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcelinavargas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcelinavargas@hotmail.com"], ["list_id", 1], ["name", "deisy"], ["last_name", "marcela vargas"], ["created_at", "2015-03-18 23:09:01.621581"], ["updated_at", "2015-03-18 23:09:01.621581"]]  (18.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "roartma@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "roartma@gmail.com"], ["list_id", 1], ["name", "romulo"], ["last_name", "martinez"], ["created_at", "2015-03-18 23:09:01.646313"], ["updated_at", "2015-03-18 23:09:01.646313"]]  (15.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "samir1488@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "samir1488@hotmail.com"], ["list_id", 1], ["name", "samir"], ["last_name", "elneser"], ["created_at", "2015-03-18 23:09:01.668671"], ["updated_at", "2015-03-18 23:09:01.668671"]]  (20.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "graficadesplazada@mail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "graficadesplazada@mail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Vidal Carvacho"], ["created_at", "2015-03-18 23:09:01.695223"], ["updated_at", "2015-03-18 23:09:01.695223"]]  (17.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "graficadesplazada@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "graficadesplazada@gmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Vidal"], ["created_at", "2015-03-18 23:09:01.719538"], ["updated_at", "2015-03-18 23:09:01.719538"]]  (16.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "franciscaaaaa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "franciscaaaaa@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Alejandra"], ["created_at", "2015-03-18 23:09:01.743213"], ["updated_at", "2015-03-18 23:09:01.743213"]]  (18.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ceroenlaizquierda@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ceroenlaizquierda@yahoo.es"], ["list_id", 1], ["name", "Lester"], ["last_name", "rodriguez"], ["created_at", "2015-03-18 23:09:01.767478"], ["updated_at", "2015-03-18 23:09:01.767478"]]  (16.3ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gonzalopinoi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gonzalopinoi@gmail.com"], ["list_id", 1], ["name", "gonzalo"], ["last_name", "pino"], ["created_at", "2015-03-18 23:09:01.791469"], ["updated_at", "2015-03-18 23:09:01.791469"]]  (18.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "belamorte@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "belamorte@hotmail.com"], ["list_id", 1], ["name", "Lady"], ["last_name", "Death"], ["created_at", "2015-03-18 23:09:01.816957"], ["updated_at", "2015-03-18 23:09:01.816957"]]  (65.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "belamorte@htomail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "belamorte@htomail.com"], ["list_id", 1], ["name", "Fernanda"], ["last_name", ""], ["created_at", "2015-03-18 23:09:01.890201"], ["updated_at", "2015-03-18 23:09:01.890201"]]  (20.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastian.gaete@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastian.gaete@gmail.com"], ["list_id", 1], ["name", "Sebastián"], ["last_name", "Gaete Villavicencio"], ["created_at", "2015-03-18 23:09:01.917699"], ["updated_at", "2015-03-18 23:09:01.917699"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bravoesarteltda@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bravoesarteltda@gmail.com"], ["list_id", 1], ["name", "BRAVOESARTE"], ["last_name", "Ltda."], ["created_at", "2015-03-18 23:09:01.926886"], ["updated_at", "2015-03-18 23:09:01.926886"]]  (19.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "odiogratuito_6@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "odiogratuito_6@hotmail.com"], ["list_id", 1], ["name", "gonzalo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:01.954181"], ["updated_at", "2015-03-18 23:09:01.954181"]]  (15.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carvajal.6@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carvajal.6@gmail.com"], ["list_id", 1], ["name", "gonzalo"], ["last_name", "carvajal"], ["created_at", "2015-03-18 23:09:01.977883"], ["updated_at", "2015-03-18 23:09:01.977883"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alejandro.paint@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alejandro.paint@hotmail.com"], ["list_id", 1], ["name", "alejandrosanchez"], ["last_name", ""], ["created_at", "2015-03-18 23:09:01.986952"], ["updated_at", "2015-03-18 23:09:01.986952"]]  (7.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rar@vtr.net"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rar@vtr.net"], ["list_id", 1], ["name", "Benito"], ["last_name", "Ricardi"], ["created_at", "2015-03-18 23:09:02.001117"], ["updated_at", "2015-03-18 23:09:02.001117"]]  (8.8ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bogomazov@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bogomazov@gmail.com"], ["list_id", 1], ["name", "Alexandr"], ["last_name", "Bogomazov"], ["created_at", "2015-03-18 23:09:02.017603"], ["updated_at", "2015-03-18 23:09:02.017603"]]  (17.4ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kathrina_blanko@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kathrina_blanko@yahoo.com"], ["list_id", 1], ["name", "Kathrina_Blanko"], ["last_name", ""], ["created_at", "2015-03-18 23:09:02.040977"], ["updated_at", "2015-03-18 23:09:02.040977"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rebelion.aka.rebe@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rebelion.aka.rebe@gmail.com"], ["list_id", 1], ["name", "rebelion"], ["last_name", ""], ["created_at", "2015-03-18 23:09:02.135348"], ["updated_at", "2015-03-18 23:09:02.135348"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jpchinasky@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jpchinasky@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Pablo Martinez"], ["created_at", "2015-03-18 23:09:02.144108"], ["updated_at", "2015-03-18 23:09:02.144108"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "damona_zsa@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "damona_zsa@hotmail.com"], ["list_id", 1], ["name", "monitta"], ["last_name", ""], ["created_at", "2015-03-18 23:09:02.152484"], ["updated_at", "2015-03-18 23:09:02.152484"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "magenttaa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "magenttaa@gmail.com"], ["list_id", 1], ["name", "Mary"], ["last_name", ""], ["created_at", "2015-03-18 23:09:02.160610"], ["updated_at", "2015-03-18 23:09:02.160610"]]  (7.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "blokis@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "blokis@gmail.com"], ["list_id", 1], ["name", "Blokis!"], ["last_name", ""], ["created_at", "2015-03-18 23:09:02.175293"], ["updated_at", "2015-03-18 23:09:02.175293"]]  (19.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leticiagshinozaki@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leticiagshinozaki@yahoo.com"], ["list_id", 1], ["name", "Leticia"], ["last_name", "Guerra-Shinozaki"], ["created_at", "2015-03-18 23:09:02.201065"], ["updated_at", "2015-03-18 23:09:02.201065"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "armando.urrea@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "armando.urrea@yahoo.es"], ["list_id", 1], ["name", "Armando"], ["last_name", "Urrea Cifuentes"], ["created_at", "2015-03-18 23:09:02.210995"], ["updated_at", "2015-03-18 23:09:02.210995"]]  (8.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matias.elgueta.zarhi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matias.elgueta.zarhi@gmail.com"], ["list_id", 1], ["name", "matias"], ["last_name", "elgueta zarhi"], ["created_at", "2015-03-18 23:09:02.225724"], ["updated_at", "2015-03-18 23:09:02.225724"]]  (4.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fernandomenasoanez@libero.it"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fernandomenasoanez@libero.it"], ["list_id", 1], ["name", "FERNANDOMENASOANEZ"], ["last_name", ""], ["created_at", "2015-03-18 23:09:02.235789"], ["updated_at", "2015-03-18 23:09:02.235789"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "friosaraya@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "friosaraya@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", ""], ["created_at", "2015-03-18 23:09:02.245293"], ["updated_at", "2015-03-18 23:09:02.245293"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "academiadeartemartinsoria@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "academiadeartemartinsoria@gmail.com"], ["list_id", 1], ["name", "academia"], ["last_name", "de arte martin soria"], ["created_at", "2015-03-18 23:09:02.253522"], ["updated_at", "2015-03-18 23:09:02.253522"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mgaragorri@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mgaragorri@gmail.com"], ["list_id", 1], ["name", "Mikel"], ["last_name", "Garagorri"], ["created_at", "2015-03-18 23:09:02.262260"], ["updated_at", "2015-03-18 23:09:02.262260"]]  (19.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "columpiomadrid@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "columpiomadrid@yahoo.es"], ["list_id", 1], ["name", "COLUMPIO"], ["last_name", "- galería de dibujo y obra en p"], ["created_at", "2015-03-18 23:09:02.287850"], ["updated_at", "2015-03-18 23:09:02.287850"]]  (6.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "saradiciero@ciudad.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "saradiciero@ciudad.com.ar"], ["list_id", 1], ["name", "Sara"], ["last_name", "Diciero"], ["created_at", "2015-03-18 23:09:02.300761"], ["updated_at", "2015-03-18 23:09:02.300761"]]  (14.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "renuard84@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "renuard84@yahoo.com"], ["list_id", 1], ["name", "cesar"], ["last_name", "david"], ["created_at", "2015-03-18 23:09:02.324781"], ["updated_at", "2015-03-18 23:09:02.324781"]]  (13.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vguilisasti@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vguilisasti@hotmail.com"], ["list_id", 1], ["name", "virginia"], ["last_name", "guilisasti palacios"], ["created_at", "2015-03-18 23:09:02.346024"], ["updated_at", "2015-03-18 23:09:02.346024"]]  (18.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "montsellados@lleida.org"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "montsellados@lleida.org"], ["list_id", 1], ["name", "Montserrat"], ["last_name", ""], ["created_at", "2015-03-18 23:09:02.373526"], ["updated_at", "2015-03-18 23:09:02.373526"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "montsellados@ono.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "montsellados@ono.es"], ["list_id", 1], ["name", "Montserrat"], ["last_name", "Llados Farran"], ["created_at", "2015-03-18 23:09:02.382516"], ["updated_at", "2015-03-18 23:09:02.382516"]]  (4.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "montsellados@ono.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "montsellados@ono.com"], ["list_id", 1], ["name", "Montse"], ["last_name", "Llados Farran"], ["created_at", "2015-03-18 23:09:02.393117"], ["updated_at", "2015-03-18 23:09:02.393117"]]  (8.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dhimassantos@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dhimassantos@gmail.com"], ["list_id", 1], ["name", "DHIMAS"], ["last_name", "SANTOS BAEZ"], ["created_at", "2015-03-18 23:09:02.408691"], ["updated_at", "2015-03-18 23:09:02.408691"]]  (29.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jaime_var@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jaime_var@hotmail.com"], ["list_id", 1], ["name", "Jaime"], ["last_name", "Vargas Aguilera"], ["created_at", "2015-03-18 23:09:02.444455"], ["updated_at", "2015-03-18 23:09:02.444455"]]  (15.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fabianortiz@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fabianortiz@gmail.com"], ["list_id", 1], ["name", "Fabian"], ["last_name", "Ortiz Acero"], ["created_at", "2015-03-18 23:09:02.681222"], ["updated_at", "2015-03-18 23:09:02.681222"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "propagunder@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "propagunder@gmail.com"], ["list_id", 1], ["name", "propagunder"], ["last_name", ""], ["created_at", "2015-03-18 23:09:02.690478"], ["updated_at", "2015-03-18 23:09:02.690478"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marakanaso@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marakanaso@hotmail.com"], ["list_id", 1], ["name", "matias"], ["last_name", "santa maria"], ["created_at", "2015-03-18 23:09:02.701006"], ["updated_at", "2015-03-18 23:09:02.701006"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "boca___boca@hotmail.com"]]  (0.6ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "boca___boca@hotmail.com"], ["list_id", 1], ["name", "Polly"], ["last_name", "Esther"], ["created_at", "2015-03-18 23:09:02.712294"], ["updated_at", "2015-03-18 23:09:02.712294"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sofinovella@mac.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sofinovella@mac.com"], ["list_id", 1], ["name", "Sofia"], ["last_name", "Novella"], ["created_at", "2015-03-18 23:09:02.741133"], ["updated_at", "2015-03-18 23:09:02.741133"]]  (690.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "harosauza_d@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "harosauza_d@yahoo.com.mx"], ["list_id", 1], ["name", "Diana"], ["last_name", "Haro Sauza"], ["created_at", "2015-03-18 23:09:03.438615"], ["updated_at", "2015-03-18 23:09:03.438615"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sciortino_a@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sciortino_a@hotmail.com"], ["list_id", 1], ["name", "ALBERTO"], ["last_name", "SCIORTINO"], ["created_at", "2015-03-18 23:09:03.448480"], ["updated_at", "2015-03-18 23:09:03.448480"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "golazodewander@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "golazodewander@hotmail.com"], ["list_id", 1], ["name", "Gonzalo"], ["last_name", "Andrés San Martín"], ["created_at", "2015-03-18 23:09:03.457438"], ["updated_at", "2015-03-18 23:09:03.457438"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "delcolordelcielo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "delcolordelcielo@gmail.com"], ["list_id", 1], ["name", "Yumbel"], ["last_name", "Gongora"], ["created_at", "2015-03-18 23:09:03.465537"], ["updated_at", "2015-03-18 23:09:03.465537"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "galovilches@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "galovilches@gmail.com"], ["list_id", 1], ["name", "galo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:03.474338"], ["updated_at", "2015-03-18 23:09:03.474338"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anitatequieromucho@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anitatequieromucho@hotmail.com"], ["list_id", 1], ["name", "galo"], ["last_name", "vilches"], ["created_at", "2015-03-18 23:09:03.489758"], ["updated_at", "2015-03-18 23:09:03.489758"]]  (13.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amparobaeza@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amparobaeza@gmail.com"], ["list_id", 1], ["name", "Amparo"], ["last_name", "Baeza"], ["created_at", "2015-03-18 23:09:03.510497"], ["updated_at", "2015-03-18 23:09:03.510497"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francaryave@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francaryave@gmail.com"], ["list_id", 1], ["name", "carlos"], ["last_name", "venegas"], ["created_at", "2015-03-18 23:09:03.520413"], ["updated_at", "2015-03-18 23:09:03.520413"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francaryave@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francaryave@hotmail.com"], ["list_id", 1], ["name", "carlos"], ["last_name", "venegas y"], ["created_at", "2015-03-18 23:09:03.538970"], ["updated_at", "2015-03-18 23:09:03.538970"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "interruptorno@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "interruptorno@hotmail.com"], ["list_id", 1], ["name", "Italo"], ["last_name", "Contador Díaz"], ["created_at", "2015-03-18 23:09:03.547535"], ["updated_at", "2015-03-18 23:09:03.547535"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pincel_vacio@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pincel_vacio@hotmail.com"], ["list_id", 1], ["name", "strahinja"], ["last_name", "bosuquet"], ["created_at", "2015-03-18 23:09:03.556397"], ["updated_at", "2015-03-18 23:09:03.556397"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "valehb_91@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "valehb_91@hotmail.com"], ["list_id", 1], ["name", "valentina"], ["last_name", "hiriart"], ["created_at", "2015-03-18 23:09:03.565018"], ["updated_at", "2015-03-18 23:09:03.565018"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "beckermv@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "beckermv@gmail.com"], ["list_id", 1], ["name", "Verónica"], ["last_name", "Becker Marshall"], ["created_at", "2015-03-18 23:09:03.574336"], ["updated_at", "2015-03-18 23:09:03.574336"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolvisual@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolvisual@gmail.com"], ["list_id", 1], ["name", "carol"], ["last_name", ""], ["created_at", "2015-03-18 23:09:03.589299"], ["updated_at", "2015-03-18 23:09:03.589299"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cris_horo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cris_horo@hotmail.com"], ["list_id", 1], ["name", "Cristina"], ["last_name", "Alvarez"], ["created_at", "2015-03-18 23:09:03.598222"], ["updated_at", "2015-03-18 23:09:03.598222"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "strahinjab@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "strahinjab@gmail.com"], ["list_id", 1], ["name", "Strahinja"], ["last_name", "Bousquet"], ["created_at", "2015-03-18 23:09:03.606513"], ["updated_at", "2015-03-18 23:09:03.606513"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulocontrerasadonis@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulocontrerasadonis@gmail.com"], ["list_id", 1], ["name", "Pulo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:03.615191"], ["updated_at", "2015-03-18 23:09:03.615191"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@juancarloscastillo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@juancarloscastillo.com"], ["list_id", 1], ["name", "juan"], ["last_name", "carlos castillo"], ["created_at", "2015-03-18 23:09:03.624819"], ["updated_at", "2015-03-18 23:09:03.624819"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josemiguelfortunatti@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josemiguelfortunatti@gmail.com"], ["list_id", 1], ["name", "Josè"], ["last_name", "Miguel Fortunatti"], ["created_at", "2015-03-18 23:09:03.638683"], ["updated_at", "2015-03-18 23:09:03.638683"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pan.cun.miel@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pan.cun.miel@gmail.com"], ["list_id", 1], ["name", "Pam"], ["last_name", "ela"], ["created_at", "2015-03-18 23:09:03.646912"], ["updated_at", "2015-03-18 23:09:03.646912"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rrdecs@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rrdecs@hotmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "de Castro"], ["created_at", "2015-03-18 23:09:03.655317"], ["updated_at", "2015-03-18 23:09:03.655317"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "smbrieva@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "smbrieva@yahoo.com.ar"], ["list_id", 1], ["name", "stella"], ["last_name", "maris"], ["created_at", "2015-03-18 23:09:03.663754"], ["updated_at", "2015-03-18 23:09:03.663754"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camiastabupe@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camiastabupe@yahoo.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Astaburuaga Peña"], ["created_at", "2015-03-18 23:09:03.672638"], ["updated_at", "2015-03-18 23:09:03.672638"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camiastabupe@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camiastabupe@hotmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Astaburuaga"], ["created_at", "2015-03-18 23:09:03.688401"], ["updated_at", "2015-03-18 23:09:03.688401"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camiastabupe@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camiastabupe@gmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Astaburuaga P"], ["created_at", "2015-03-18 23:09:03.697400"], ["updated_at", "2015-03-18 23:09:03.697400"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lasorda70@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lasorda70@yahoo.com"], ["list_id", 1], ["name", "CLAUDIA"], ["last_name", "TAPIA"], ["created_at", "2015-03-18 23:09:03.706024"], ["updated_at", "2015-03-18 23:09:03.706024"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ffabiola@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ffabiola@live.cl"], ["list_id", 1], ["name", "Fabiola"], ["last_name", "Jacqueline Velásquez Martínez"], ["created_at", "2015-03-18 23:09:03.714672"], ["updated_at", "2015-03-18 23:09:03.714672"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maca_rivera@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maca_rivera@hotmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Macarena Rivera de la Maza"], ["created_at", "2015-03-18 23:09:03.723632"], ["updated_at", "2015-03-18 23:09:03.723632"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "natilr@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "natilr@gmail.com"], ["list_id", 1], ["name", "NATALIA"], ["last_name", "LUCERO REQUESENS"], ["created_at", "2015-03-18 23:09:03.739636"], ["updated_at", "2015-03-18 23:09:03.739636"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "moya.jp@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "moya.jp@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Pablo Moya Reyes"], ["created_at", "2015-03-18 23:09:03.748449"], ["updated_at", "2015-03-18 23:09:03.748449"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguelmichelson@artenlinea.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguelmichelson@artenlinea.com"], ["list_id", 1], ["name", "test"], ["last_name", ""], ["created_at", "2015-03-18 23:09:03.757005"], ["updated_at", "2015-03-18 23:09:03.757005"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "celextextex@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "celextextex@gmail.com"], ["list_id", 1], ["name", "Celeste"], ["last_name", ""], ["created_at", "2015-03-18 23:09:03.765251"], ["updated_at", "2015-03-18 23:09:03.765251"]]  (17.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "franco_simonetti@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "franco_simonetti@hotmail.com"], ["list_id", 1], ["name", "franco"], ["last_name", ""], ["created_at", "2015-03-18 23:09:03.789581"], ["updated_at", "2015-03-18 23:09:03.789581"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "karensoto_03@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "karensoto_03@hotmail.com"], ["list_id", 1], ["name", "Karen"], ["last_name", "soto morel"], ["created_at", "2015-03-18 23:09:03.798487"], ["updated_at", "2015-03-18 23:09:03.798487"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matiasreyne@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matiasreyne@hotmail.com"], ["list_id", 1], ["name", "matias"], ["last_name", "reyne"], ["created_at", "2015-03-18 23:09:03.806387"], ["updated_at", "2015-03-18 23:09:03.806387"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "psicomartillazo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "psicomartillazo@gmail.com"], ["list_id", 1], ["name", "macro"], ["last_name", ""], ["created_at", "2015-03-18 23:09:03.814466"], ["updated_at", "2015-03-18 23:09:03.814466"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "enriquecrusellas@hispeed.ch"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "enriquecrusellas@hispeed.ch"], ["list_id", 1], ["name", "enrique"], ["last_name", "crusellas"], ["created_at", "2015-03-18 23:09:03.823945"], ["updated_at", "2015-03-18 23:09:03.823945"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "meugeniapoblete@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "meugeniapoblete@gmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Eugenia Poblete Beas"], ["created_at", "2015-03-18 23:09:03.839208"], ["updated_at", "2015-03-18 23:09:03.839208"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pulo@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pulo@live.cl"], ["list_id", 1], ["name", "pulo_pixel"], ["last_name", ""], ["created_at", "2015-03-18 23:09:03.851985"], ["updated_at", "2015-03-18 23:09:03.851985"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudioromo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudioromo@gmail.com"], ["list_id", 1], ["name", "claudio"], ["last_name", "romo torres"], ["created_at", "2015-03-18 23:09:03.860695"], ["updated_at", "2015-03-18 23:09:03.860695"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matis.otondo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matis.otondo@gmail.com"], ["list_id", 1], ["name", "Matías"], ["last_name", "José Otondo Salazar"], ["created_at", "2015-03-18 23:09:03.869150"], ["updated_at", "2015-03-18 23:09:03.869150"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matias.otondo@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matias.otondo@gmail.com"], ["list_id", 1], ["name", "Matías"], ["last_name", "Otondo"], ["created_at", "2015-03-18 23:09:03.887390"], ["updated_at", "2015-03-18 23:09:03.887390"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "academiamartinsoria@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "academiamartinsoria@gmail.com"], ["list_id", 1], ["name", "Academia"], ["last_name", "de Bellas Artes Martín Soria"], ["created_at", "2015-03-18 23:09:03.903067"], ["updated_at", "2015-03-18 23:09:03.903067"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "academiams@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "academiams@gmail.com"], ["list_id", 1], ["name", "Martín"], ["last_name", "Soria"], ["created_at", "2015-03-18 23:09:03.912770"], ["updated_at", "2015-03-18 23:09:03.912770"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "art@artconsultants.de"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "art@artconsultants.de"], ["list_id", 1], ["name", "Astrid"], ["last_name", "Gonschor"], ["created_at", "2015-03-18 23:09:03.922118"], ["updated_at", "2015-03-18 23:09:03.922118"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paloma.iq@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paloma.iq@hotmail.com"], ["list_id", 1], ["name", "Paloma"], ["last_name", "Infante"], ["created_at", "2015-03-18 23:09:03.937809"], ["updated_at", "2015-03-18 23:09:03.937809"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mzcote@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mzcote@gmail.com"], ["list_id", 1], ["name", "maria"], ["last_name", "jose martinez"], ["created_at", "2015-03-18 23:09:03.953606"], ["updated_at", "2015-03-18 23:09:03.953606"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jazjacinta@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jazjacinta@gmail.com"], ["list_id", 1], ["name", "Jacinta"], ["last_name", "Reyes"], ["created_at", "2015-03-18 23:09:03.962392"], ["updated_at", "2015-03-18 23:09:03.962392"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "blancosanto@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "blancosanto@yahoo.es"], ["list_id", 1], ["name", "Blanco"], ["last_name", "Santo"], ["created_at", "2015-03-18 23:09:03.970688"], ["updated_at", "2015-03-18 23:09:03.970688"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisco.uzabeaga@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisco.uzabeaga@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Uzabeaga"], ["created_at", "2015-03-18 23:09:03.986683"], ["updated_at", "2015-03-18 23:09:03.986683"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nenereguera@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nenereguera@hotmail.com"], ["list_id", 1], ["name", "artista"], ["last_name", ""], ["created_at", "2015-03-18 23:09:03.995643"], ["updated_at", "2015-03-18 23:09:03.995643"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sothik@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sothik@hotmail.com"], ["list_id", 1], ["name", "jaime"], ["last_name", "Gil"], ["created_at", "2015-03-18 23:09:04.004270"], ["updated_at", "2015-03-18 23:09:04.004270"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlosvergarariv@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlosvergarariv@gmail.com"], ["list_id", 1], ["name", "CARLOS"], ["last_name", "M. VERGARA R."], ["created_at", "2015-03-18 23:09:04.012746"], ["updated_at", "2015-03-18 23:09:04.012746"]]  (4.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ro@rosanaruiz.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ro@rosanaruiz.com.ar"], ["list_id", 1], ["name", "Rosana"], ["last_name", "Ruiz"], ["created_at", "2015-03-18 23:09:04.023096"], ["updated_at", "2015-03-18 23:09:04.023096"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Maca_eminem9@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Maca_eminem9@hotmail.com"], ["list_id", 1], ["name", "Macka"], ["last_name", "Backa"], ["created_at", "2015-03-18 23:09:04.037211"], ["updated_at", "2015-03-18 23:09:04.037211"]]  (15.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ingridlauw@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ingridlauw@gmail.com"], ["list_id", 1], ["name", "Ingrid"], ["last_name", "Lauw"], ["created_at", "2015-03-18 23:09:04.059511"], ["updated_at", "2015-03-18 23:09:04.059511"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andres@colectivopanal.org"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andres@colectivopanal.org"], ["list_id", 1], ["name", "Andrés"], ["last_name", "Roeschmann A"], ["created_at", "2015-03-18 23:09:04.070352"], ["updated_at", "2015-03-18 23:09:04.070352"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "markucha_punk@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "markucha_punk@yahoo.com"], ["list_id", 1], ["name", "Marco"], ["last_name", "Antonio Moscoso Velarde"], ["created_at", "2015-03-18 23:09:04.086743"], ["updated_at", "2015-03-18 23:09:04.086743"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "debbie.imclick@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "debbie.imclick@gmail.com"], ["list_id", 1], ["name", "Debbie"], ["last_name", "Iglesias Muñoz"], ["created_at", "2015-03-18 23:09:04.095654"], ["updated_at", "2015-03-18 23:09:04.095654"]]  (3.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bjosiana@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bjosiana@yahoo.com.ar"], ["list_id", 1], ["name", "josiana"], ["last_name", "beain"], ["created_at", "2015-03-18 23:09:04.105249"], ["updated_at", "2015-03-18 23:09:04.105249"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iozoi_ra@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iozoi_ra@hotmail.com"], ["list_id", 1], ["name", "Leopoldo"], ["last_name", "Cuéllar Chávez"], ["created_at", "2015-03-18 23:09:04.114594"], ["updated_at", "2015-03-18 23:09:04.114594"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hemiparasito@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hemiparasito@gmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "M. Neely"], ["created_at", "2015-03-18 23:09:04.123586"], ["updated_at", "2015-03-18 23:09:04.123586"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariaorecart@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariaorecart@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Ossandón Recart"], ["created_at", "2015-03-18 23:09:04.137014"], ["updated_at", "2015-03-18 23:09:04.137014"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "martasimil@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "martasimil@gmail.com"], ["list_id", 1], ["name", "Marta"], ["last_name", "Hernandez Parraguez"], ["created_at", "2015-03-18 23:09:04.146126"], ["updated_at", "2015-03-18 23:09:04.146126"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tintomir@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tintomir@gmail.com"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Miranda G."], ["created_at", "2015-03-18 23:09:04.155683"], ["updated_at", "2015-03-18 23:09:04.155683"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macalvarado@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macalvarado@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Alvarado"], ["created_at", "2015-03-18 23:09:04.164196"], ["updated_at", "2015-03-18 23:09:04.164196"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodriguezlapuentefernandez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodriguezlapuentefernandez@gmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Francisca Rodríguez-Lapuente Ferná"], ["created_at", "2015-03-18 23:09:04.172532"], ["updated_at", "2015-03-18 23:09:04.172532"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yahveh-jire@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yahveh-jire@hotmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Francisca Rodríguez-Lapuente Ferná"], ["created_at", "2015-03-18 23:09:04.187287"], ["updated_at", "2015-03-18 23:09:04.187287"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "numeroquince@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "numeroquince@gmail.com"], ["list_id", 1], ["name", "catalina"], ["last_name", "osa"], ["created_at", "2015-03-18 23:09:04.196131"], ["updated_at", "2015-03-18 23:09:04.196131"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "numeroquince@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "numeroquince@hotmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Francisca Rodríguez-Lapuente Ferná"], ["created_at", "2015-03-18 23:09:04.204689"], ["updated_at", "2015-03-18 23:09:04.204689"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catalina_rosati@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catalina_rosati@hotmail.com"], ["list_id", 1], ["name", "catalina"], ["last_name", "rosati garcia"], ["created_at", "2015-03-18 23:09:04.213617"], ["updated_at", "2015-03-18 23:09:04.213617"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macapaztv@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macapaztv@hotmail.com"], ["list_id", 1], ["name", "macarena"], ["last_name", "troncozo barrientos"], ["created_at", "2015-03-18 23:09:04.223261"], ["updated_at", "2015-03-18 23:09:04.223261"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nemee_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nemee_@hotmail.com"], ["list_id", 1], ["name", "neme"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.237531"], ["updated_at", "2015-03-18 23:09:04.237531"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nemesio.orellana@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nemesio.orellana@gmail.com"], ["list_id", 1], ["name", "nemesio"], ["last_name", "orellana"], ["created_at", "2015-03-18 23:09:04.246280"], ["updated_at", "2015-03-18 23:09:04.246280"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Nancy.mansillaa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Nancy.mansillaa@gmail.com"], ["list_id", 1], ["name", "Nancy"], ["last_name", "Mansilla Alvarado"], ["created_at", "2015-03-18 23:09:04.255983"], ["updated_at", "2015-03-18 23:09:04.255983"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "g_fuenzlaida_u@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "g_fuenzlaida_u@hotmail.com"], ["list_id", 1], ["name", "Gustavo"], ["last_name", "Adolfo Fuenlida Ugalde"], ["created_at", "2015-03-18 23:09:04.264805"], ["updated_at", "2015-03-18 23:09:04.264805"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "g_fuenzalida_u@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "g_fuenzalida_u@hotmail.com"], ["list_id", 1], ["name", "gustavo"], ["last_name", "fuenzalida"], ["created_at", "2015-03-18 23:09:04.274103"], ["updated_at", "2015-03-18 23:09:04.274103"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ejluneck@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ejluneck@uc.cl"], ["list_id", 1], ["name", "Eileen"], ["last_name", "Lunecke"], ["created_at", "2015-03-18 23:09:04.286116"], ["updated_at", "2015-03-18 23:09:04.286116"]]  (3.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "feliash@showbeats.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "feliash@showbeats.cl"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Eliash"], ["created_at", "2015-03-18 23:09:04.295374"], ["updated_at", "2015-03-18 23:09:04.295374"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macapaztb@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macapaztb@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Troncozo Barrientos"], ["created_at", "2015-03-18 23:09:04.303359"], ["updated_at", "2015-03-18 23:09:04.303359"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amadorzuniga@hotmail.fr"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amadorzuniga@hotmail.fr"], ["list_id", 1], ["name", "carlos"], ["last_name", "antonio jara fuentes"], ["created_at", "2015-03-18 23:09:04.313245"], ["updated_at", "2015-03-18 23:09:04.313245"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rominarebolledo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rominarebolledo@hotmail.com"], ["list_id", 1], ["name", "Romina"], ["last_name", "Rebolledo"], ["created_at", "2015-03-18 23:09:04.322782"], ["updated_at", "2015-03-18 23:09:04.322782"]]  (4.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "micarod@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "micarod@gmail.com"], ["list_id", 1], ["name", "M."], ["last_name", "Inés Carod G."], ["created_at", "2015-03-18 23:09:04.335962"], ["updated_at", "2015-03-18 23:09:04.335962"]]  (14.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hjavibi@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hjavibi@hotmail.com"], ["list_id", 1], ["name", "Javier"], ["last_name", "Perea"], ["created_at", "2015-03-18 23:09:04.356722"], ["updated_at", "2015-03-18 23:09:04.356722"]]  (18.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mbueno54@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mbueno54@yahoo.es"], ["list_id", 1], ["name", "Mª"], ["last_name", "Angeles"], ["created_at", "2015-03-18 23:09:04.383841"], ["updated_at", "2015-03-18 23:09:04.383841"]]  (4.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "richard.pintura@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "richard.pintura@gmail.com"], ["list_id", 1], ["name", "Richard"], ["last_name", "Ramírez Cofré"], ["created_at", "2015-03-18 23:09:04.394857"], ["updated_at", "2015-03-18 23:09:04.394857"]]  (12.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ruben@rubendeluis.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ruben@rubendeluis.com"], ["list_id", 1], ["name", "Rubén"], ["last_name", "de Luis"], ["created_at", "2015-03-18 23:09:04.413238"], ["updated_at", "2015-03-18 23:09:04.413238"]]  (5.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "val_balmaceda@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "val_balmaceda@hotmail.com"], ["list_id", 1], ["name", "Val"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.425135"], ["updated_at", "2015-03-18 23:09:04.425135"]]  (5.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "conimedina@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "conimedina@gmail.com"], ["list_id", 1], ["name", "CONSTANZA"], ["last_name", "MEDINA"], ["created_at", "2015-03-18 23:09:04.436915"], ["updated_at", "2015-03-18 23:09:04.436915"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "disnois@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "disnois@gmail.com"], ["list_id", 1], ["name", "pamela"], ["last_name", "castillo"], ["created_at", "2015-03-18 23:09:04.446306"], ["updated_at", "2015-03-18 23:09:04.446306"]]  (19.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elirom_1555@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elirom_1555@hotmail.com"], ["list_id", 1], ["name", "elirom"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.472562"], ["updated_at", "2015-03-18 23:09:04.472562"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vilma.b.p@onda.com.br"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vilma.b.p@onda.com.br"], ["list_id", 1], ["name", "Vilma"], ["last_name", "Paessens"], ["created_at", "2015-03-18 23:09:04.486427"], ["updated_at", "2015-03-18 23:09:04.486427"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "e.romo.art@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "e.romo.art@gmail.com"], ["list_id", 1], ["name", "e.romo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.495090"], ["updated_at", "2015-03-18 23:09:04.495090"]]  (6.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "disnois@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "disnois@yahoo.com"], ["list_id", 1], ["name", "disnois"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.507860"], ["updated_at", "2015-03-18 23:09:04.507860"]]  (28.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paaulaanovoaa@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paaulaanovoaa@gmail.com"], ["list_id", 1], ["name", "paula"], ["last_name", "novoa"], ["created_at", "2015-03-18 23:09:04.543680"], ["updated_at", "2015-03-18 23:09:04.543680"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "deathdealer_96@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "deathdealer_96@hotmail.com"], ["list_id", 1], ["name", "Jènifer"], ["last_name", "Flores Morales"], ["created_at", "2015-03-18 23:09:04.553388"], ["updated_at", "2015-03-18 23:09:04.553388"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "die.rodriguez.perez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "die.rodriguez.perez@gmail.com"], ["list_id", 1], ["name", "Diego"], ["last_name", "Rodríguez Pérez"], ["created_at", "2015-03-18 23:09:04.563001"], ["updated_at", "2015-03-18 23:09:04.563001"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ipalacios@manquehue.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ipalacios@manquehue.net"], ["list_id", 1], ["name", "Ivonne"], ["last_name", "Palacios Parra"], ["created_at", "2015-03-18 23:09:04.571941"], ["updated_at", "2015-03-18 23:09:04.571941"]]  (55.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "silverstein_emo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "silverstein_emo@hotmail.com"], ["list_id", 1], ["name", "Enrique"], ["last_name", "Salinas Rodriguez"], ["created_at", "2015-03-18 23:09:04.633841"], ["updated_at", "2015-03-18 23:09:04.633841"]]  (22.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "CAFERESTOBAR.VALENTTINO@GMAIL.COM"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "CAFERESTOBAR.VALENTTINO@GMAIL.COM"], ["list_id", 1], ["name", "CLAUDIO"], ["last_name", "GALLEGUILLOS CORTES"], ["created_at", "2015-03-18 23:09:04.662716"], ["updated_at", "2015-03-18 23:09:04.662716"]]  (5.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mpepav@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mpepav@yahoo.es"], ["list_id", 1], ["name", "María"], ["last_name", "José"], ["created_at", "2015-03-18 23:09:04.674497"], ["updated_at", "2015-03-18 23:09:04.674497"]]  (4.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matto@tubatuba.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matto@tubatuba.net"], ["list_id", 1], ["name", "Matto"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.686597"], ["updated_at", "2015-03-18 23:09:04.686597"]]  (7.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablo.rivera.t@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablo.rivera.t@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Rivera"], ["created_at", "2015-03-18 23:09:04.699676"], ["updated_at", "2015-03-18 23:09:04.699676"]]  (48.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lucianagomez193@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lucianagomez193@hotmail.com"], ["list_id", 1], ["name", "luciana"], ["last_name", "gomez"], ["created_at", "2015-03-18 23:09:04.753907"], ["updated_at", "2015-03-18 23:09:04.753907"]]  (14.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@gabrielacornejo.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@gabrielacornejo.cl"], ["list_id", 1], ["name", "Gabriela"], ["last_name", "Cornejo García"], ["created_at", "2015-03-18 23:09:04.775999"], ["updated_at", "2015-03-18 23:09:04.775999"]]  (4.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "orlandito_galli@hotmail.com.ar"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "orlandito_galli@hotmail.com.ar"], ["list_id", 1], ["name", "chasco51"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.787601"], ["updated_at", "2015-03-18 23:09:04.787601"]]  (10.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "orlandito_galli@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "orlandito_galli@hotmail.com"], ["list_id", 1], ["name", "chasco510"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.804554"], ["updated_at", "2015-03-18 23:09:04.804554"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "loa.ojeda@blogspot.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "loa.ojeda@blogspot.com"], ["list_id", 1], ["name", "Loreto"], ["last_name", "Ojeda"], ["created_at", "2015-03-18 23:09:04.813245"], ["updated_at", "2015-03-18 23:09:04.813245"]]  (11.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amarupintor@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amarupintor@gmail.com"], ["list_id", 1], ["name", "Amaru"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.830986"], ["updated_at", "2015-03-18 23:09:04.830986"]]  (7.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daniela-sh@hotmail-DISABLED.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daniela-sh@hotmail-DISABLED.com"], ["list_id", 1], ["name", "daniela"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.844731"], ["updated_at", "2015-03-18 23:09:04.844731"]]  (13.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cmenal@vtr.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cmenal@vtr.net"], ["list_id", 1], ["name", "cata"], ["last_name", "mena"], ["created_at", "2015-03-18 23:09:04.867581"], ["updated_at", "2015-03-18 23:09:04.867581"]]  (81.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cmgeneraciondecontenidos@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cmgeneraciondecontenidos@gmail.com"], ["list_id", 1], ["name", "mena"], ["last_name", ""], ["created_at", "2015-03-18 23:09:04.955291"], ["updated_at", "2015-03-18 23:09:04.955291"]]  (26.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fotomorfosis@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fotomorfosis@gmail.com"], ["list_id", 1], ["name", "felipe"], ["last_name", "gamboa"], ["created_at", "2015-03-18 23:09:04.989985"], ["updated_at", "2015-03-18 23:09:04.989985"]]  (22.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "galactomari@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "galactomari@yahoo.com"], ["list_id", 1], ["name", "Mariela"], ["last_name", "Gonzalez Casanova"], ["created_at", "2015-03-18 23:09:05.018874"], ["updated_at", "2015-03-18 23:09:05.018874"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dplandiura@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dplandiura@yahoo.com.mx"], ["list_id", 1], ["name", "Sara"], ["last_name", "Viera"], ["created_at", "2015-03-18 23:09:05.027630"], ["updated_at", "2015-03-18 23:09:05.027630"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maxsepulvedaz@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maxsepulvedaz@gmail.com"], ["list_id", 1], ["name", "Max"], ["last_name", "Sepúlveda"], ["created_at", "2015-03-18 23:09:05.036446"], ["updated_at", "2015-03-18 23:09:05.036446"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "8ctopus@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "8ctopus@gmail.com"], ["list_id", 1], ["name", "J"], ["last_name", "Neuf"], ["created_at", "2015-03-18 23:09:05.051571"], ["updated_at", "2015-03-18 23:09:05.051571"]]  (19.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bythor@vtr.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bythor@vtr.net"], ["list_id", 1], ["name", "Manuel"], ["last_name", "Concha"], ["created_at", "2015-03-18 23:09:05.078189"], ["updated_at", "2015-03-18 23:09:05.078189"]]  (26.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mundorealmecanico@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mundorealmecanico@hotmail.com"], ["list_id", 1], ["name", "Laura"], ["last_name", "Virginia Santiago Araon"], ["created_at", "2015-03-18 23:09:05.111383"], ["updated_at", "2015-03-18 23:09:05.111383"]]  (4.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "halloweendenoche@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "halloweendenoche@hotmail.com"], ["list_id", 1], ["name", "Laura"], ["last_name", "Virginia Santiago Aragòn CIRCUS"], ["created_at", "2015-03-18 23:09:05.123067"], ["updated_at", "2015-03-18 23:09:05.123067"]]  (15.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mcostagui@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mcostagui@hotmail.com"], ["list_id", 1], ["name", "Mauricio"], ["last_name", "Costa Guilisasti"], ["created_at", "2015-03-18 23:09:05.145894"], ["updated_at", "2015-03-18 23:09:05.145894"]]  (20.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camilmontero@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camilmontero@gmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Montero"], ["created_at", "2015-03-18 23:09:05.173003"], ["updated_at", "2015-03-18 23:09:05.173003"]]  (4.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pmantilla74@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pmantilla74@gmail.com"], ["list_id", 1], ["name", "pato"], ["last_name", "mantilla"], ["created_at", "2015-03-18 23:09:05.183483"], ["updated_at", "2015-03-18 23:09:05.183483"]]  (6.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanpablo_arancibia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanpablo_arancibia@hotmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Pablo Arancibia"], ["created_at", "2015-03-18 23:09:05.196016"], ["updated_at", "2015-03-18 23:09:05.196016"]]  (16.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diazbaeza123@mi.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diazbaeza123@mi.cl"], ["list_id", 1], ["name", "Marcela"], ["last_name", "Díaz Baeza"], ["created_at", "2015-03-18 23:09:05.218809"], ["updated_at", "2015-03-18 23:09:05.218809"]]  (19.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "blank_10@live.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "blank_10@live.com"], ["list_id", 1], ["name", "sebajork"], ["last_name", ""], ["created_at", "2015-03-18 23:09:05.244808"], ["updated_at", "2015-03-18 23:09:05.244808"]]  (12.4ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablo.salamandra@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablo.salamandra@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Araneda"], ["created_at", "2015-03-18 23:09:05.348421"], ["updated_at", "2015-03-18 23:09:05.348421"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rauldinizio56@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rauldinizio56@hotmail.com"], ["list_id", 1], ["name", "Raúl"], ["last_name", "Dinizio Román"], ["created_at", "2015-03-18 23:09:05.358068"], ["updated_at", "2015-03-18 23:09:05.358068"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macapaztb@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macapaztb@hotmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Paz Troncoso Barrientos"], ["created_at", "2015-03-18 23:09:05.367362"], ["updated_at", "2015-03-18 23:09:05.367362"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leandro.campillay@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leandro.campillay@gmail.com"], ["list_id", 1], ["name", "Leandro"], ["last_name", "Campillay Espinoza"], ["created_at", "2015-03-18 23:09:05.376724"], ["updated_at", "2015-03-18 23:09:05.376724"]]  (6.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juniordeoro@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juniordeoro@hotmail.com"], ["list_id", 1], ["name", "jesus"], ["last_name", ""], ["created_at", "2015-03-18 23:09:05.389545"], ["updated_at", "2015-03-18 23:09:05.389545"]]  (9.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camariwi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camariwi@gmail.com"], ["list_id", 1], ["name", "sofía"], ["last_name", ""], ["created_at", "2015-03-18 23:09:05.404631"], ["updated_at", "2015-03-18 23:09:05.404631"]]  (7.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paz.rios@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paz.rios@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Ángel Paz Ríos"], ["created_at", "2015-03-18 23:09:05.418548"], ["updated_at", "2015-03-18 23:09:05.418548"]]  (4.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pas.rios@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pas.rios@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Paz Ríos"], ["created_at", "2015-03-18 23:09:05.428579"], ["updated_at", "2015-03-18 23:09:05.428579"]]  (17.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "susnahmias@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "susnahmias@hotmail.com"], ["list_id", 1], ["name", "Susana"], ["last_name", "Nahmias"], ["created_at", "2015-03-18 23:09:05.452390"], ["updated_at", "2015-03-18 23:09:05.452390"]]  (9.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sarangello@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sarangello@hotmail.com"], ["list_id", 1], ["name", "SARANGELLO"], ["last_name", "RAQUEL"], ["created_at", "2015-03-18 23:09:05.467873"], ["updated_at", "2015-03-18 23:09:05.467873"]]  (4.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sarangello@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sarangello@gmail.com"], ["list_id", 1], ["name", "Raquel"], ["last_name", "Sarangello"], ["created_at", "2015-03-18 23:09:05.478263"], ["updated_at", "2015-03-18 23:09:05.478263"]]  (4.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eveartes@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eveartes@gmail.com"], ["list_id", 1], ["name", "evelyn"], ["last_name", "san juan"], ["created_at", "2015-03-18 23:09:05.489745"], ["updated_at", "2015-03-18 23:09:05.489745"]]  (33.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "HOLIMX@GMAIL.COM"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "HOLIMX@GMAIL.COM"], ["list_id", 1], ["name", "ISAAC"], ["last_name", "HOLOSCHUTZ"], ["created_at", "2015-03-18 23:09:05.529793"], ["updated_at", "2015-03-18 23:09:05.529793"]]  (14.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "conigazmuri@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "conigazmuri@hotmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Gazmuri Lyon"], ["created_at", "2015-03-18 23:09:05.550691"], ["updated_at", "2015-03-18 23:09:05.550691"]]  (17.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "acciondepulsar@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "acciondepulsar@gmail.com"], ["list_id", 1], ["name", "fUcKiNgToYs!!!"], ["last_name", ""], ["created_at", "2015-03-18 23:09:05.575176"], ["updated_at", "2015-03-18 23:09:05.575176"]]  (14.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "myriam.martinez@ec.europa.eu"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "myriam.martinez@ec.europa.eu"], ["list_id", 1], ["name", "martínez"], ["last_name", "barbón, myriam"], ["created_at", "2015-03-18 23:09:05.597985"], ["updated_at", "2015-03-18 23:09:05.597985"]]  (14.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tragasalivablog@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tragasalivablog@gmail.com"], ["list_id", 1], ["name", "nicolas"], ["last_name", "venegas"], ["created_at", "2015-03-18 23:09:05.619833"], ["updated_at", "2015-03-18 23:09:05.619833"]]  (14.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jesusjansana@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jesusjansana@gmail.com"], ["list_id", 1], ["name", "Jesús"], ["last_name", "González Jansana"], ["created_at", "2015-03-18 23:09:05.641111"], ["updated_at", "2015-03-18 23:09:05.641111"]]  (8.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hombrequeselevoloelmate@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hombrequeselevoloelmate@gmail.com"], ["list_id", 1], ["name", "peli"], ["last_name", ""], ["created_at", "2015-03-18 23:09:05.656558"], ["updated_at", "2015-03-18 23:09:05.656558"]]  (15.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marita_jesus@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marita_jesus@hotmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Jesus Gonzalez Martinez"], ["created_at", "2015-03-18 23:09:05.678883"], ["updated_at", "2015-03-18 23:09:05.678883"]]  (20.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulillanten@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulillanten@gmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Llanten"], ["created_at", "2015-03-18 23:09:05.705065"], ["updated_at", "2015-03-18 23:09:05.705065"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "acuario_30_24@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "acuario_30_24@hotmail.com"], ["list_id", 1], ["name", "zoe"], ["last_name", ""], ["created_at", "2015-03-18 23:09:05.714448"], ["updated_at", "2015-03-18 23:09:05.714448"]]  (9.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marlafreire07@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marlafreire07@gmail.com"], ["list_id", 1], ["name", "Marla"], ["last_name", "Freire"], ["created_at", "2015-03-18 23:09:05.730068"], ["updated_at", "2015-03-18 23:09:05.730068"]]  (19.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fbnagel@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fbnagel@gmail.com"], ["list_id", 1], ["name", "FBN"], ["last_name", ""], ["created_at", "2015-03-18 23:09:05.755188"], ["updated_at", "2015-03-18 23:09:05.755188"]]  (15.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "frydahvelazquez@live.com.mx"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "frydahvelazquez@live.com.mx"], ["list_id", 1], ["name", "::::::::::::.((((O_o)))))))))))):::::::"], ["last_name", ""], ["created_at", "2015-03-18 23:09:05.778142"], ["updated_at", "2015-03-18 23:09:05.778142"]]  (22.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristiankirby@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristiankirby@gmail.com"], ["list_id", 1], ["name", "cristian"], ["last_name", "kirby"], ["created_at", "2015-03-18 23:09:05.808365"], ["updated_at", "2015-03-18 23:09:05.808365"]]  (15.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "piaurmeneta@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "piaurmeneta@gmail.com"], ["list_id", 1], ["name", "Pía"], ["last_name", "Urmeneta"], ["created_at", "2015-03-18 23:09:05.830976"], ["updated_at", "2015-03-18 23:09:05.830976"]]  (11.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "escobardechile@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "escobardechile@gmail.com"], ["list_id", 1], ["name", "Álvaro"], ["last_name", "Escobar"], ["created_at", "2015-03-18 23:09:05.848974"], ["updated_at", "2015-03-18 23:09:05.848974"]]  (8.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antonia.isaacson@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antonia.isaacson@gmail.com"], ["list_id", 1], ["name", "antonia"], ["last_name", "isaacson labarthe"], ["created_at", "2015-03-18 23:09:05.867102"], ["updated_at", "2015-03-18 23:09:05.867102"]]  (11.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marianojaviermarcos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marianojaviermarcos@gmail.com"], ["list_id", 1], ["name", "Mariano"], ["last_name", "Javier Marcos"], ["created_at", "2015-03-18 23:09:05.884537"], ["updated_at", "2015-03-18 23:09:05.884537"]]  (16.0ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "regle.com@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "regle.com@gmail.com"], ["list_id", 1], ["name", "soluciones"], ["last_name", "informaticas"], ["created_at", "2015-03-18 23:09:05.906346"], ["updated_at", "2015-03-18 23:09:05.906346"]]  (10.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "escultor@alfonsoperezplaza.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "escultor@alfonsoperezplaza.es"], ["list_id", 1], ["name", "Alfonso"], ["last_name", "Pérez Plaza"], ["created_at", "2015-03-18 23:09:05.922277"], ["updated_at", "2015-03-18 23:09:05.922277"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "infoarte0@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "infoarte0@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Verdel"], ["created_at", "2015-03-18 23:09:05.932380"], ["updated_at", "2015-03-18 23:09:05.932380"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "galeriacallejera@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "galeriacallejera@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Rojas Schwartz"], ["created_at", "2015-03-18 23:09:05.942371"], ["updated_at", "2015-03-18 23:09:05.942371"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "la.heviag@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "la.heviag@gmail.com"], ["list_id", 1], ["name", "luis"], ["last_name", "arturo hevia garcia"], ["created_at", "2015-03-18 23:09:05.952773"], ["updated_at", "2015-03-18 23:09:05.952773"]]  (5.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nataliabarrueto@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nataliabarrueto@hotmail.com"], ["list_id", 1], ["name", "Natalia"], ["last_name", "Barrueto"], ["created_at", "2015-03-18 23:09:05.966065"], ["updated_at", "2015-03-18 23:09:05.966065"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nataliabarrueto@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nataliabarrueto@gmail.com"], ["list_id", 1], ["name", "Natalia"], ["last_name", "Barrueto Arjona"], ["created_at", "2015-03-18 23:09:05.975816"], ["updated_at", "2015-03-18 23:09:05.975816"]]  (29.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "invunche@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "invunche@hotmail.com"], ["list_id", 1], ["name", "maría"], ["last_name", "Elena Retamal ruiz"], ["created_at", "2015-03-18 23:09:06.013013"], ["updated_at", "2015-03-18 23:09:06.013013"]]  (3.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lagos30_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lagos30_@hotmail.com"], ["list_id", 1], ["name", "cristian"], ["last_name", "lagos"], ["created_at", "2015-03-18 23:09:06.022626"], ["updated_at", "2015-03-18 23:09:06.022626"]]  (20.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pedropablo797@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pedropablo797@gmail.com"], ["list_id", 1], ["name", "Pedro"], ["last_name", "Pablo Bustos Beltran"], ["created_at", "2015-03-18 23:09:06.050395"], ["updated_at", "2015-03-18 23:09:06.050395"]]  (5.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ivanpawluk@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ivanpawluk@hotmail.com"], ["list_id", 1], ["name", "Ivan"], ["last_name", "Pawluk"], ["created_at", "2015-03-18 23:09:06.066611"], ["updated_at", "2015-03-18 23:09:06.066611"]]  (5.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ANIMIRANDA@MIRANDAQUIROZ.CL"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ANIMIRANDA@MIRANDAQUIROZ.CL"], ["list_id", 1], ["name", "MIRANDA"], ["last_name", "QUIROZ"], ["created_at", "2015-03-18 23:09:06.078007"], ["updated_at", "2015-03-18 23:09:06.078007"]]  (16.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "debbie.imclick@gmail.co"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "debbie.imclick@gmail.co"], ["list_id", 1], ["name", "Debbie"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.101074"], ["updated_at", "2015-03-18 23:09:06.101074"]]  (6.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luchiledesma@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luchiledesma@gmail.com"], ["list_id", 1], ["name", "lucia"], ["last_name", "ledesma"], ["created_at", "2015-03-18 23:09:06.116592"], ["updated_at", "2015-03-18 23:09:06.116592"]]  (16.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "grullademetal@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "grullademetal@yahoo.com"], ["list_id", 1], ["name", "mariela"], ["last_name", "gonzalez casanova"], ["created_at", "2015-03-18 23:09:06.140381"], ["updated_at", "2015-03-18 23:09:06.140381"]]  (4.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "grullademetal@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "grullademetal@hotmail.com"], ["list_id", 1], ["name", "Mariela"], ["last_name", "González Casanova"], ["created_at", "2015-03-18 23:09:06.151557"], ["updated_at", "2015-03-18 23:09:06.151557"]]  (10.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "frydaenlaluna@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "frydaenlaluna@hotmail.com"], ["list_id", 1], ["name", "fryda"], ["last_name", "Alina herrEra VeläzqueZ"], ["created_at", "2015-03-18 23:09:06.168194"], ["updated_at", "2015-03-18 23:09:06.168194"]]  (5.3ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ella_happy_mom@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ella_happy_mom@yahoo.com"], ["list_id", 1], ["name", "Gabriela"], ["last_name", "Ene rusu"], ["created_at", "2015-03-18 23:09:06.179236"], ["updated_at", "2015-03-18 23:09:06.179236"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alejandra-aranda@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alejandra-aranda@hotmail.com"], ["list_id", 1], ["name", "ALEJANDRA"], ["last_name", "ARANDA"], ["created_at", "2015-03-18 23:09:06.189409"], ["updated_at", "2015-03-18 23:09:06.189409"]]  (18.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "relapse25@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "relapse25@hotmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Luis Duque Castro"], ["created_at", "2015-03-18 23:09:06.215098"], ["updated_at", "2015-03-18 23:09:06.215098"]]  (12.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "adrianalanni@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "adrianalanni@gmail.com"], ["list_id", 1], ["name", "Adriana"], ["last_name", "Lanni"], ["created_at", "2015-03-18 23:09:06.234184"], ["updated_at", "2015-03-18 23:09:06.234184"]]  (20.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "davidlazzuri@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "davidlazzuri@hotmail.com"], ["list_id", 1], ["name", "David"], ["last_name", "Lazzuri"], ["created_at", "2015-03-18 23:09:06.263539"], ["updated_at", "2015-03-18 23:09:06.263539"]]  (7.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luisengranajes@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luisengranajes@gmail.com"], ["list_id", 1], ["name", "shn2"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.277532"], ["updated_at", "2015-03-18 23:09:06.277532"]]  (19.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "balaconalasdemaripoza@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "balaconalasdemaripoza@hotmail.com"], ["list_id", 1], ["name", "Manzana"], ["last_name", "Podrida"], ["created_at", "2015-03-18 23:09:06.303597"], ["updated_at", "2015-03-18 23:09:06.303597"]]  (15.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gestiondearte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gestiondearte@gmail.com"], ["list_id", 1], ["name", "Rosario"], ["last_name", "Martinez"], ["created_at", "2015-03-18 23:09:06.327116"], ["updated_at", "2015-03-18 23:09:06.327116"]]  (22.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pequisbaldo@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pequisbaldo@yahoo.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Riquelme"], ["created_at", "2015-03-18 23:09:06.355808"], ["updated_at", "2015-03-18 23:09:06.355808"]]  (15.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dapavie@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dapavie@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.378691"], ["updated_at", "2015-03-18 23:09:06.378691"]]  (19.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sonicnou@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sonicnou@hotmail.com"], ["list_id", 1], ["name", "Al"], ["last_name", "Batt"], ["created_at", "2015-03-18 23:09:06.405423"], ["updated_at", "2015-03-18 23:09:06.405423"]]  (3.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ceravan@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ceravan@gmail.com"], ["list_id", 1], ["name", "César"], ["last_name", "Ravanal"], ["created_at", "2015-03-18 23:09:06.416240"], ["updated_at", "2015-03-18 23:09:06.416240"]]  (11.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "moniqueodilup@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "moniqueodilup@hotmail.com"], ["list_id", 1], ["name", "MoNica"], ["last_name", "Pulido"], ["created_at", "2015-03-18 23:09:06.434448"], ["updated_at", "2015-03-18 23:09:06.434448"]]  (10.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "picturesquee@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "picturesquee@gmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Domínguez"], ["created_at", "2015-03-18 23:09:06.453029"], ["updated_at", "2015-03-18 23:09:06.453029"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "torregar@msn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "torregar@msn.com"], ["list_id", 1], ["name", "Torregar"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.465916"], ["updated_at", "2015-03-18 23:09:06.465916"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "feliperios@anuarioarte.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "feliperios@anuarioarte.com"], ["list_id", 1], ["name", "felipe"], ["last_name", "rios"], ["created_at", "2015-03-18 23:09:06.475038"], ["updated_at", "2015-03-18 23:09:06.475038"]]  (7.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cabobasualto@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cabobasualto@hotmail.com"], ["list_id", 1], ["name", "americo"], ["last_name", "basualto"], ["created_at", "2015-03-18 23:09:06.488357"], ["updated_at", "2015-03-18 23:09:06.488357"]]  (16.5ms) commit transaction Postino::Subscriber Load (2.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "decomosaico@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "decomosaico@gmail.com"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Urbina Gajardo"], ["created_at", "2015-03-18 23:09:06.514833"], ["updated_at", "2015-03-18 23:09:06.514833"]]  (12.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artefranka@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artefranka@gmail.com"], ["list_id", 1], ["name", "Franka"], ["last_name", "Reitze"], ["created_at", "2015-03-18 23:09:06.534182"], ["updated_at", "2015-03-18 23:09:06.534182"]]  (20.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "difusionnar@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "difusionnar@gmail.com"], ["list_id", 1], ["name", "N.A.R."], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.562466"], ["updated_at", "2015-03-18 23:09:06.562466"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bernabecarrasco@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bernabecarrasco@hotmail.com"], ["list_id", 1], ["name", "bernabe"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.571388"], ["updated_at", "2015-03-18 23:09:06.571388"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "locodelspace@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "locodelspace@hotmail.com"], ["list_id", 1], ["name", "erico"], ["last_name", "eserico"], ["created_at", "2015-03-18 23:09:06.580440"], ["updated_at", "2015-03-18 23:09:06.580440"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "virgi@mi.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "virgi@mi.cl"], ["list_id", 1], ["name", "virginia"], ["last_name", "gregorcic"], ["created_at", "2015-03-18 23:09:06.589552"], ["updated_at", "2015-03-18 23:09:06.589552"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diegone8@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diegone8@hotmail.com"], ["list_id", 1], ["name", "Diego"], ["last_name", "Estrada"], ["created_at", "2015-03-18 23:09:06.597371"], ["updated_at", "2015-03-18 23:09:06.597371"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cat.murua@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cat.murua@gmail.com"], ["list_id", 1], ["name", "Kristán"], ["last_name", "tomurú"], ["created_at", "2015-03-18 23:09:06.614203"], ["updated_at", "2015-03-18 23:09:06.614203"]]  (9.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marielajhs@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marielajhs@gmail.com"], ["list_id", 1], ["name", "Mariela"], ["last_name", "Herrera"], ["created_at", "2015-03-18 23:09:06.629421"], ["updated_at", "2015-03-18 23:09:06.629421"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vivian_javiera@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vivian_javiera@hotmail.com"], ["list_id", 1], ["name", "Vivian"], ["last_name", "Castro"], ["created_at", "2015-03-18 23:09:06.638173"], ["updated_at", "2015-03-18 23:09:06.638173"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daghero.g@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daghero.g@gmail.com"], ["list_id", 1], ["name", "guillermo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.647224"], ["updated_at", "2015-03-18 23:09:06.647224"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vicentemartisolar@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vicentemartisolar@gmail.com"], ["list_id", 1], ["name", "Vicente"], ["last_name", "Marti Solar"], ["created_at", "2015-03-18 23:09:06.664471"], ["updated_at", "2015-03-18 23:09:06.664471"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "woosioux@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "woosioux@hotmail.com"], ["list_id", 1], ["name", "rosamenta"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.673211"], ["updated_at", "2015-03-18 23:09:06.673211"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alecruzsuber@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alecruzsuber@hotmail.com"], ["list_id", 1], ["name", "Alejandra"], ["last_name", "Cruz"], ["created_at", "2015-03-18 23:09:06.681775"], ["updated_at", "2015-03-18 23:09:06.681775"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lia@liag.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lia@liag.es"], ["list_id", 1], ["name", "Lía"], ["last_name", "G."], ["created_at", "2015-03-18 23:09:06.691124"], ["updated_at", "2015-03-18 23:09:06.691124"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "thefrenesis@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "thefrenesis@gmail.com"], ["list_id", 1], ["name", "No"], ["last_name", "hya nada"], ["created_at", "2015-03-18 23:09:06.699831"], ["updated_at", "2015-03-18 23:09:06.699831"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arrebol_ar@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arrebol_ar@hotmail.com"], ["list_id", 1], ["name", "Isabel"], ["last_name", "Santibañez"], ["created_at", "2015-03-18 23:09:06.714735"], ["updated_at", "2015-03-18 23:09:06.714735"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "OndaHalFoster@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "OndaHalFoster@gmail.com"], ["list_id", 1], ["name", "OndaHalFoster"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.723857"], ["updated_at", "2015-03-18 23:09:06.723857"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "klefvas@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "klefvas@yahoo.com.ar"], ["list_id", 1], ["name", "Kléver"], ["last_name", "Vásquez"], ["created_at", "2015-03-18 23:09:06.732178"], ["updated_at", "2015-03-18 23:09:06.732178"]]  (6.4ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vafe22@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vafe22@gmail.com"], ["list_id", 1], ["name", "andrea"], ["last_name", "f."], ["created_at", "2015-03-18 23:09:06.744487"], ["updated_at", "2015-03-18 23:09:06.744487"]]  (5.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xfleck@yahoo.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xfleck@yahoo.com"], ["list_id", 1], ["name", "Ximena"], ["last_name", "Fleck Lavergne"], ["created_at", "2015-03-18 23:09:06.756023"], ["updated_at", "2015-03-18 23:09:06.756023"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mixeliart@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mixeliart@gmail.com"], ["list_id", 1], ["name", "MIXELIART"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.766083"], ["updated_at", "2015-03-18 23:09:06.766083"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulomeyervalenzuela@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulomeyervalenzuela@gmail.com"], ["list_id", 1], ["name", "Paulo"], ["last_name", "Meyer Valenzuela"], ["created_at", "2015-03-18 23:09:06.774600"], ["updated_at", "2015-03-18 23:09:06.774600"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dharma.member@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dharma.member@gmail.com"], ["list_id", 1], ["name", "Sebastián"], ["last_name", "Fernández"], ["created_at", "2015-03-18 23:09:06.783260"], ["updated_at", "2015-03-18 23:09:06.783260"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elizabmarin@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elizabmarin@gmail.com"], ["list_id", 1], ["name", "fridha"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.792065"], ["updated_at", "2015-03-18 23:09:06.792065"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@arteyjoyeria.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@arteyjoyeria.com"], ["list_id", 1], ["name", "Lilia"], ["last_name", "Quintero"], ["created_at", "2015-03-18 23:09:06.801023"], ["updated_at", "2015-03-18 23:09:06.801023"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nomade@espora.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nomade@espora.cl"], ["list_id", 1], ["name", "Luis"], ["last_name", "Iturra"], ["created_at", "2015-03-18 23:09:06.814672"], ["updated_at", "2015-03-18 23:09:06.814672"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cyantallerdegrabado@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cyantallerdegrabado@gmail.com"], ["list_id", 1], ["name", "cyan"], ["last_name", "taller de grabado"], ["created_at", "2015-03-18 23:09:06.823676"], ["updated_at", "2015-03-18 23:09:06.823676"]]  (3.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "j.salas.e@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "j.salas.e@gmail.com"], ["list_id", 1], ["name", "cano"], ["last_name", "salas"], ["created_at", "2015-03-18 23:09:06.833060"], ["updated_at", "2015-03-18 23:09:06.833060"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "poppyfamilyosland@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "poppyfamilyosland@gmail.com"], ["list_id", 1], ["name", "Leo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.841891"], ["updated_at", "2015-03-18 23:09:06.841891"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "poppyfamilyisland@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "poppyfamilyisland@gmail.com"], ["list_id", 1], ["name", "LeonardoPartridge"], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.850017"], ["updated_at", "2015-03-18 23:09:06.850017"]]  (5.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "piposiroco@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "piposiroco@hotmail.com"], ["list_id", 1], ["name", "\"siroco\""], ["last_name", ""], ["created_at", "2015-03-18 23:09:06.863625"], ["updated_at", "2015-03-18 23:09:06.863625"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcia.cuevas@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcia.cuevas@gmail.com"], ["list_id", 1], ["name", "Marcia"], ["last_name", "Cuevas"], ["created_at", "2015-03-18 23:09:06.872459"], ["updated_at", "2015-03-18 23:09:06.872459"]]  (2.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "telefunken.superheterodyne@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "telefunken.superheterodyne@gmail.com"], ["list_id", 1], ["name", "Diego"], ["last_name", "Salinas"], ["created_at", "2015-03-18 23:09:06.881931"], ["updated_at", "2015-03-18 23:09:06.881931"]]  (2.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "turquesa777_7@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "turquesa777_7@hotmail.com"], ["list_id", 1], ["name", "Patricia"], ["last_name", "Rodriguez"], ["created_at", "2015-03-18 23:09:06.889925"], ["updated_at", "2015-03-18 23:09:06.889925"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daniella.gutierrez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daniella.gutierrez@gmail.com"], ["list_id", 1], ["name", "Daniella"], ["last_name", "Gutiérrez Paviolo"], ["created_at", "2015-03-18 23:09:06.898739"], ["updated_at", "2015-03-18 23:09:06.898739"]]  (6.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mhuertarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mhuertarte@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Ángel Huerta Zuñiga"], ["created_at", "2015-03-18 23:09:06.913685"], ["updated_at", "2015-03-18 23:09:06.913685"]]  (24.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "illanes_26@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "illanes_26@hotmail.com"], ["list_id", 1], ["name", "Sebastián"], ["last_name", "Illanes"], ["created_at", "2015-03-18 23:09:06.944664"], ["updated_at", "2015-03-18 23:09:06.944664"]]  (9.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "GTPATO@HOTMAIL.COM"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "GTPATO@HOTMAIL.COM"], ["list_id", 1], ["name", "OBRAS"], ["last_name", "DE ARTE"], ["created_at", "2015-03-18 23:09:06.964700"], ["updated_at", "2015-03-18 23:09:06.964700"]]  (29.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camila.e.v@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camila.e.v@gmail.com"], ["list_id", 1], ["name", "CamilaEscobarV"], ["last_name", ""], ["created_at", "2015-03-18 23:09:07.000004"], ["updated_at", "2015-03-18 23:09:07.000004"]]  (27.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artealby@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artealby@gmail.com"], ["list_id", 1], ["name", "www.geralby.com"], ["last_name", ""], ["created_at", "2015-03-18 23:09:07.033344"], ["updated_at", "2015-03-18 23:09:07.033344"]]  (21.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodotallador@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodotallador@hotmail.com"], ["list_id", 1], ["name", "rodolfo"], ["last_name", "zepeda h"], ["created_at", "2015-03-18 23:09:07.062335"], ["updated_at", "2015-03-18 23:09:07.062335"]]  (13.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "renzocalderonh@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "renzocalderonh@yahoo.es"], ["list_id", 1], ["name", "renzo"], ["last_name", "calderon"], ["created_at", "2015-03-18 23:09:07.082536"], ["updated_at", "2015-03-18 23:09:07.082536"]]  (17.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastianmejiaphoto@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastianmejiaphoto@gmail.com"], ["list_id", 1], ["name", "Sebastian"], ["last_name", "Mejia"], ["created_at", "2015-03-18 23:09:07.106643"], ["updated_at", "2015-03-18 23:09:07.106643"]]  (10.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastianmejiaphoto@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastianmejiaphoto@hotmail.com"], ["list_id", 1], ["name", "Sebastian"], ["last_name", "Mejia Castilla"], ["created_at", "2015-03-18 23:09:07.125159"], ["updated_at", "2015-03-18 23:09:07.125159"]]  (13.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danielafu@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danielafu@gmail.com"], ["list_id", 1], ["name", "daf"], ["last_name", ""], ["created_at", "2015-03-18 23:09:07.145966"], ["updated_at", "2015-03-18 23:09:07.145966"]]  (47.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alberto.leal50@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alberto.leal50@hotmail.com"], ["list_id", 1], ["name", "alberto"], ["last_name", ""], ["created_at", "2015-03-18 23:09:07.200477"], ["updated_at", "2015-03-18 23:09:07.200477"]]  (21.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gennusnativa@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gennusnativa@hotmail.com"], ["list_id", 1], ["name", "Romina"], ["last_name", "Figueroa"], ["created_at", "2015-03-18 23:09:07.229406"], ["updated_at", "2015-03-18 23:09:07.229406"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "retratosariel@gmail.com"]]  (0.1ms) begin transaction SQL (1.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "retratosariel@gmail.com"], ["list_id", 1], ["name", "Ariel"], ["last_name", "Quiroz"], ["created_at", "2015-03-18 23:09:07.239087"], ["updated_at", "2015-03-18 23:09:07.239087"]]  (723.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mbrandans@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mbrandans@gmail.com"], ["list_id", 1], ["name", "Montserrat"], ["last_name", "Brandan"], ["created_at", "2015-03-18 23:09:07.972197"], ["updated_at", "2015-03-18 23:09:07.972197"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "uder24@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "uder24@hotmail.com"], ["list_id", 1], ["name", "Castro"], ["last_name", ""], ["created_at", "2015-03-18 23:09:07.981867"], ["updated_at", "2015-03-18 23:09:07.981867"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "uder2024@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "uder2024@gmail.com"], ["list_id", 1], ["name", "Darwin"], ["last_name", ""], ["created_at", "2015-03-18 23:09:07.990987"], ["updated_at", "2015-03-18 23:09:07.990987"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artefacto00@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artefacto00@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Ramos"], ["created_at", "2015-03-18 23:09:07.999453"], ["updated_at", "2015-03-18 23:09:07.999453"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablo.ver@hotmail.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablo.ver@hotmail.es"], ["list_id", 1], ["name", "pablo"], ["last_name", "vergara"], ["created_at", "2015-03-18 23:09:08.008053"], ["updated_at", "2015-03-18 23:09:08.008053"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "malechahin@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "malechahin@gmail.com"], ["list_id", 1], ["name", "Magdalena"], ["last_name", "Chahin"], ["created_at", "2015-03-18 23:09:08.028849"], ["updated_at", "2015-03-18 23:09:08.028849"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fabrizzio@fdangelo.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fabrizzio@fdangelo.cl"], ["list_id", 1], ["name", "Fabrizzio"], ["last_name", "D'Angelo"], ["created_at", "2015-03-18 23:09:08.037394"], ["updated_at", "2015-03-18 23:09:08.037394"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "galeriabon@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "galeriabon@gmail.com"], ["list_id", 1], ["name", "Fabrizzio"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.045597"], ["updated_at", "2015-03-18 23:09:08.045597"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "shavialli@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "shavialli@gmail.com"], ["list_id", 1], ["name", "Shavi"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.054457"], ["updated_at", "2015-03-18 23:09:08.054457"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "roberto@super45.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "roberto@super45.cl"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Doveris"], ["created_at", "2015-03-18 23:09:08.063486"], ["updated_at", "2015-03-18 23:09:08.063486"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "akira_5989@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "akira_5989@hotmail.com"], ["list_id", 1], ["name", "suxzy"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.077452"], ["updated_at", "2015-03-18 23:09:08.077452"]]  (2.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jorquera.venjamin@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jorquera.venjamin@gmail.com"], ["list_id", 1], ["name", "venjamin"], ["last_name", "jorquera"], ["created_at", "2015-03-18 23:09:08.085578"], ["updated_at", "2015-03-18 23:09:08.085578"]]  (1.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anotherwuorld99@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anotherwuorld99@hotmail.com"], ["list_id", 1], ["name", "jose"], ["last_name", "Israel Diaz Rodriguez"], ["created_at", "2015-03-18 23:09:08.093364"], ["updated_at", "2015-03-18 23:09:08.093364"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kristodulakis@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kristodulakis@yahoo.com.ar"], ["list_id", 1], ["name", "kristodulakis"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.102159"], ["updated_at", "2015-03-18 23:09:08.102159"]]  (4.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yadira182004@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yadira182004@yahoo.es"], ["list_id", 1], ["name", "Yadira"], ["last_name", "Gallegos Abedrabbo"], ["created_at", "2015-03-18 23:09:08.112919"], ["updated_at", "2015-03-18 23:09:08.112919"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mmmontes@telecentro.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mmmontes@telecentro.com.ar"], ["list_id", 1], ["name", "Mariela"], ["last_name", "Monica Montes"], ["created_at", "2015-03-18 23:09:08.127183"], ["updated_at", "2015-03-18 23:09:08.127183"]]  (15.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@galeriaboutique.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@galeriaboutique.cl"], ["list_id", 1], ["name", "Laura"], ["last_name", "Gil Flood"], ["created_at", "2015-03-18 23:09:08.148943"], ["updated_at", "2015-03-18 23:09:08.148943"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "doctortanqueray@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "doctortanqueray@hotmail.com"], ["list_id", 1], ["name", "daniel"], ["last_name", "celada"], ["created_at", "2015-03-18 23:09:08.158779"], ["updated_at", "2015-03-18 23:09:08.158779"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hazorbajhazard@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hazorbajhazard@gmail.com"], ["list_id", 1], ["name", "Antonio"], ["last_name", "Berrodagua"], ["created_at", "2015-03-18 23:09:08.179622"], ["updated_at", "2015-03-18 23:09:08.179622"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nicolascaballero@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nicolascaballero@gmail.com"], ["list_id", 1], ["name", "nicolas"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.188915"], ["updated_at", "2015-03-18 23:09:08.188915"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macarranzafue@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macarranzafue@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Carranza"], ["created_at", "2015-03-18 23:09:08.197256"], ["updated_at", "2015-03-18 23:09:08.197256"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lesisti@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lesisti@hotmail.com"], ["list_id", 1], ["name", "lesistifranz"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.205910"], ["updated_at", "2015-03-18 23:09:08.205910"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristina.faleroni@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristina.faleroni@gmail.com"], ["list_id", 1], ["name", "MARIA"], ["last_name", "CRISTINA FALERONI"], ["created_at", "2015-03-18 23:09:08.214592"], ["updated_at", "2015-03-18 23:09:08.214592"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "acusticaisabel@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "acusticaisabel@gmail.com"], ["list_id", 1], ["name", "Isabelmargarita"], ["last_name", "Santibañez"], ["created_at", "2015-03-18 23:09:08.228215"], ["updated_at", "2015-03-18 23:09:08.228215"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "netracol@vtr.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "netracol@vtr.net"], ["list_id", 1], ["name", "German"], ["last_name", "Guerra G."], ["created_at", "2015-03-18 23:09:08.237024"], ["updated_at", "2015-03-18 23:09:08.237024"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bernardita.hk@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bernardita.hk@gmail.com"], ["list_id", 1], ["name", "Bernardita"], ["last_name", "Herrera K"], ["created_at", "2015-03-18 23:09:08.245710"], ["updated_at", "2015-03-18 23:09:08.245710"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "motorjaz@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "motorjaz@gmail.com"], ["list_id", 1], ["name", "Jacinta"], ["last_name", "Kaiser"], ["created_at", "2015-03-18 23:09:08.254454"], ["updated_at", "2015-03-18 23:09:08.254454"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mabelcanalesd@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mabelcanalesd@gmail.com"], ["list_id", 1], ["name", "Mabel"], ["last_name", "Canales Donoso"], ["created_at", "2015-03-18 23:09:08.263514"], ["updated_at", "2015-03-18 23:09:08.263514"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arturolodetti@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arturolodetti@gmail.com"], ["list_id", 1], ["name", "Arturo"], ["last_name", "Lodetti"], ["created_at", "2015-03-18 23:09:08.277556"], ["updated_at", "2015-03-18 23:09:08.277556"]]  (12.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cot.meneses@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cot.meneses@gmail.com"], ["list_id", 1], ["name", "Coté"], ["last_name", "Meneses"], ["created_at", "2015-03-18 23:09:08.295775"], ["updated_at", "2015-03-18 23:09:08.295775"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "piaferp@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "piaferp@yahoo.es"], ["list_id", 1], ["name", "piafer"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.304730"], ["updated_at", "2015-03-18 23:09:08.304730"]]  (2.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kurt.goldman@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kurt.goldman@gmail.com"], ["list_id", 1], ["name", "Kurt"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.312945"], ["updated_at", "2015-03-18 23:09:08.312945"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eli_ariztia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eli_ariztia@hotmail.com"], ["list_id", 1], ["name", "Elisa"], ["last_name", "Ariztía"], ["created_at", "2015-03-18 23:09:08.327005"], ["updated_at", "2015-03-18 23:09:08.327005"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arcos.oviedo.felipe@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arcos.oviedo.felipe@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Arcos-Oviedo"], ["created_at", "2015-03-18 23:09:08.335932"], ["updated_at", "2015-03-18 23:09:08.335932"]]  (35.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "netracol@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "netracol@gmail.com"], ["list_id", 1], ["name", "German"], ["last_name", "Guerra"], ["created_at", "2015-03-18 23:09:08.377710"], ["updated_at", "2015-03-18 23:09:08.377710"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kioldpodi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kioldpodi@gmail.com"], ["list_id", 1], ["name", "n/a"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.386892"], ["updated_at", "2015-03-18 23:09:08.386892"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gallegosya@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gallegosya@hotmail.com"], ["list_id", 1], ["name", "Yadira"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.395418"], ["updated_at", "2015-03-18 23:09:08.395418"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "uncoupdoeil@free.fr"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "uncoupdoeil@free.fr"], ["list_id", 1], ["name", "marko"], ["last_name", "echeverria"], ["created_at", "2015-03-18 23:09:08.403896"], ["updated_at", "2015-03-18 23:09:08.403896"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Isabelkristina@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Isabelkristina@gmail.com"], ["list_id", 1], ["name", "Isabel"], ["last_name", "Cristina González Vera"], ["created_at", "2015-03-18 23:09:08.413456"], ["updated_at", "2015-03-18 23:09:08.413456"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tornado976@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tornado976@hotmail.com"], ["list_id", 1], ["name", "tengri18"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.427540"], ["updated_at", "2015-03-18 23:09:08.427540"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vaciovisual@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vaciovisual@gmail.com"], ["list_id", 1], ["name", "Nelson"], ["last_name", "Soto Huerta"], ["created_at", "2015-03-18 23:09:08.521068"], ["updated_at", "2015-03-18 23:09:08.521068"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "filosofiamistica@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "filosofiamistica@gmail.com"], ["list_id", 1], ["name", "carolina"], ["last_name", "muñoz"], ["created_at", "2015-03-18 23:09:08.531064"], ["updated_at", "2015-03-18 23:09:08.531064"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lrojas@conicyt.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lrojas@conicyt.cl"], ["list_id", 1], ["name", "Leonardo"], ["last_name", "Rojas"], ["created_at", "2015-03-18 23:09:08.540225"], ["updated_at", "2015-03-18 23:09:08.540225"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "coloro71@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "coloro71@hotmail.com"], ["list_id", 1], ["name", "Christian"], ["last_name", "Quevedo"], ["created_at", "2015-03-18 23:09:08.549200"], ["updated_at", "2015-03-18 23:09:08.549200"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ximenarojastellez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ximenarojastellez@gmail.com"], ["list_id", 1], ["name", "Ximena"], ["last_name", "Rojas Téllez"], ["created_at", "2015-03-18 23:09:08.558465"], ["updated_at", "2015-03-18 23:09:08.558465"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "renato.cecereu@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "renato.cecereu@hotmail.com"], ["list_id", 1], ["name", "rcecereu"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.576623"], ["updated_at", "2015-03-18 23:09:08.576623"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francesca.ramos.b@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francesca.ramos.b@gmail.com"], ["list_id", 1], ["name", "Francesca"], ["last_name", "Ramos Barbagelata"], ["created_at", "2015-03-18 23:09:08.585895"], ["updated_at", "2015-03-18 23:09:08.585895"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pausilvah@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pausilvah@gmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Silva Hauyon"], ["created_at", "2015-03-18 23:09:08.594298"], ["updated_at", "2015-03-18 23:09:08.594298"]]  (15.2ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anton_lar@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anton_lar@hotmail.com"], ["list_id", 1], ["name", "camaleonacrativa"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.615490"], ["updated_at", "2015-03-18 23:09:08.615490"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "objeto.de@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "objeto.de@gmail.com"], ["list_id", 1], ["name", "Paricio"], ["last_name", "Montalba"], ["created_at", "2015-03-18 23:09:08.627213"], ["updated_at", "2015-03-18 23:09:08.627213"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bainella@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bainella@yahoo.com.ar"], ["list_id", 1], ["name", "Marco"], ["last_name", "Bianella"], ["created_at", "2015-03-18 23:09:08.636531"], ["updated_at", "2015-03-18 23:09:08.636531"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alejandrofky@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alejandrofky@gmail.com"], ["list_id", 1], ["name", "alejandro"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.645606"], ["updated_at", "2015-03-18 23:09:08.645606"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "poasmano@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "poasmano@gmail.com"], ["list_id", 1], ["name", "Patricio"], ["last_name", "Montalba Navarro"], ["created_at", "2015-03-18 23:09:08.654194"], ["updated_at", "2015-03-18 23:09:08.654194"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aaronortega28@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aaronortega28@gmail.com"], ["list_id", 1], ["name", "Artista"], ["last_name", "visual"], ["created_at", "2015-03-18 23:09:08.663251"], ["updated_at", "2015-03-18 23:09:08.663251"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "graficasmix@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "graficasmix@hotmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Espinoza Arce"], ["created_at", "2015-03-18 23:09:08.676655"], ["updated_at", "2015-03-18 23:09:08.676655"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maura.mascetti@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maura.mascetti@gmail.com"], ["list_id", 1], ["name", "Maura"], ["last_name", "Mascetti"], ["created_at", "2015-03-18 23:09:08.685933"], ["updated_at", "2015-03-18 23:09:08.685933"]]  (41.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tatoo100@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tatoo100@hotmail.com"], ["list_id", 1], ["name", "Jaime"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.734452"], ["updated_at", "2015-03-18 23:09:08.734452"]]  (20.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@dc-herrera.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@dc-herrera.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Claver Herrera"], ["created_at", "2015-03-18 23:09:08.762201"], ["updated_at", "2015-03-18 23:09:08.762201"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rrlealr@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rrlealr@yahoo.es"], ["list_id", 1], ["name", "RODRIGO"], ["last_name", "LEAL RIQUELME"], ["created_at", "2015-03-18 23:09:08.771798"], ["updated_at", "2015-03-18 23:09:08.771798"]]  (3.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "turkicker@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "turkicker@hotmail.com"], ["list_id", 1], ["name", "turkicker"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.793060"], ["updated_at", "2015-03-18 23:09:08.793060"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pastoruri38@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pastoruri38@hotmail.com"], ["list_id", 1], ["name", "jorge"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.802927"], ["updated_at", "2015-03-18 23:09:08.802927"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastian.veravivanco@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastian.veravivanco@gmail.com"], ["list_id", 1], ["name", "superbueno"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.812699"], ["updated_at", "2015-03-18 23:09:08.812699"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sol_797@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sol_797@hotmail.com"], ["list_id", 1], ["name", "soliloquia"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.821064"], ["updated_at", "2015-03-18 23:09:08.821064"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aplanamientoheboide@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aplanamientoheboide@yahoo.es"], ["list_id", 1], ["name", "aplanamiento"], ["last_name", "heboide"], ["created_at", "2015-03-18 23:09:08.829202"], ["updated_at", "2015-03-18 23:09:08.829202"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastianlinardo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastianlinardo@gmail.com"], ["list_id", 1], ["name", "sebastian"], ["last_name", "linardo"], ["created_at", "2015-03-18 23:09:08.842984"], ["updated_at", "2015-03-18 23:09:08.842984"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "adelinedesmet@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "adelinedesmet@gmail.com"], ["list_id", 1], ["name", "adeline"], ["last_name", "de smet d'olbecke"], ["created_at", "2015-03-18 23:09:08.851829"], ["updated_at", "2015-03-18 23:09:08.851829"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lennykita_@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lennykita_@hotmail.com"], ["list_id", 1], ["name", "Lénika"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.860476"], ["updated_at", "2015-03-18 23:09:08.860476"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "laserpenta@gmail.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "laserpenta@gmail.com"], ["list_id", 1], ["name", "claudia"], ["last_name", "pinto"], ["created_at", "2015-03-18 23:09:08.869805"], ["updated_at", "2015-03-18 23:09:08.869805"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arq_rafas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arq_rafas@hotmail.com"], ["list_id", 1], ["name", "RAFAEL"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.894237"], ["updated_at", "2015-03-18 23:09:08.894237"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elcaballeronicolas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elcaballeronicolas@gmail.com"], ["list_id", 1], ["name", "nicolas"], ["last_name", "caballero"], ["created_at", "2015-03-18 23:09:08.909711"], ["updated_at", "2015-03-18 23:09:08.909711"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "laluz@laluz.cl"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "laluz@laluz.cl"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Jaras"], ["created_at", "2015-03-18 23:09:08.918612"], ["updated_at", "2015-03-18 23:09:08.918612"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paula01@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paula01@gmail.com"], ["list_id", 1], ["name", "paula"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.943406"], ["updated_at", "2015-03-18 23:09:08.943406"]]  (5.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danielainesgutierrez@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danielainesgutierrez@gmail.com"], ["list_id", 1], ["name", "daniela"], ["last_name", "gutierrez"], ["created_at", "2015-03-18 23:09:08.959619"], ["updated_at", "2015-03-18 23:09:08.959619"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rubioeberhardt@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rubioeberhardt@hotmail.com"], ["list_id", 1], ["name", "Pau"], ["last_name", "Rubio Eberhardt"], ["created_at", "2015-03-18 23:09:08.973712"], ["updated_at", "2015-03-18 23:09:08.973712"]]  (11.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "obsesion_es@yahoo.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "obsesion_es@yahoo.com"], ["list_id", 1], ["name", "octavia"], ["last_name", ""], ["created_at", "2015-03-18 23:09:08.992662"], ["updated_at", "2015-03-18 23:09:08.992662"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "romonte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "romonte@gmail.com"], ["list_id", 1], ["name", "Romonte."], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.010014"], ["updated_at", "2015-03-18 23:09:09.010014"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "siso.32@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "siso.32@hotmail.com"], ["list_id", 1], ["name", "Alisson"], ["last_name", "Gomez"], ["created_at", "2015-03-18 23:09:09.018654"], ["updated_at", "2015-03-18 23:09:09.018654"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arcangel4261@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arcangel4261@hotmail.com"], ["list_id", 1], ["name", "renzo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.027472"], ["updated_at", "2015-03-18 23:09:09.027472"]]  (2.3ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bedomax@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bedomax@gmail.com"], ["list_id", 1], ["name", "Maximiliano"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.035628"], ["updated_at", "2015-03-18 23:09:09.035628"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "omincubus@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "omincubus@hotmail.com"], ["list_id", 1], ["name", "omar"], ["last_name", "ovalle martinez"], ["created_at", "2015-03-18 23:09:09.044122"], ["updated_at", "2015-03-18 23:09:09.044122"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "victorcavieres@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "victorcavieres@gmail.com"], ["list_id", 1], ["name", "victor"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.058504"], ["updated_at", "2015-03-18 23:09:09.058504"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "thomaskaufmann@mail.ru"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "thomaskaufmann@mail.ru"], ["list_id", 1], ["name", "Iordanov"], ["last_name", "Vodka"], ["created_at", "2015-03-18 23:09:09.067618"], ["updated_at", "2015-03-18 23:09:09.067618"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "armasdkt@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "armasdkt@hotmail.com"], ["list_id", 1], ["name", "Mr.Legusi"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.076278"], ["updated_at", "2015-03-18 23:09:09.076278"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "samuel_k16@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "samuel_k16@hotmail.com"], ["list_id", 1], ["name", "samuel"], ["last_name", "carrillo"], ["created_at", "2015-03-18 23:09:09.085380"], ["updated_at", "2015-03-18 23:09:09.085380"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chernaes@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chernaes@yahoo.com"], ["list_id", 1], ["name", "carolinma"], ["last_name", "hernandez esguep"], ["created_at", "2015-03-18 23:09:09.093781"], ["updated_at", "2015-03-18 23:09:09.093781"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "demonasterio@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "demonasterio@hotmail.com"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Monasterio"], ["created_at", "2015-03-18 23:09:09.109121"], ["updated_at", "2015-03-18 23:09:09.109121"]]  (2.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "like_a_cartoon@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "like_a_cartoon@hotmail.com"], ["list_id", 1], ["name", "Mery"], ["last_name", "Fields Photography"], ["created_at", "2015-03-18 23:09:09.118040"], ["updated_at", "2015-03-18 23:09:09.118040"]]  (6.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "soduffau@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "soduffau@hotmail.com"], ["list_id", 1], ["name", "So"], ["last_name", "Duffau"], ["created_at", "2015-03-18 23:09:09.130517"], ["updated_at", "2015-03-18 23:09:09.130517"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ednakannan@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ednakannan@gmail.com"], ["list_id", 1], ["name", "Edna"], ["last_name", "Kannan"], ["created_at", "2015-03-18 23:09:09.139990"], ["updated_at", "2015-03-18 23:09:09.139990"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "smnlabrin@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "smnlabrin@gmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Norambuena Labrín"], ["created_at", "2015-03-18 23:09:09.159623"], ["updated_at", "2015-03-18 23:09:09.159623"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marrewacquez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marrewacquez@gmail.com"], ["list_id", 1], ["name", "Marre"], ["last_name", "Wacquez"], ["created_at", "2015-03-18 23:09:09.168524"], ["updated_at", "2015-03-18 23:09:09.168524"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "soastudi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "soastudi@gmail.com"], ["list_id", 1], ["name", "SMILJAN"], ["last_name", "ASTUDILLO MIHOVILOVIC"], ["created_at", "2015-03-18 23:09:09.178053"], ["updated_at", "2015-03-18 23:09:09.178053"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ihauyon@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ihauyon@hotmail.com"], ["list_id", 1], ["name", "Isabella"], ["last_name", "H"], ["created_at", "2015-03-18 23:09:09.187766"], ["updated_at", "2015-03-18 23:09:09.187766"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jairotobonvillegas@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jairotobonvillegas@yahoo.es"], ["list_id", 1], ["name", "Jairo"], ["last_name", "Tobón Villegas"], ["created_at", "2015-03-18 23:09:09.196040"], ["updated_at", "2015-03-18 23:09:09.196040"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bolaadv@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bolaadv@gmail.com"], ["list_id", 1], ["name", "fec"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.208658"], ["updated_at", "2015-03-18 23:09:09.208658"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kiltris@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kiltris@hotmail.com"], ["list_id", 1], ["name", "Bárbara"], ["last_name", "Ardiles"], ["created_at", "2015-03-18 23:09:09.217144"], ["updated_at", "2015-03-18 23:09:09.217144"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joaquinmartel@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joaquinmartel@gmail.com"], ["list_id", 1], ["name", "Joaquin"], ["last_name", "Martel"], ["created_at", "2015-03-18 23:09:09.225800"], ["updated_at", "2015-03-18 23:09:09.225800"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "niicole.gonzalez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "niicole.gonzalez@gmail.com"], ["list_id", 1], ["name", "Nicole__"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.235221"], ["updated_at", "2015-03-18 23:09:09.235221"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gregorio116@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gregorio116@gmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Medina López"], ["created_at", "2015-03-18 23:09:09.244578"], ["updated_at", "2015-03-18 23:09:09.244578"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sandradp_0115@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sandradp_0115@hotmail.com"], ["list_id", 1], ["name", "Sandra"], ["last_name", "Milena Durán Pérez"], ["created_at", "2015-03-18 23:09:09.258951"], ["updated_at", "2015-03-18 23:09:09.258951"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sandradp79@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sandradp79@hotmail.com"], ["list_id", 1], ["name", "SANDRA"], ["last_name", "MILENA DURAN PEREZ"], ["created_at", "2015-03-18 23:09:09.268519"], ["updated_at", "2015-03-18 23:09:09.268519"]]  (3.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sandra_dp79@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sandra_dp79@hotmail.com"], ["list_id", 1], ["name", "s).durán"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.277666"], ["updated_at", "2015-03-18 23:09:09.277666"]]  (3.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lentao_2@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lentao_2@hotmail.com"], ["list_id", 1], ["name", "lentao"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.287469"], ["updated_at", "2015-03-18 23:09:09.287469"]]  (7.1ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lutoff@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lutoff@yahoo.com.ar"], ["list_id", 1], ["name", "Lucas"], ["last_name", "Toscani"], ["created_at", "2015-03-18 23:09:09.300513"], ["updated_at", "2015-03-18 23:09:09.300513"]]  (4.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "naihomig@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "naihomig@gmail.com"], ["list_id", 1], ["name", "Naihomi"], ["last_name", "Gálvez"], ["created_at", "2015-03-18 23:09:09.311624"], ["updated_at", "2015-03-18 23:09:09.311624"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yami_rc@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yami_rc@hotmail.com"], ["list_id", 1], ["name", "yamila"], ["last_name", "serb"], ["created_at", "2015-03-18 23:09:09.320379"], ["updated_at", "2015-03-18 23:09:09.320379"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "burnt_identity@hotmail.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "burnt_identity@hotmail.es"], ["list_id", 1], ["name", "Blasthammer"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.329886"], ["updated_at", "2015-03-18 23:09:09.329886"]]  (6.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pavelguzenko@yandex.ru"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pavelguzenko@yandex.ru"], ["list_id", 1], ["name", "guzenko"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.342506"], ["updated_at", "2015-03-18 23:09:09.342506"]]  (6.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "coalicionartistaspr@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "coalicionartistaspr@yahoo.com"], ["list_id", 1], ["name", "Coalición"], ["last_name", "de Artistas de Puerto Rico"], ["created_at", "2015-03-18 23:09:09.358923"], ["updated_at", "2015-03-18 23:09:09.358923"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hbartefantastico@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hbartefantastico@gmail.com"], ["list_id", 1], ["name", "Horacio"], ["last_name", "Bustos"], ["created_at", "2015-03-18 23:09:09.367549"], ["updated_at", "2015-03-18 23:09:09.367549"]]  (15.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anro-ale13@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anro-ale13@hotmail.com"], ["list_id", 1], ["name", "Ana"], ["last_name", "Rosa Alegria"], ["created_at", "2015-03-18 23:09:09.390175"], ["updated_at", "2015-03-18 23:09:09.390175"]]  (20.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patricia_baldin@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patricia_baldin@yahoo.com.ar"], ["list_id", 1], ["name", "Patricia"], ["last_name", "Baldin"], ["created_at", "2015-03-18 23:09:09.417159"], ["updated_at", "2015-03-18 23:09:09.417159"]]  (5.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patriciabaldin@hotmail.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patriciabaldin@hotmail.com.ar"], ["list_id", 1], ["name", "Patricia"], ["last_name", "Inés Baldin"], ["created_at", "2015-03-18 23:09:09.428571"], ["updated_at", "2015-03-18 23:09:09.428571"]]  (3.0ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "c-vas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "c-vas@hotmail.com"], ["list_id", 1], ["name", "C-VAS"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.437836"], ["updated_at", "2015-03-18 23:09:09.437836"]]  (7.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rrlmushu@hotmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rrlmushu@hotmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Reyes Lozano"], ["created_at", "2015-03-18 23:09:09.452089"], ["updated_at", "2015-03-18 23:09:09.452089"]]  (7.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "agostokuatro@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "agostokuatro@gmail.com"], ["list_id", 1], ["name", "juan"], ["last_name", "pablo venegas guzmán"], ["created_at", "2015-03-18 23:09:09.468737"], ["updated_at", "2015-03-18 23:09:09.468737"]]  (12.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "delia_castellanos20@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "delia_castellanos20@hotmail.com"], ["list_id", 1], ["name", "delia"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.488366"], ["updated_at", "2015-03-18 23:09:09.488366"]]  (5.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastian.up@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastian.up@gmail.com"], ["list_id", 1], ["name", "sebaseba"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.501084"], ["updated_at", "2015-03-18 23:09:09.501084"]]  (13.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pintor217@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pintor217@hotmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Gonzalez"], ["created_at", "2015-03-18 23:09:09.523367"], ["updated_at", "2015-03-18 23:09:09.523367"]]  (19.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fricperlis@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fricperlis@hotmail.com"], ["list_id", 1], ["name", "Perla"], ["last_name", "Mo. Ka."], ["created_at", "2015-03-18 23:09:09.549648"], ["updated_at", "2015-03-18 23:09:09.549648"]]  (8.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisca.dumonceau@consorcio.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisca.dumonceau@consorcio.cl"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Du Monceau de Bergendal De Mar"], ["created_at", "2015-03-18 23:09:09.565617"], ["updated_at", "2015-03-18 23:09:09.565617"]]  (14.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gatojazz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gatojazz@gmail.com"], ["list_id", 1], ["name", "Mariana"], ["last_name", "Gallardo Klein"], ["created_at", "2015-03-18 23:09:09.586488"], ["updated_at", "2015-03-18 23:09:09.586488"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "VIRGINIAGREGORCIC@GMAIL.COM"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "VIRGINIAGREGORCIC@GMAIL.COM"], ["list_id", 1], ["name", "virginia"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.597904"], ["updated_at", "2015-03-18 23:09:09.597904"]]  (15.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "odibazo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "odibazo@gmail.com"], ["list_id", 1], ["name", "odi"], ["last_name", "bazó"], ["created_at", "2015-03-18 23:09:09.621777"], ["updated_at", "2015-03-18 23:09:09.621777"]]  (16.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "viventodaspartes@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "viventodaspartes@hotmail.com"], ["list_id", 1], ["name", "MELINKA"], ["last_name", "MAULLIN"], ["created_at", "2015-03-18 23:09:09.645845"], ["updated_at", "2015-03-18 23:09:09.645845"]]  (20.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "todoportimiluz@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "todoportimiluz@hotmail.com"], ["list_id", 1], ["name", "melinka"], ["last_name", "maullin"], ["created_at", "2015-03-18 23:09:09.673222"], ["updated_at", "2015-03-18 23:09:09.673222"]]  (5.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xaviframm@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xaviframm@hotmail.com"], ["list_id", 1], ["name", "Javiera"], ["last_name", "Framm"], ["created_at", "2015-03-18 23:09:09.685550"], ["updated_at", "2015-03-18 23:09:09.685550"]]  (10.8ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguelcaceresmurrie@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguelcaceresmurrie@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Cáceres"], ["created_at", "2015-03-18 23:09:09.704652"], ["updated_at", "2015-03-18 23:09:09.704652"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "laleydemoraga@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "laleydemoraga@hotmail.com"], ["list_id", 1], ["name", "pablo"], ["last_name", "valenzuela"], ["created_at", "2015-03-18 23:09:09.713979"], ["updated_at", "2015-03-18 23:09:09.713979"]]  (13.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "parabario@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "parabario@hotmail.com"], ["list_id", 1], ["name", "Silvestre"], ["last_name", "Abud Leiva"], ["created_at", "2015-03-18 23:09:09.734275"], ["updated_at", "2015-03-18 23:09:09.734275"]]  (15.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "correaga@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "correaga@hotmail.com"], ["list_id", 1], ["name", "melinkamaullin"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.756746"], ["updated_at", "2015-03-18 23:09:09.756746"]]  (59.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "emepe.emete@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "emepe.emete@hotmail.com"], ["list_id", 1], ["name", "Marcela"], ["last_name", "Matus Thomas"], ["created_at", "2015-03-18 23:09:09.822311"], ["updated_at", "2015-03-18 23:09:09.822311"]]  (22.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolinabellei@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolinabellei@gmail.com"], ["list_id", 1], ["name", "carolina"], ["last_name", "bellei"], ["created_at", "2015-03-18 23:09:09.850996"], ["updated_at", "2015-03-18 23:09:09.850996"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "JEANPAUL@TIE.CL"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "JEANPAUL@TIE.CL"], ["list_id", 1], ["name", "JEAN"], ["last_name", "PAUL THUILLIER"], ["created_at", "2015-03-18 23:09:09.859411"], ["updated_at", "2015-03-18 23:09:09.859411"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pavawulfert@yahoo.com.co"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pavawulfert@yahoo.com.co"], ["list_id", 1], ["name", "Diego"], ["last_name", "Pava Wülfert"], ["created_at", "2015-03-18 23:09:09.874092"], ["updated_at", "2015-03-18 23:09:09.874092"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "improntus.figuras@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "improntus.figuras@gmail.com"], ["list_id", 1], ["name", "Improntus"], ["last_name", "Ars"], ["created_at", "2015-03-18 23:09:09.890002"], ["updated_at", "2015-03-18 23:09:09.890002"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marisademartini@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marisademartini@gmail.com"], ["list_id", 1], ["name", "mdemartini"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.899489"], ["updated_at", "2015-03-18 23:09:09.899489"]]  (56.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wernerschleifen@bk.ru"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wernerschleifen@bk.ru"], ["list_id", 1], ["name", "Werner"], ["last_name", ""], ["created_at", "2015-03-18 23:09:09.963413"], ["updated_at", "2015-03-18 23:09:09.963413"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arteagasepulvedac@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arteagasepulvedac@yahoo.com"], ["list_id", 1], ["name", "carlos"], ["last_name", "arteaga"], ["created_at", "2015-03-18 23:09:09.973248"], ["updated_at", "2015-03-18 23:09:09.973248"]]  (5.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jotarte@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jotarte@hotmail.com"], ["list_id", 1], ["name", "Jota"], ["last_name", "Karloza"], ["created_at", "2015-03-18 23:09:09.984107"], ["updated_at", "2015-03-18 23:09:09.984107"]]  (2.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eddymetal_boy@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eddymetal_boy@hotmail.com"], ["list_id", 1], ["name", "Eddy"], ["last_name", "Avila .R"], ["created_at", "2015-03-18 23:09:09.993057"], ["updated_at", "2015-03-18 23:09:09.993057"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "poliesterinflamable@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "poliesterinflamable@hotmail.com"], ["list_id", 1], ["name", "mauro"], ["last_name", ""], ["created_at", "2015-03-18 23:09:10.002482"], ["updated_at", "2015-03-18 23:09:10.002482"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "shago340@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "shago340@gmail.com"], ["list_id", 1], ["name", "Boris"], ["last_name", "Borquez Salvo"], ["created_at", "2015-03-18 23:09:10.011340"], ["updated_at", "2015-03-18 23:09:10.011340"]]  (49.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "serviciosmarinos@hotmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "serviciosmarinos@hotmail.com"], ["list_id", 1], ["name", "Ramon"], ["last_name", "Rojas"], ["created_at", "2015-03-18 23:09:10.067346"], ["updated_at", "2015-03-18 23:09:10.067346"]]  (19.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "servicosmarinos@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "servicosmarinos@hotmail.com"], ["list_id", 1], ["name", "Ramon"], ["last_name", "Rojas"], ["created_at", "2015-03-18 23:09:10.095156"], ["updated_at", "2015-03-18 23:09:10.095156"]]  (4.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "efrenmelchor@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "efrenmelchor@hotmail.com"], ["list_id", 1], ["name", "Efren"], ["last_name", "Melchor"], ["created_at", "2015-03-18 23:09:10.107014"], ["updated_at", "2015-03-18 23:09:10.107014"]]  (4.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "quecosaesarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "quecosaesarte@gmail.com"], ["list_id", 1], ["name", "Nelly"], ["last_name", "Zuñiga"], ["created_at", "2015-03-18 23:09:10.123265"], ["updated_at", "2015-03-18 23:09:10.123265"]]  (3.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pepedepepes@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pepedepepes@hotmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Luis Catalán"], ["created_at", "2015-03-18 23:09:10.132584"], ["updated_at", "2015-03-18 23:09:10.132584"]]  (62.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigoramos00@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigoramos00@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Ramos Contreras"], ["created_at", "2015-03-18 23:09:10.201884"], ["updated_at", "2015-03-18 23:09:10.201884"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kexaalcen@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kexaalcen@gmail.com"], ["list_id", 1], ["name", "raul"], ["last_name", "diaz burgos"], ["created_at", "2015-03-18 23:09:10.212067"], ["updated_at", "2015-03-18 23:09:10.212067"]]  (4.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vanditsix@hotmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vanditsix@hotmail.com"], ["list_id", 1], ["name", "Adolfo"], ["last_name", "Correa"], ["created_at", "2015-03-18 23:09:10.223061"], ["updated_at", "2015-03-18 23:09:10.223061"]]  (23.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "algarcia@comunicar.us"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "algarcia@comunicar.us"], ["list_id", 1], ["name", "Alejandro"], ["last_name", "García-Lemos"], ["created_at", "2015-03-18 23:09:10.254952"], ["updated_at", "2015-03-18 23:09:10.254952"]]  (3.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mrepetur@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mrepetur@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Repetur Buron"], ["created_at", "2015-03-18 23:09:10.264568"], ["updated_at", "2015-03-18 23:09:10.264568"]]  (51.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xavicuadros@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xavicuadros@hotmail.com"], ["list_id", 1], ["name", "xavicuadros"], ["last_name", ""], ["created_at", "2015-03-18 23:09:10.322546"], ["updated_at", "2015-03-18 23:09:10.322546"]]  (25.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanmendozart@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanmendozart@hotmail.com"], ["list_id", 1], ["name", "juan"], ["last_name", "mendoza"], ["created_at", "2015-03-18 23:09:10.355298"], ["updated_at", "2015-03-18 23:09:10.355298"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastian@empresasviareal.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastian@empresasviareal.cl"], ["list_id", 1], ["name", "SEBASTIAN"], ["last_name", ""], ["created_at", "2015-03-18 23:09:10.372771"], ["updated_at", "2015-03-18 23:09:10.372771"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "solecas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "solecas@gmail.com"], ["list_id", 1], ["name", "Soledad"], ["last_name", "Barberá"], ["created_at", "2015-03-18 23:09:10.381579"], ["updated_at", "2015-03-18 23:09:10.381579"]]  (9.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bravolange@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bravolange@gmail.com"], ["list_id", 1], ["name", "_Edu"], ["last_name", ""], ["created_at", "2015-03-18 23:09:10.397162"], ["updated_at", "2015-03-18 23:09:10.397162"]]  (63.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "valentinaiturriaga@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "valentinaiturriaga@gmail.com"], ["list_id", 1], ["name", "Valentina"], ["last_name", "Iturriaga"], ["created_at", "2015-03-18 23:09:10.466831"], ["updated_at", "2015-03-18 23:09:10.466831"]]  (16.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "campa.luca@libero.it"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "campa.luca@libero.it"], ["list_id", 1], ["name", "Luca"], ["last_name", "Campa"], ["created_at", "2015-03-18 23:09:10.489860"], ["updated_at", "2015-03-18 23:09:10.489860"]]  (21.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ramoncabrera@live.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ramoncabrera@live.cl"], ["list_id", 1], ["name", "r."], ["last_name", "cabrera"], ["created_at", "2015-03-18 23:09:10.520300"], ["updated_at", "2015-03-18 23:09:10.520300"]]  (7.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gtramonn@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gtramonn@hotmail.com"], ["list_id", 1], ["name", "r."], ["last_name", "cabrera r."], ["created_at", "2015-03-18 23:09:10.535507"], ["updated_at", "2015-03-18 23:09:10.535507"]]  (5.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yohan_alberto@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yohan_alberto@hotmail.com"], ["list_id", 1], ["name", "yohan"], ["last_name", "castro"], ["created_at", "2015-03-18 23:09:10.547372"], ["updated_at", "2015-03-18 23:09:10.547372"]]  (79.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lorena_roco@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lorena_roco@yahoo.es"], ["list_id", 1], ["name", "Lore"], ["last_name", "Roco"], ["created_at", "2015-03-18 23:09:10.634133"], ["updated_at", "2015-03-18 23:09:10.634133"]]  (18.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "garcia.trampe@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "garcia.trampe@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "García Trampe"], ["created_at", "2015-03-18 23:09:10.659789"], ["updated_at", "2015-03-18 23:09:10.659789"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@carolinabriones.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@carolinabriones.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Briones"], ["created_at", "2015-03-18 23:09:10.669962"], ["updated_at", "2015-03-18 23:09:10.669962"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "florensanmar@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "florensanmar@gmail.com"], ["list_id", 1], ["name", "Florencia"], ["last_name", "San Martín"], ["created_at", "2015-03-18 23:09:10.688432"], ["updated_at", "2015-03-18 23:09:10.688432"]]  (8.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danielgonzalezmuniz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danielgonzalezmuniz@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Gonzalez Muniz"], ["created_at", "2015-03-18 23:09:10.703689"], ["updated_at", "2015-03-18 23:09:10.703689"]]  (14.0ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rob_deltaforce@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rob_deltaforce@hotmail.com"], ["list_id", 1], ["name", "R."], ["last_name", "Moran"], ["created_at", "2015-03-18 23:09:10.724831"], ["updated_at", "2015-03-18 23:09:10.724831"]]  (35.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sociedaddeldespojo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sociedaddeldespojo@gmail.com"], ["list_id", 1], ["name", "SOCIEDAD"], ["last_name", "DEL DESPOJO"], ["created_at", "2015-03-18 23:09:10.767801"], ["updated_at", "2015-03-18 23:09:10.767801"]]  (28.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lelex76@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lelex76@gmail.com"], ["list_id", 1], ["name", "mjoseRios"], ["last_name", "Araya"], ["created_at", "2015-03-18 23:09:10.803512"], ["updated_at", "2015-03-18 23:09:10.803512"]]  (18.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aureo_33@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aureo_33@hotmail.com"], ["list_id", 1], ["name", "nicolas"], ["last_name", "rubio varas"], ["created_at", "2015-03-18 23:09:10.828511"], ["updated_at", "2015-03-18 23:09:10.828511"]]  (21.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "atrevetehacerloarte@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "atrevetehacerloarte@yahoo.es"], ["list_id", 1], ["name", "maria"], ["last_name", "cristina encina"], ["created_at", "2015-03-18 23:09:10.857335"], ["updated_at", "2015-03-18 23:09:10.857335"]]  (25.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@fundacionrescate.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@fundacionrescate.cl"], ["list_id", 1], ["name", "frescate"], ["last_name", ""], ["created_at", "2015-03-18 23:09:10.889770"], ["updated_at", "2015-03-18 23:09:10.889770"]]  (26.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "changai_vie@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "changai_vie@hotmail.com"], ["list_id", 1], ["name", "Marianne"], ["last_name", "Dinamarca Müller"], ["created_at", "2015-03-18 23:09:10.923122"], ["updated_at", "2015-03-18 23:09:10.923122"]]  (18.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arteimagenchile@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arteimagenchile@gmail.com"], ["list_id", 1], ["name", "arteimagenchile"], ["last_name", ""], ["created_at", "2015-03-18 23:09:10.947875"], ["updated_at", "2015-03-18 23:09:10.947875"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguelgaetec@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguelgaetec@hotmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Ángel Gaete"], ["created_at", "2015-03-18 23:09:10.957665"], ["updated_at", "2015-03-18 23:09:10.957665"]]  (18.7ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kenji.senda.f@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kenji.senda.f@gmail.com"], ["list_id", 1], ["name", "Kenji"], ["last_name", "Senda F."], ["created_at", "2015-03-18 23:09:10.985857"], ["updated_at", "2015-03-18 23:09:10.985857"]]  (13.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tomasrenato@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tomasrenato@gmail.com"], ["list_id", 1], ["name", "Tomas"], ["last_name", "N"], ["created_at", "2015-03-18 23:09:11.007020"], ["updated_at", "2015-03-18 23:09:11.007020"]]  (16.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miel.art@gmail.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miel.art@gmail.com"], ["list_id", 1], ["name", "MIEL"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.030317"], ["updated_at", "2015-03-18 23:09:11.030317"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jmansilla11@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jmansilla11@hotmail.com"], ["list_id", 1], ["name", "PabloJim"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.041706"], ["updated_at", "2015-03-18 23:09:11.041706"]]  (8.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arqueorestauracion@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arqueorestauracion@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Mansilla"], ["created_at", "2015-03-18 23:09:11.056406"], ["updated_at", "2015-03-18 23:09:11.056406"]]  (6.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "taller@ensambles.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "taller@ensambles.cl"], ["list_id", 1], ["name", "Ensambles"], ["last_name", "Enmarcaciones y Arte"], ["created_at", "2015-03-18 23:09:11.068966"], ["updated_at", "2015-03-18 23:09:11.068966"]]  (14.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cin.delao@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cin.delao@gmail.com"], ["list_id", 1], ["name", "Cinthya"], ["last_name", "de la O"], ["created_at", "2015-03-18 23:09:11.089397"], ["updated_at", "2015-03-18 23:09:11.089397"]]  (21.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elierrevillard@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elierrevillard@gmail.com"], ["list_id", 1], ["name", "Elier"], ["last_name", "Revillard"], ["created_at", "2015-03-18 23:09:11.117987"], ["updated_at", "2015-03-18 23:09:11.117987"]]  (8.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alcastano@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alcastano@gmail.com"], ["list_id", 1], ["name", "Angel"], ["last_name", "Luis"], ["created_at", "2015-03-18 23:09:11.135159"], ["updated_at", "2015-03-18 23:09:11.135159"]]  (23.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bainella@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bainella@hotmail.com"], ["list_id", 1], ["name", "Bainella"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.165932"], ["updated_at", "2015-03-18 23:09:11.165932"]]  (64.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maryeclayre@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maryeclayre@hotmail.com"], ["list_id", 1], ["name", "maryta"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.238266"], ["updated_at", "2015-03-18 23:09:11.238266"]]  (6.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "emiliaedwards@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "emiliaedwards@gmail.com"], ["list_id", 1], ["name", "Emilia"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.251987"], ["updated_at", "2015-03-18 23:09:11.251987"]]  (12.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jiv@mi.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jiv@mi.cl"], ["list_id", 1], ["name", "José"], ["last_name", "Ignacio Vicuña"], ["created_at", "2015-03-18 23:09:11.271365"], ["updated_at", "2015-03-18 23:09:11.271365"]]  (16.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artdealerchile@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artdealerchile@gmail.com"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Ismael Faundez Sagredo"], ["created_at", "2015-03-18 23:09:11.294229"], ["updated_at", "2015-03-18 23:09:11.294229"]]  (3.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pitujensen@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pitujensen@hotmail.com"], ["list_id", 1], ["name", "Victoria"], ["last_name", "Jensen"], ["created_at", "2015-03-18 23:09:11.304084"], ["updated_at", "2015-03-18 23:09:11.304084"]]  (8.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lemanua28@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lemanua28@hotmail.com"], ["list_id", 1], ["name", "artista"], ["last_name", "plastico"], ["created_at", "2015-03-18 23:09:11.319311"], ["updated_at", "2015-03-18 23:09:11.319311"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paz_castaneda@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paz_castaneda@yahoo.es"], ["list_id", 1], ["name", "Paz"], ["last_name", "Castañeda"], ["created_at", "2015-03-18 23:09:11.424403"], ["updated_at", "2015-03-18 23:09:11.424403"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arte.cota@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arte.cota@yahoo.es"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Carras-cota"], ["created_at", "2015-03-18 23:09:11.433778"], ["updated_at", "2015-03-18 23:09:11.433778"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "seniorita_lotofoga@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "seniorita_lotofoga@hotmail.com"], ["list_id", 1], ["name", "Pamela"], ["last_name", "Hernández"], ["created_at", "2015-03-18 23:09:11.443062"], ["updated_at", "2015-03-18 23:09:11.443062"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caincamus@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caincamus@gmail.com"], ["list_id", 1], ["name", "cain"], ["last_name", "camus"], ["created_at", "2015-03-18 23:09:11.452753"], ["updated_at", "2015-03-18 23:09:11.452753"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maxhamil@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maxhamil@gmail.com"], ["list_id", 1], ["name", "max"], ["last_name", "Hamilton"], ["created_at", "2015-03-18 23:09:11.471292"], ["updated_at", "2015-03-18 23:09:11.471292"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ismaelav@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ismaelav@gmail.com"], ["list_id", 1], ["name", "Mela"], ["last_name", "Vidal Matteau"], ["created_at", "2015-03-18 23:09:11.481500"], ["updated_at", "2015-03-18 23:09:11.481500"]]  (17.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "blueberrybird18@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "blueberrybird18@hotmail.com"], ["list_id", 1], ["name", "Mela"], ["last_name", "Matteau"], ["created_at", "2015-03-18 23:09:11.505775"], ["updated_at", "2015-03-18 23:09:11.505775"]]  (15.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisco.romero@spacior.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisco.romero@spacior.com"], ["list_id", 1], ["name", "francisco.romero"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.527911"], ["updated_at", "2015-03-18 23:09:11.527911"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "el_laberinto@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "el_laberinto@hotmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Javier Romero Ramos"], ["created_at", "2015-03-18 23:09:11.537354"], ["updated_at", "2015-03-18 23:09:11.537354"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mej11@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mej11@hotmail.com"], ["list_id", 1], ["name", "Matías"], ["last_name", "E. J."], ["created_at", "2015-03-18 23:09:11.546498"], ["updated_at", "2015-03-18 23:09:11.546498"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Leylaluna@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Leylaluna@gmail.com"], ["list_id", 1], ["name", "Leyla"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.555564"], ["updated_at", "2015-03-18 23:09:11.555564"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pavinalejandro122@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pavinalejandro122@gmail.com"], ["list_id", 1], ["name", "pavinalejandro122@gmail.com"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.569323"], ["updated_at", "2015-03-18 23:09:11.569323"]]  (6.9ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pintorpereza67@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pintorpereza67@gmail.com"], ["list_id", 1], ["name", "alejandro"], ["last_name", "pavin"], ["created_at", "2015-03-18 23:09:11.582213"], ["updated_at", "2015-03-18 23:09:11.582213"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ljbravon@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ljbravon@gmail.com"], ["list_id", 1], ["name", "Lukas"], ["last_name", "José Bravo Nicolás"], ["created_at", "2015-03-18 23:09:11.592370"], ["updated_at", "2015-03-18 23:09:11.592370"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mclarisa@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mclarisa@gmail.com"], ["list_id", 1], ["name", "Clarisa"], ["last_name", "Menteguiaga"], ["created_at", "2015-03-18 23:09:11.602132"], ["updated_at", "2015-03-18 23:09:11.602132"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "noinvolucion@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "noinvolucion@gmail.com"], ["list_id", 1], ["name", "Rah-beat"], ["last_name", "Yufla"], ["created_at", "2015-03-18 23:09:11.619346"], ["updated_at", "2015-03-18 23:09:11.619346"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "melipillo@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "melipillo@yahoo.com"], ["list_id", 1], ["name", "juan"], ["last_name", "guillermo tejeda"], ["created_at", "2015-03-18 23:09:11.628828"], ["updated_at", "2015-03-18 23:09:11.628828"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ljhonnyrep@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ljhonnyrep@hotmail.com"], ["list_id", 1], ["name", "El"], ["last_name", "Drac"], ["created_at", "2015-03-18 23:09:11.636983"], ["updated_at", "2015-03-18 23:09:11.636983"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vhsilvac@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vhsilvac@hotmail.com"], ["list_id", 1], ["name", "Victor"], ["last_name", "Silva"], ["created_at", "2015-03-18 23:09:11.646834"], ["updated_at", "2015-03-18 23:09:11.646834"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "blanca_flornm@hotmail.com"]]  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "blanca_flornm@hotmail.com"], ["list_id", 1], ["name", "Blanca"], ["last_name", "Novelo Martinez"], ["created_at", "2015-03-18 23:09:11.656122"], ["updated_at", "2015-03-18 23:09:11.656122"]]  (4.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anton292@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anton292@hotmail.com"], ["list_id", 1], ["name", "Christian"], ["last_name", "Pinilla"], ["created_at", "2015-03-18 23:09:11.669476"], ["updated_at", "2015-03-18 23:09:11.669476"]]  (19.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dark_enfelo_metal@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dark_enfelo_metal@hotmail.com"], ["list_id", 1], ["name", "Jose"], ["last_name", "Luis Delgado Carrillo"], ["created_at", "2015-03-18 23:09:11.695686"], ["updated_at", "2015-03-18 23:09:11.695686"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mirtalusewicz@fasegrafica.com.ar"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mirtalusewicz@fasegrafica.com.ar"], ["list_id", 1], ["name", "Lusewix"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.705635"], ["updated_at", "2015-03-18 23:09:11.705635"]]  (6.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amaurisjosue@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amaurisjosue@yahoo.com"], ["list_id", 1], ["name", "indalecio"], ["last_name", "silva"], ["created_at", "2015-03-18 23:09:11.719126"], ["updated_at", "2015-03-18 23:09:11.719126"]]  (2.6ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marczambrano@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marczambrano@yahoo.es"], ["list_id", 1], ["name", "marcelo"], ["last_name", "zambrano"], ["created_at", "2015-03-18 23:09:11.727876"], ["updated_at", "2015-03-18 23:09:11.727876"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tienda@caritadegato.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tienda@caritadegato.cl"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Gormaz"], ["created_at", "2015-03-18 23:09:11.736520"], ["updated_at", "2015-03-18 23:09:11.736520"]]  (18.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chizuko_osato@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chizuko_osato@hotmail.com"], ["list_id", 1], ["name", "chizuko"], ["last_name", "osato"], ["created_at", "2015-03-18 23:09:11.762205"], ["updated_at", "2015-03-18 23:09:11.762205"]]  (8.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "norbertognzlz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "norbertognzlz@gmail.com"], ["list_id", 1], ["name", "Norberto"], ["last_name", "gonzalez"], ["created_at", "2015-03-18 23:09:11.778690"], ["updated_at", "2015-03-18 23:09:11.778690"]]  (16.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anitax_pxa@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anitax_pxa@hotmail.com"], ["list_id", 1], ["name", "Ana"], ["last_name", "Luisa Vargas Dinamarca"], ["created_at", "2015-03-18 23:09:11.801919"], ["updated_at", "2015-03-18 23:09:11.801919"]]  (7.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josocenmell@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josocenmell@hotmail.com"], ["list_id", 1], ["name", "Jaume"], ["last_name", "Gamell hosta"], ["created_at", "2015-03-18 23:09:11.819205"], ["updated_at", "2015-03-18 23:09:11.819205"]]  (8.7ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wence_max@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wence_max@hotmail.com"], ["list_id", 1], ["name", "FRSKITO"], ["last_name", "DE CONSERVAS"], ["created_at", "2015-03-18 23:09:11.833758"], ["updated_at", "2015-03-18 23:09:11.833758"]]  (27.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ppalmacasanova@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ppalmacasanova@gmail.com"], ["list_id", 1], ["name", "Pedro"], ["last_name", "Palma Casanova"], ["created_at", "2015-03-18 23:09:11.868501"], ["updated_at", "2015-03-18 23:09:11.868501"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlopezoro@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlopezoro@gmail.com"], ["list_id", 1], ["name", "Hualpen"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.878579"], ["updated_at", "2015-03-18 23:09:11.878579"]]  (11.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zaida.fuentes@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zaida.fuentes@gmail.com"], ["list_id", 1], ["name", "Zaida"], ["last_name", "Fuentes"], ["created_at", "2015-03-18 23:09:11.897503"], ["updated_at", "2015-03-18 23:09:11.897503"]]  (7.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bminth@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bminth@gmail.com"], ["list_id", 1], ["name", "Beatriz"], ["last_name", "Servín"], ["created_at", "2015-03-18 23:09:11.911630"], ["updated_at", "2015-03-18 23:09:11.911630"]]  (6.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "benjaminaraya86@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "benjaminaraya86@gmail.com"], ["list_id", 1], ["name", "Benjamin"], ["last_name", "Araya"], ["created_at", "2015-03-18 23:09:11.926168"], ["updated_at", "2015-03-18 23:09:11.926168"]]  (11.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablo.n.ulloa@hotmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablo.n.ulloa@hotmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Ulloa"], ["created_at", "2015-03-18 23:09:11.944490"], ["updated_at", "2015-03-18 23:09:11.944490"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablo.n.ulloa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablo.n.ulloa@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "n. Ulloa G."], ["created_at", "2015-03-18 23:09:11.956091"], ["updated_at", "2015-03-18 23:09:11.956091"]]  (21.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@usvtv.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@usvtv.net"], ["list_id", 1], ["name", "videoicomiso"], ["last_name", ""], ["created_at", "2015-03-18 23:09:11.983789"], ["updated_at", "2015-03-18 23:09:11.983789"]]  (10.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristobal.racordon@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristobal.racordon@gmail.com"], ["list_id", 1], ["name", "cristobal"], ["last_name", "racordon"], ["created_at", "2015-03-18 23:09:12.000424"], ["updated_at", "2015-03-18 23:09:12.000424"]]  (21.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lapicesdecera@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lapicesdecera@hotmail.com"], ["list_id", 1], ["name", "Judit"], ["last_name", "Lara Espinoza"], ["created_at", "2015-03-18 23:09:12.029095"], ["updated_at", "2015-03-18 23:09:12.029095"]]  (17.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lugiusti@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lugiusti@gmail.com"], ["list_id", 1], ["name", "Luciano"], ["last_name", "Giusti"], ["created_at", "2015-03-18 23:09:12.053283"], ["updated_at", "2015-03-18 23:09:12.053283"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "laurahaber@fibertel.com.ar"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "laurahaber@fibertel.com.ar"], ["list_id", 1], ["name", "galeria"], ["last_name", "laura haber"], ["created_at", "2015-03-18 23:09:12.068468"], ["updated_at", "2015-03-18 23:09:12.068468"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andresmoram@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andresmoram@gmail.com"], ["list_id", 1], ["name", "andres"], ["last_name", "mora"], ["created_at", "2015-03-18 23:09:12.078203"], ["updated_at", "2015-03-18 23:09:12.078203"]]  (4.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andreatorresmorales@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andreatorresmorales@gmail.com"], ["list_id", 1], ["name", "Andrea"], ["last_name", "Torres"], ["created_at", "2015-03-18 23:09:12.088644"], ["updated_at", "2015-03-18 23:09:12.088644"]]  (2.4ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elpanshoo@hotmail.com"]]  (0.1ms) begin transaction SQL (1.1ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elpanshoo@hotmail.com"], ["list_id", 1], ["name", "panshoomedelpizarro"], ["last_name", ""], ["created_at", "2015-03-18 23:09:12.097495"], ["updated_at", "2015-03-18 23:09:12.097495"]]  (705.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gonzabez@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gonzabez@gmail.com"], ["list_id", 1], ["name", "Patricio"], ["last_name", "Gonzalez Bezanilla"], ["created_at", "2015-03-18 23:09:12.810753"], ["updated_at", "2015-03-18 23:09:12.810753"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "epuelopez3@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "epuelopez3@yahoo.es"], ["list_id", 1], ["name", "epuelopez3"], ["last_name", ""], ["created_at", "2015-03-18 23:09:12.820437"], ["updated_at", "2015-03-18 23:09:12.820437"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danielasalinasa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danielasalinasa@gmail.com"], ["list_id", 1], ["name", "lasalinasa"], ["last_name", ""], ["created_at", "2015-03-18 23:09:12.828923"], ["updated_at", "2015-03-18 23:09:12.828923"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pedrorajevic@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pedrorajevic@gmail.com"], ["list_id", 1], ["name", "Pedro"], ["last_name", "Rajevic"], ["created_at", "2015-03-18 23:09:12.837094"], ["updated_at", "2015-03-18 23:09:12.837094"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "obras@espaciosinergia.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "obras@espaciosinergia.com.ar"], ["list_id", 1], ["name", "Juan"], ["last_name", "Marigo"], ["created_at", "2015-03-18 23:09:12.845999"], ["updated_at", "2015-03-18 23:09:12.845999"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sc@espaciosinergia.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sc@espaciosinergia.com.ar"], ["list_id", 1], ["name", "Soledad"], ["last_name", ""], ["created_at", "2015-03-18 23:09:12.866239"], ["updated_at", "2015-03-18 23:09:12.866239"]]  (9.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "evelyana@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "evelyana@hotmail.com"], ["list_id", 1], ["name", "Evelyn"], ["last_name", "Garcia Garcia"], ["created_at", "2015-03-18 23:09:12.881485"], ["updated_at", "2015-03-18 23:09:12.881485"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "niandujuegos@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "niandujuegos@yahoo.com.ar"], ["list_id", 1], ["name", "Federico"], ["last_name", "Guillermo Klärich"], ["created_at", "2015-03-18 23:09:12.891461"], ["updated_at", "2015-03-18 23:09:12.891461"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gerhardt.rs@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gerhardt.rs@gmail.com"], ["list_id", 1], ["name", "la"], ["last_name", "lecorot"], ["created_at", "2015-03-18 23:09:12.917988"], ["updated_at", "2015-03-18 23:09:12.917988"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cruzmedieval@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cruzmedieval@hotmail.com"], ["list_id", 1], ["name", "LAURA"], ["last_name", "VIRGINIA SANTIAGO ARAGON"], ["created_at", "2015-03-18 23:09:12.933273"], ["updated_at", "2015-03-18 23:09:12.933273"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "seweingast@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "seweingast@yahoo.com.ar"], ["list_id", 1], ["name", "Susana"], ["last_name", "Weingast"], ["created_at", "2015-03-18 23:09:12.942656"], ["updated_at", "2015-03-18 23:09:12.942656"]]  (2.8ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "centauro_mitominia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "centauro_mitominia@hotmail.com"], ["list_id", 1], ["name", "vicky"], ["last_name", ""], ["created_at", "2015-03-18 23:09:12.953084"], ["updated_at", "2015-03-18 23:09:12.953084"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rocmti@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rocmti@gmail.com"], ["list_id", 1], ["name", "Romi"], ["last_name", "Carol"], ["created_at", "2015-03-18 23:09:12.962047"], ["updated_at", "2015-03-18 23:09:12.962047"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "glezvera@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "glezvera@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "González-Vera"], ["created_at", "2015-03-18 23:09:12.970385"], ["updated_at", "2015-03-18 23:09:12.970385"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "emersox@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "emersox@gmail.com"], ["list_id", 1], ["name", "emersson"], ["last_name", "pérez"], ["created_at", "2015-03-18 23:09:12.983637"], ["updated_at", "2015-03-18 23:09:12.983637"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "martayglesias@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "martayglesias@yahoo.es"], ["list_id", 1], ["name", "Marta"], ["last_name", "Yglesias"], ["created_at", "2015-03-18 23:09:12.998843"], ["updated_at", "2015-03-18 23:09:12.998843"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rgvproducciongrafica@vtr.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rgvproducciongrafica@vtr.net"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "González Velásquez"], ["created_at", "2015-03-18 23:09:13.007678"], ["updated_at", "2015-03-18 23:09:13.007678"]]  (2.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "estudiobinocular@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "estudiobinocular@gmail.com"], ["list_id", 1], ["name", "Federico"], ["last_name", "Elton"], ["created_at", "2015-03-18 23:09:13.016296"], ["updated_at", "2015-03-18 23:09:13.016296"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cagdecito@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cagdecito@gmail.com"], ["list_id", 1], ["name", "Enzo"], ["last_name", "Bravo"], ["created_at", "2015-03-18 23:09:13.032280"], ["updated_at", "2015-03-18 23:09:13.032280"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cisternas.jose@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cisternas.jose@gmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Tomás Cisternas"], ["created_at", "2015-03-18 23:09:13.041653"], ["updated_at", "2015-03-18 23:09:13.041653"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mtvallejos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mtvallejos@gmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Teresa Vallejos Araos"], ["created_at", "2015-03-18 23:09:13.050987"], ["updated_at", "2015-03-18 23:09:13.050987"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mlagosbravo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mlagosbravo@gmail.com"], ["list_id", 1], ["name", "Mario"], ["last_name", "Lagos"], ["created_at", "2015-03-18 23:09:13.059653"], ["updated_at", "2015-03-18 23:09:13.059653"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dadaproducciones@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dadaproducciones@gmail.com"], ["list_id", 1], ["name", "david"], ["last_name", "alejandro soto fernandez"], ["created_at", "2015-03-18 23:09:13.068004"], ["updated_at", "2015-03-18 23:09:13.068004"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alejandro.ortuzar@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alejandro.ortuzar@gmail.com"], ["list_id", 1], ["name", "Alejandro"], ["last_name", "Ortúzar"], ["created_at", "2015-03-18 23:09:13.082220"], ["updated_at", "2015-03-18 23:09:13.082220"]]  (2.5ms) commit transaction Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alercesmilenarios@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alercesmilenarios@hotmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Angel Merino Tapia"], ["created_at", "2015-03-18 23:09:13.091191"], ["updated_at", "2015-03-18 23:09:13.091191"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jamett09@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jamett09@hotmail.com"], ["list_id", 1], ["name", "Alex"], ["last_name", "Jamett Venegas"], ["created_at", "2015-03-18 23:09:13.100010"], ["updated_at", "2015-03-18 23:09:13.100010"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rddl1987@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rddl1987@hotmail.com"], ["list_id", 1], ["name", "Ruth"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.109589"], ["updated_at", "2015-03-18 23:09:13.109589"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Yolox@Yolox.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Yolox@Yolox.com"], ["list_id", 1], ["name", "Yolox"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.117799"], ["updated_at", "2015-03-18 23:09:13.117799"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "conigazmuri@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "conigazmuri@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Gazmuri"], ["created_at", "2015-03-18 23:09:13.132282"], ["updated_at", "2015-03-18 23:09:13.132282"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sergiclau@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sergiclau@gmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Olivos"], ["created_at", "2015-03-18 23:09:13.141585"], ["updated_at", "2015-03-18 23:09:13.141585"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jose.andrade.r@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jose.andrade.r@gmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Andrade"], ["created_at", "2015-03-18 23:09:13.150284"], ["updated_at", "2015-03-18 23:09:13.150284"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "axdiseno@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "axdiseno@gmail.com"], ["list_id", 1], ["name", "axdiseno"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.159527"], ["updated_at", "2015-03-18 23:09:13.159527"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "edicionanimita@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "edicionanimita@gmail.com"], ["list_id", 1], ["name", "edicionanimita"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.167763"], ["updated_at", "2015-03-18 23:09:13.167763"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rensozev@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rensozev@hotmail.com"], ["list_id", 1], ["name", "Renso"], ["last_name", "Castaneda"], ["created_at", "2015-03-18 23:09:13.183043"], ["updated_at", "2015-03-18 23:09:13.183043"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "victor.mahana@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "victor.mahana@gmail.com"], ["list_id", 1], ["name", "Víctor"], ["last_name", "Mahana Nassar"], ["created_at", "2015-03-18 23:09:13.192039"], ["updated_at", "2015-03-18 23:09:13.192039"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pvantunez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pvantunez@gmail.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Valenzuela Antúnez"], ["created_at", "2015-03-18 23:09:13.200486"], ["updated_at", "2015-03-18 23:09:13.200486"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "majosita2@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "majosita2@yahoo.es"], ["list_id", 1], ["name", "María"], ["last_name", "José Sáenz Reyes"], ["created_at", "2015-03-18 23:09:13.208816"], ["updated_at", "2015-03-18 23:09:13.208816"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diegorvergara@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diegorvergara@hotmail.com"], ["list_id", 1], ["name", "Diego"], ["last_name", "Renom Vergara"], ["created_at", "2015-03-18 23:09:13.217574"], ["updated_at", "2015-03-18 23:09:13.217574"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jaqay_kani@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jaqay_kani@hotmail.com"], ["list_id", 1], ["name", "gabriela"], ["last_name", "fernanda ramua"], ["created_at", "2015-03-18 23:09:13.232211"], ["updated_at", "2015-03-18 23:09:13.232211"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlosvallenriquez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlosvallenriquez@gmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Valle Enriquez"], ["created_at", "2015-03-18 23:09:13.241472"], ["updated_at", "2015-03-18 23:09:13.241472"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "khanssens@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "khanssens@gmail.com"], ["list_id", 1], ["name", "Kata"], ["last_name", "Hanssens"], ["created_at", "2015-03-18 23:09:13.250171"], ["updated_at", "2015-03-18 23:09:13.250171"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mpgonzalezdurney@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mpgonzalezdurney@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Paz González Durney"], ["created_at", "2015-03-18 23:09:13.259185"], ["updated_at", "2015-03-18 23:09:13.259185"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "projasja@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "projasja@hotmail.com"], ["list_id", 1], ["name", "projasja"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.268068"], ["updated_at", "2015-03-18 23:09:13.268068"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "projasja@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "projasja@gmail.com"], ["list_id", 1], ["name", "Artista"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.281844"], ["updated_at", "2015-03-18 23:09:13.281844"]]  (3.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gilberto17_21@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gilberto17_21@hotmail.com"], ["list_id", 1], ["name", "Gilberto"], ["last_name", "Rosas"], ["created_at", "2015-03-18 23:09:13.291792"], ["updated_at", "2015-03-18 23:09:13.291792"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artista716@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artista716@hotmail.com"], ["list_id", 1], ["name", "manuel"], ["last_name", "rodriguez caceres"], ["created_at", "2015-03-18 23:09:13.301371"], ["updated_at", "2015-03-18 23:09:13.301371"]]  (3.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paquitas4manos@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paquitas4manos@gmail.com"], ["list_id", 1], ["name", "alejandra"], ["last_name", "panza"], ["created_at", "2015-03-18 23:09:13.311207"], ["updated_at", "2015-03-18 23:09:13.311207"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "taussmarcusses@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "taussmarcusses@gmail.com"], ["list_id", 1], ["name", "Marcusses"], ["last_name", "Tauss"], ["created_at", "2015-03-18 23:09:13.319903"], ["updated_at", "2015-03-18 23:09:13.319903"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jacques_sterenberg@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jacques_sterenberg@hotmail.com"], ["list_id", 1], ["name", "Jacques"], ["last_name", "Sterenberg"], ["created_at", "2015-03-18 23:09:13.331881"], ["updated_at", "2015-03-18 23:09:13.331881"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tronic_kplr@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tronic_kplr@hotmail.com"], ["list_id", 1], ["name", "pablo"], ["last_name", "patricio poblete arsendiga"], ["created_at", "2015-03-18 23:09:13.341745"], ["updated_at", "2015-03-18 23:09:13.341745"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ita_aris@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ita_aris@yahoo.com"], ["list_id", 1], ["name", "Bernardita"], ["last_name", "Arís"], ["created_at", "2015-03-18 23:09:13.350898"], ["updated_at", "2015-03-18 23:09:13.350898"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudiavenegas@123.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudiavenegas@123.cl"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Venegas"], ["created_at", "2015-03-18 23:09:13.359915"], ["updated_at", "2015-03-18 23:09:13.359915"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ronaldmorrison@hotmail.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ronaldmorrison@hotmail.es"], ["list_id", 1], ["name", "Ronald"], ["last_name", "Morrison"], ["created_at", "2015-03-18 23:09:13.368562"], ["updated_at", "2015-03-18 23:09:13.368562"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jcarcavilla@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jcarcavilla@gmail.com"], ["list_id", 1], ["name", "Jose"], ["last_name", "Carcavilla"], ["created_at", "2015-03-18 23:09:13.382135"], ["updated_at", "2015-03-18 23:09:13.382135"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigovarez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigovarez@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Alvarez"], ["created_at", "2015-03-18 23:09:13.390741"], ["updated_at", "2015-03-18 23:09:13.390741"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosariomartinez@chilearte.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosariomartinez@chilearte.com"], ["list_id", 1], ["name", "arteemol"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.400379"], ["updated_at", "2015-03-18 23:09:13.400379"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "harleysim@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "harleysim@yahoo.com"], ["list_id", 1], ["name", "Soledad"], ["last_name", "Infante"], ["created_at", "2015-03-18 23:09:13.409547"], ["updated_at", "2015-03-18 23:09:13.409547"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jleongrafo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jleongrafo@gmail.com"], ["list_id", 1], ["name", "juan"], ["last_name", "luis leon cortes"], ["created_at", "2015-03-18 23:09:13.418503"], ["updated_at", "2015-03-18 23:09:13.418503"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "galeria@columpiomadrid.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "galeria@columpiomadrid.com"], ["list_id", 1], ["name", "Columpio"], ["last_name", "galeria de dibujo contemporáneo"], ["created_at", "2015-03-18 23:09:13.432286"], ["updated_at", "2015-03-18 23:09:13.432286"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caracolosa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caracolosa@gmail.com"], ["list_id", 1], ["name", "Marianne"], ["last_name", "Stenger O."], ["created_at", "2015-03-18 23:09:13.441113"], ["updated_at", "2015-03-18 23:09:13.441113"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manuu.gnonzalez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manuu.gnonzalez@gmail.com"], ["list_id", 1], ["name", "Emanuel"], ["last_name", "Gonzalez"], ["created_at", "2015-03-18 23:09:13.449856"], ["updated_at", "2015-03-18 23:09:13.449856"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manusnot@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manusnot@gmail.com"], ["list_id", 1], ["name", "Manu"], ["last_name", "Gonzalez Gutierrez"], ["created_at", "2015-03-18 23:09:13.459221"], ["updated_at", "2015-03-18 23:09:13.459221"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "valenzuelaleiva.felipe@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "valenzuelaleiva.felipe@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Valenzuela Leiva"], ["created_at", "2015-03-18 23:09:13.468178"], ["updated_at", "2015-03-18 23:09:13.468178"]]  (15.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "milenagropper@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "milenagropper@gmail.com"], ["list_id", 1], ["name", "Milena"], ["last_name", "Gröpper"], ["created_at", "2015-03-18 23:09:13.490263"], ["updated_at", "2015-03-18 23:09:13.490263"]]  (4.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maggie.sierralta@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maggie.sierralta@gmail.com"], ["list_id", 1], ["name", "Maggie"], ["last_name", "Sierralta"], ["created_at", "2015-03-18 23:09:13.501729"], ["updated_at", "2015-03-18 23:09:13.501729"]]  (65.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "avioneta2012@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "avioneta2012@gmail.com"], ["list_id", 1], ["name", "gustavo"], ["last_name", "antonio vargas"], ["created_at", "2015-03-18 23:09:13.575244"], ["updated_at", "2015-03-18 23:09:13.575244"]]  (14.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lincura@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lincura@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Salvador Lincura"], ["created_at", "2015-03-18 23:09:13.596128"], ["updated_at", "2015-03-18 23:09:13.596128"]]  (20.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ludem85@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ludem85@hotmail.com"], ["list_id", 1], ["name", "Millan"], ["last_name", "Ludena"], ["created_at", "2015-03-18 23:09:13.622240"], ["updated_at", "2015-03-18 23:09:13.622240"]]  (12.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "estrellaolivares@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "estrellaolivares@yahoo.es"], ["list_id", 1], ["name", "estrellaolivares"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.641781"], ["updated_at", "2015-03-18 23:09:13.641781"]]  (19.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudiobaezam@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudiobaezam@gmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Eduardo Baeza Muñoz"], ["created_at", "2015-03-18 23:09:13.667204"], ["updated_at", "2015-03-18 23:09:13.667204"]]  (27.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sr.diego.jebus@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sr.diego.jebus@gmail.com"], ["list_id", 1], ["name", "Diego"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.701105"], ["updated_at", "2015-03-18 23:09:13.701105"]]  (6.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcel_duchamp@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcel_duchamp@hotmail.com"], ["list_id", 1], ["name", "Isabel"], ["last_name", "Santibáñez"], ["created_at", "2015-03-18 23:09:13.714469"], ["updated_at", "2015-03-18 23:09:13.714469"]]  (79.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "faracomacias@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "faracomacias@hotmail.com"], ["list_id", 1], ["name", "faraco"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.801230"], ["updated_at", "2015-03-18 23:09:13.801230"]]  (19.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "btaste@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "btaste@gmail.com"], ["list_id", 1], ["name", "Daou"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.828201"], ["updated_at", "2015-03-18 23:09:13.828201"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felipevisor7@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felipevisor7@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Vergara Aguilera"], ["created_at", "2015-03-18 23:09:13.838519"], ["updated_at", "2015-03-18 23:09:13.838519"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "guzpablo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "guzpablo@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Guzmán S."], ["created_at", "2015-03-18 23:09:13.848070"], ["updated_at", "2015-03-18 23:09:13.848070"]]  (13.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "borisgrns@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "borisgrns@gmail.com"], ["list_id", 1], ["name", "Boris"], ["last_name", "de la Vega"], ["created_at", "2015-03-18 23:09:13.867438"], ["updated_at", "2015-03-18 23:09:13.867438"]]  (7.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fabianruiz.b@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fabianruiz.b@gmail.com"], ["list_id", 1], ["name", "Fabian"], ["last_name", "Eduardo Ruiz Briones"], ["created_at", "2015-03-18 23:09:13.880993"], ["updated_at", "2015-03-18 23:09:13.880993"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aleacosta@mi.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aleacosta@mi.cl"], ["list_id", 1], ["name", "Ale"], ["last_name", "Acosta Ilustraciones"], ["created_at", "2015-03-18 23:09:13.898319"], ["updated_at", "2015-03-18 23:09:13.898319"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tori_cjvv@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tori_cjvv@hotmail.com"], ["list_id", 1], ["name", "Huaso"], ["last_name", "Valenzuela"], ["created_at", "2015-03-18 23:09:13.913044"], ["updated_at", "2015-03-18 23:09:13.913044"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "barimig@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "barimig@hotmail.com"], ["list_id", 1], ["name", "barimi"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.921485"], ["updated_at", "2015-03-18 23:09:13.921485"]]  (6.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pezzob73@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pezzob73@hotmail.com"], ["list_id", 1], ["name", "mauricio"], ["last_name", "Pezzopane"], ["created_at", "2015-03-18 23:09:13.934386"], ["updated_at", "2015-03-18 23:09:13.934386"]]  (15.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dr.ratoz.xD@gmail.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dr.ratoz.xD@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.955878"], ["updated_at", "2015-03-18 23:09:13.955878"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ktarsis30@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ktarsis30@yahoo.com"], ["list_id", 1], ["name", "Gilden"], ["last_name", ""], ["created_at", "2015-03-18 23:09:13.966828"], ["updated_at", "2015-03-18 23:09:13.966828"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mihatatu@mail.ru"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mihatatu@mail.ru"], ["list_id", 1], ["name", "Geri"], ["last_name", "Taylor"], ["created_at", "2015-03-18 23:09:13.975847"], ["updated_at", "2015-03-18 23:09:13.975847"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "documentos.mentales@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "documentos.mentales@gmail.com"], ["list_id", 1], ["name", "Ismael"], ["last_name", "Orozco"], ["created_at", "2015-03-18 23:09:13.984223"], ["updated_at", "2015-03-18 23:09:13.984223"]]  (6.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amanding07@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amanding07@hotmail.com"], ["list_id", 1], ["name", "Amanda"], ["last_name", "rodríguez Solar"], ["created_at", "2015-03-18 23:09:13.997730"], ["updated_at", "2015-03-18 23:09:13.997730"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "musita.f@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "musita.f@gmail.com"], ["list_id", 1], ["name", "Fabiola"], ["last_name", ""], ["created_at", "2015-03-18 23:09:14.011657"], ["updated_at", "2015-03-18 23:09:14.011657"]]  (5.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rajmor@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rajmor@gmail.com"], ["list_id", 1], ["name", "Raj"], ["last_name", "More"], ["created_at", "2015-03-18 23:09:14.023155"], ["updated_at", "2015-03-18 23:09:14.023155"]]  (16.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dennymati.s@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dennymati.s@gmail.com"], ["list_id", 1], ["name", "Roger"], ["last_name", "Summy"], ["created_at", "2015-03-18 23:09:14.047133"], ["updated_at", "2015-03-18 23:09:14.047133"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manuelrodriguez71@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manuelrodriguez71@live.cl"], ["list_id", 1], ["name", "manuel"], ["last_name", "rodriguez"], ["created_at", "2015-03-18 23:09:14.057800"], ["updated_at", "2015-03-18 23:09:14.057800"]]  (15.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manuelrodriguez77@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manuelrodriguez77@gmail.com"], ["list_id", 1], ["name", "manuel"], ["last_name", "olavio reodriguez caceres"], ["created_at", "2015-03-18 23:09:14.080980"], ["updated_at", "2015-03-18 23:09:14.080980"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gonzaloper@adinet.com.uy"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gonzaloper@adinet.com.uy"], ["list_id", 1], ["name", "Gonzalo"], ["last_name", "Perdomo"], ["created_at", "2015-03-18 23:09:14.097018"], ["updated_at", "2015-03-18 23:09:14.097018"]]  (18.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eliuno@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eliuno@hotmail.com"], ["list_id", 1], ["name", "igor"], ["last_name", "corrales"], ["created_at", "2015-03-18 23:09:14.121542"], ["updated_at", "2015-03-18 23:09:14.121542"]]  (6.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "martintxo2004@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "martintxo2004@gmail.com"], ["list_id", 1], ["name", "Martín"], ["last_name", "Sánchez"], ["created_at", "2015-03-18 23:09:14.134099"], ["updated_at", "2015-03-18 23:09:14.134099"]]  (5.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mcm.metrik@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mcm.metrik@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Angel Cornejo Moraga"], ["created_at", "2015-03-18 23:09:14.147107"], ["updated_at", "2015-03-18 23:09:14.147107"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@casonasannicolas.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@casonasannicolas.cl"], ["list_id", 1], ["name", "Alejandro"], ["last_name", "Godoy"], ["created_at", "2015-03-18 23:09:14.156586"], ["updated_at", "2015-03-18 23:09:14.156586"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "canobra@vtr.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "canobra@vtr.net"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Canobra"], ["created_at", "2015-03-18 23:09:14.165796"], ["updated_at", "2015-03-18 23:09:14.165796"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "urbanoty@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "urbanoty@live.cl"], ["list_id", 1], ["name", "jaime"], ["last_name", "urbina"], ["created_at", "2015-03-18 23:09:14.174246"], ["updated_at", "2015-03-18 23:09:14.174246"]]  (14.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "romenestra@hotmail.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "romenestra@hotmail.es"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Mendes Estrada"], ["created_at", "2015-03-18 23:09:14.196233"], ["updated_at", "2015-03-18 23:09:14.196233"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miriamladrondeguevara@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miriamladrondeguevara@hotmail.com"], ["list_id", 1], ["name", "Miriam"], ["last_name", "Ladròn De Guevara"], ["created_at", "2015-03-18 23:09:14.205796"], ["updated_at", "2015-03-18 23:09:14.205796"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "milaae@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "milaae@live.cl"], ["list_id", 1], ["name", "Mila"], ["last_name", "Belén"], ["created_at", "2015-03-18 23:09:14.214833"], ["updated_at", "2015-03-18 23:09:14.214833"]]  (8.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lucho_patton@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lucho_patton@hotmail.com"], ["list_id", 1], ["name", "Luis"], ["last_name", "Mancilla Avila"], ["created_at", "2015-03-18 23:09:14.229627"], ["updated_at", "2015-03-18 23:09:14.229627"]]  (5.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manuelfloresn@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manuelfloresn@gmail.com"], ["list_id", 1], ["name", "Manuel"], ["last_name", "Flores N."], ["created_at", "2015-03-18 23:09:14.247267"], ["updated_at", "2015-03-18 23:09:14.247267"]]  (4.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mentequecrea@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mentequecrea@gmail.com"], ["list_id", 1], ["name", "Marcelo"], ["last_name", "Contreras"], ["created_at", "2015-03-18 23:09:14.257561"], ["updated_at", "2015-03-18 23:09:14.257561"]]  (8.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosselarquitecto@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosselarquitecto@hotmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Ivan Rossel"], ["created_at", "2015-03-18 23:09:14.272805"], ["updated_at", "2015-03-18 23:09:14.272805"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "somosmonga@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "somosmonga@gmail.com"], ["list_id", 1], ["name", "Monga"], ["last_name", ""], ["created_at", "2015-03-18 23:09:14.371655"], ["updated_at", "2015-03-18 23:09:14.371655"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "khrdalo@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "khrdalo@yahoo.es"], ["list_id", 1], ["name", "Katherine"], ["last_name", "Hrdalo"], ["created_at", "2015-03-18 23:09:14.381409"], ["updated_at", "2015-03-18 23:09:14.381409"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "simana-79@mail.ru"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "simana-79@mail.ru"], ["list_id", 1], ["name", "Michael"], ["last_name", "Da Silva"], ["created_at", "2015-03-18 23:09:14.390978"], ["updated_at", "2015-03-18 23:09:14.390978"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tallernapols@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tallernapols@gmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Bedrack"], ["created_at", "2015-03-18 23:09:14.400725"], ["updated_at", "2015-03-18 23:09:14.400725"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pantherguy456@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pantherguy456@gmail.com"], ["list_id", 1], ["name", "Matthew"], ["last_name", "Rairden"], ["created_at", "2015-03-18 23:09:14.409947"], ["updated_at", "2015-03-18 23:09:14.409947"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manosquecrean@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manosquecrean@gmail.com"], ["list_id", 1], ["name", "Luis"], ["last_name", "Marcelo Contreras"], ["created_at", "2015-03-18 23:09:14.431063"], ["updated_at", "2015-03-18 23:09:14.431063"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fagarayfoto@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fagarayfoto@gmail.com"], ["list_id", 1], ["name", "FA"], ["last_name", "GARAY"], ["created_at", "2015-03-18 23:09:14.441292"], ["updated_at", "2015-03-18 23:09:14.441292"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "whattheheckisreal@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "whattheheckisreal@gmail.com"], ["list_id", 1], ["name", "Jeff"], ["last_name", "Dickerson"], ["created_at", "2015-03-18 23:09:14.450860"], ["updated_at", "2015-03-18 23:09:14.450860"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "martin.apaterson@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "martin.apaterson@gmail.com"], ["list_id", 1], ["name", "Mario"], ["last_name", "manganelli"], ["created_at", "2015-03-18 23:09:14.460738"], ["updated_at", "2015-03-18 23:09:14.460738"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gabrielapazfotografia@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gabrielapazfotografia@gmail.com"], ["list_id", 1], ["name", "Gabriela"], ["last_name", "Paz"], ["created_at", "2015-03-18 23:09:14.481341"], ["updated_at", "2015-03-18 23:09:14.481341"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marielbgalarza@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marielbgalarza@yahoo.com.ar"], ["list_id", 1], ["name", "Mariel"], ["last_name", "Galarza"], ["created_at", "2015-03-18 23:09:14.491906"], ["updated_at", "2015-03-18 23:09:14.491906"]]  (4.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daniellaperbac@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daniellaperbac@yahoo.com"], ["list_id", 1], ["name", "Daniella"], ["last_name", "Perez Bacigalupo"], ["created_at", "2015-03-18 23:09:14.502874"], ["updated_at", "2015-03-18 23:09:14.502874"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contact.projectt@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contact.projectt@gmail.com"], ["list_id", 1], ["name", "PABLO"], ["last_name", "GOMEZ GÜBELI"], ["created_at", "2015-03-18 23:09:14.511177"], ["updated_at", "2015-03-18 23:09:14.511177"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kleerabioso@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kleerabioso@gmail.com"], ["list_id", 1], ["name", "Cristóbal"], ["last_name", "Betancourt"], ["created_at", "2015-03-18 23:09:14.530482"], ["updated_at", "2015-03-18 23:09:14.530482"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "accionsudaca@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "accionsudaca@gmail.com"], ["list_id", 1], ["name", "PROYECTO"], ["last_name", "ACCION SUDACA"], ["created_at", "2015-03-18 23:09:14.540090"], ["updated_at", "2015-03-18 23:09:14.540090"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javier@moretamirc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javier@moretamirc.cl"], ["list_id", 1], ["name", "Javier"], ["last_name", "Moreta"], ["created_at", "2015-03-18 23:09:14.548621"], ["updated_at", "2015-03-18 23:09:14.548621"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolinavergarajunge@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolinavergarajunge@gmail.com"], ["list_id", 1], ["name", "Carola"], ["last_name", "Vergara Junge"], ["created_at", "2015-03-18 23:09:14.557529"], ["updated_at", "2015-03-18 23:09:14.557529"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "solrezza@radioscomunitarias.org"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "solrezza@radioscomunitarias.org"], ["list_id", 1], ["name", "sol"], ["last_name", "rezza"], ["created_at", "2015-03-18 23:09:14.566832"], ["updated_at", "2015-03-18 23:09:14.566832"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "corracorra@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "corracorra@gmail.com"], ["list_id", 1], ["name", "carlos"], ["last_name", "corrales p."], ["created_at", "2015-03-18 23:09:14.579753"], ["updated_at", "2015-03-18 23:09:14.579753"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fmillard@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fmillard@gmail.com"], ["list_id", 1], ["name", "Frank"], ["last_name", "Millard"], ["created_at", "2015-03-18 23:09:14.589639"], ["updated_at", "2015-03-18 23:09:14.589639"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jorgepanchana@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jorgepanchana@gmail.com"], ["list_id", 1], ["name", "jorge"], ["last_name", "panchana"], ["created_at", "2015-03-18 23:09:14.598805"], ["updated_at", "2015-03-18 23:09:14.598805"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcia.jaramillo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcia.jaramillo@gmail.com"], ["list_id", 1], ["name", "marcia"], ["last_name", "jaramillo"], ["created_at", "2015-03-18 23:09:14.607949"], ["updated_at", "2015-03-18 23:09:14.607949"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bitacora.anacronica@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bitacora.anacronica@gmail.com"], ["list_id", 1], ["name", "Sebastián"], ["last_name", "Valenzuela Valdivia"], ["created_at", "2015-03-18 23:09:14.616502"], ["updated_at", "2015-03-18 23:09:14.616502"]]  (6.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "theadmin@seomasterblog.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "theadmin@seomasterblog.com"], ["list_id", 1], ["name", "El"], ["last_name", "Matador"], ["created_at", "2015-03-18 23:09:14.629056"], ["updated_at", "2015-03-18 23:09:14.629056"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "feralemanmalespin@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "feralemanmalespin@gmail.com"], ["list_id", 1], ["name", "Fernando"], ["last_name", "Aleman"], ["created_at", "2015-03-18 23:09:14.638149"], ["updated_at", "2015-03-18 23:09:14.638149"]]  (6.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "retroboy@foroseguimiento.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "retroboy@foroseguimiento.com"], ["list_id", 1], ["name", "Ryan"], ["last_name", ""], ["created_at", "2015-03-18 23:09:14.650513"], ["updated_at", "2015-03-18 23:09:14.650513"]]  (10.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "observatorio.arte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "observatorio.arte@gmail.com"], ["list_id", 1], ["name", "Observatorio"], ["last_name", "de Arte"], ["created_at", "2015-03-18 23:09:14.667249"], ["updated_at", "2015-03-18 23:09:14.667249"]]  (12.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cboffer@aim.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cboffer@aim.com"], ["list_id", 1], ["name", "Outta"], ["last_name", "Daloop"], ["created_at", "2015-03-18 23:09:14.687220"], ["updated_at", "2015-03-18 23:09:14.687220"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "brazos__d_sol@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "brazos__d_sol@hotmail.com"], ["list_id", 1], ["name", "jocelyn"], ["last_name", ""], ["created_at", "2015-03-18 23:09:14.697967"], ["updated_at", "2015-03-18 23:09:14.697967"]]  (9.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "a_maggiolope@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "a_maggiolope@gmail.com"], ["list_id", 1], ["name", "maggiolo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:14.714195"], ["updated_at", "2015-03-18 23:09:14.714195"]]  (15.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leoncervantes@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leoncervantes@hotmail.com"], ["list_id", 1], ["name", "leoncervantes"], ["last_name", ""], ["created_at", "2015-03-18 23:09:14.735979"], ["updated_at", "2015-03-18 23:09:14.735979"]]  (4.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "laragoz@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "laragoz@gmail.com"], ["list_id", 1], ["name", "Gustavo"], ["last_name", "Lara Molina vo Lara"], ["created_at", "2015-03-18 23:09:14.746094"], ["updated_at", "2015-03-18 23:09:14.746094"]]  (43.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariannevaleria@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariannevaleria@hotmail.com"], ["list_id", 1], ["name", "Marianne"], ["last_name", "Valeria"], ["created_at", "2015-03-18 23:09:14.796513"], ["updated_at", "2015-03-18 23:09:14.796513"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lartistantezana@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lartistantezana@gmail.com"], ["list_id", 1], ["name", "necesidad"], ["last_name", ""], ["created_at", "2015-03-18 23:09:14.806415"], ["updated_at", "2015-03-18 23:09:14.806415"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigoaarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigoaarte@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Alonso Poblete Herrera"], ["created_at", "2015-03-18 23:09:14.816765"], ["updated_at", "2015-03-18 23:09:14.816765"]]  (21.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "annajoh.johanson422@googlemail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "annajoh.johanson422@googlemail.com"], ["list_id", 1], ["name", "entertainment"], ["last_name", ""], ["created_at", "2015-03-18 23:09:14.845899"], ["updated_at", "2015-03-18 23:09:14.845899"]]  (14.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "igiveyouhealth2@aim.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "igiveyouhealth2@aim.com"], ["list_id", 1], ["name", "Klaus"], ["last_name", "Rasch"], ["created_at", "2015-03-18 23:09:14.867652"], ["updated_at", "2015-03-18 23:09:14.867652"]]  (15.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jedc1973@gmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jedc1973@gmail.com"], ["list_id", 1], ["name", "Julio"], ["last_name", "Enrique Diaz Cambon"], ["created_at", "2015-03-18 23:09:14.891257"], ["updated_at", "2015-03-18 23:09:14.891257"]]  (32.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "velazquezestudio@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "velazquezestudio@yahoo.com"], ["list_id", 1], ["name", "Edwin"], ["last_name", "Velazquez"], ["created_at", "2015-03-18 23:09:14.931118"], ["updated_at", "2015-03-18 23:09:14.931118"]]  (7.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tavo_betos99@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tavo_betos99@hotmail.com"], ["list_id", 1], ["name", "Eliud"], ["last_name", "Elizondo Guevara (Yuyito de China)"], ["created_at", "2015-03-18 23:09:14.945768"], ["updated_at", "2015-03-18 23:09:14.945768"]]  (4.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paloma_rdzg@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paloma_rdzg@hotmail.com"], ["list_id", 1], ["name", "paloma"], ["last_name", "rodríguez guel"], ["created_at", "2015-03-18 23:09:14.957976"], ["updated_at", "2015-03-18 23:09:14.957976"]]  (20.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dcapona@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dcapona@gmail.com"], ["list_id", 1], ["name", "dcapona"], ["last_name", ""], ["created_at", "2015-03-18 23:09:14.985582"], ["updated_at", "2015-03-18 23:09:14.985582"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "poliplay@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "poliplay@gmail.com"], ["list_id", 1], ["name", "Poli"], ["last_name", "Muji K"], ["created_at", "2015-03-18 23:09:14.995728"], ["updated_at", "2015-03-18 23:09:14.995728"]]  (9.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mex@fantaproduction.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mex@fantaproduction.com"], ["list_id", 1], ["name", "Massimiliano"], ["last_name", "Cammuso"], ["created_at", "2015-03-18 23:09:15.011992"], ["updated_at", "2015-03-18 23:09:15.011992"]]  (40.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "whytheobvious@aim.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "whytheobvious@aim.com"], ["list_id", 1], ["name", "Pete"], ["last_name", "Seaney"], ["created_at", "2015-03-18 23:09:15.059420"], ["updated_at", "2015-03-18 23:09:15.059420"]]  (20.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hinostrozaf@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hinostrozaf@gmail.com"], ["list_id", 1], ["name", "Fernando"], ["last_name", "Hinostroza"], ["created_at", "2015-03-18 23:09:15.086825"], ["updated_at", "2015-03-18 23:09:15.086825"]]  (9.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "entrepaisas@yahoo.com"]]  (0.1ms) begin transaction SQL (1.1ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "entrepaisas@yahoo.com"], ["list_id", 1], ["name", "Fernando"], ["last_name", "Henao Díez"], ["created_at", "2015-03-18 23:09:15.102636"], ["updated_at", "2015-03-18 23:09:15.102636"]]  (6.3ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fehenao50@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fehenao50@yahoo.com"], ["list_id", 1], ["name", "Fernando"], ["last_name", "Henao Díez Blenker"], ["created_at", "2015-03-18 23:09:15.116987"], ["updated_at", "2015-03-18 23:09:15.116987"]]  (7.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joaquin.mukden@mail.udp.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joaquin.mukden@mail.udp.cl"], ["list_id", 1], ["name", "Joaquin"], ["last_name", "Mukden"], ["created_at", "2015-03-18 23:09:15.130296"], ["updated_at", "2015-03-18 23:09:15.130296"]]  (11.9ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hgallegosc1@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hgallegosc1@gmail.com"], ["list_id", 1], ["name", "Héctor"], ["last_name", "Gallegos"], ["created_at", "2015-03-18 23:09:15.149507"], ["updated_at", "2015-03-18 23:09:15.149507"]]  (68.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "givicencio@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "givicencio@gmail.com"], ["list_id", 1], ["name", "Germán"], ["last_name", "Vicencio"], ["created_at", "2015-03-18 23:09:15.225217"], ["updated_at", "2015-03-18 23:09:15.225217"]]  (13.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigoduran33@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigoduran33@gmail.com"], ["list_id", 1], ["name", "RODRIGO"], ["last_name", "DURAN HUIDOBRO"], ["created_at", "2015-03-18 23:09:15.246063"], ["updated_at", "2015-03-18 23:09:15.246063"]]  (7.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rubecarrasco@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rubecarrasco@gmail.com"], ["list_id", 1], ["name", "Rubén"], ["last_name", "Carrasco"], ["created_at", "2015-03-18 23:09:15.260386"], ["updated_at", "2015-03-18 23:09:15.260386"]]  (9.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanjosevg@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanjosevg@live.cl"], ["list_id", 1], ["name", "Juan"], ["last_name", "Jose Velasquez Gonzalez-Tudela"], ["created_at", "2015-03-18 23:09:15.278240"], ["updated_at", "2015-03-18 23:09:15.278240"]]  (5.4ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "micaelaruiz@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "micaelaruiz@hotmail.com"], ["list_id", 1], ["name", "micaela"], ["last_name", "ruiz"], ["created_at", "2015-03-18 23:09:15.289586"], ["updated_at", "2015-03-18 23:09:15.289586"]]  (14.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "d.sinder.ber@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "d.sinder.ber@gmail.com"], ["list_id", 1], ["name", "Rocksteady"], ["last_name", ""], ["created_at", "2015-03-18 23:09:15.311105"], ["updated_at", "2015-03-18 23:09:15.311105"]]  (8.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josesalero1602@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josesalero1602@hotmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Salero"], ["created_at", "2015-03-18 23:09:15.327440"], ["updated_at", "2015-03-18 23:09:15.327440"]]  (11.9ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "grifhar@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "grifhar@hotmail.com"], ["list_id", 1], ["name", "Marco"], ["last_name", "Cornejo"], ["created_at", "2015-03-18 23:09:15.345403"], ["updated_at", "2015-03-18 23:09:15.345403"]]  (11.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jekse86@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jekse86@gmail.com"], ["list_id", 1], ["name", "Sammy86"], ["last_name", ""], ["created_at", "2015-03-18 23:09:15.363575"], ["updated_at", "2015-03-18 23:09:15.363575"]]  (6.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macarena26molina@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macarena26molina@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Molina Dufflocq"], ["created_at", "2015-03-18 23:09:15.378453"], ["updated_at", "2015-03-18 23:09:15.378453"]]  (5.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "clarose2730@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "clarose2730@hotmail.com"], ["list_id", 1], ["name", "CLAROSE"], ["last_name", "CLAUDIO RODRIGUEZ SEGOVIA"], ["created_at", "2015-03-18 23:09:15.389635"], ["updated_at", "2015-03-18 23:09:15.389635"]]  (11.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "thecocho@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "thecocho@gmail.com"], ["list_id", 1], ["name", "Solange"], ["last_name", "Germain Medina"], ["created_at", "2015-03-18 23:09:15.407526"], ["updated_at", "2015-03-18 23:09:15.407526"]]  (4.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sakulore@hotmail.com"]]  (0.1ms) begin transaction SQL (1.1ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sakulore@hotmail.com"], ["list_id", 1], ["name", "elizabeth"], ["last_name", "lorena"], ["created_at", "2015-03-18 23:09:15.419218"], ["updated_at", "2015-03-18 23:09:15.419218"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yurarudz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yurarudz@gmail.com"], ["list_id", 1], ["name", "YURIDIA"], ["last_name", "RUIZ DIAZ"], ["created_at", "2015-03-18 23:09:15.430419"], ["updated_at", "2015-03-18 23:09:15.430419"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "galeriapax@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "galeriapax@gmail.com"], ["list_id", 1], ["name", "Galeria"], ["last_name", "PAX"], ["created_at", "2015-03-18 23:09:15.439682"], ["updated_at", "2015-03-18 23:09:15.439682"]]  (16.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@prorigen.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@prorigen.com"], ["list_id", 1], ["name", "Malva"], ["last_name", "Bermúdez"], ["created_at", "2015-03-18 23:09:15.463277"], ["updated_at", "2015-03-18 23:09:15.463277"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "goselec@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "goselec@gmail.com"], ["list_id", 1], ["name", "Selectores"], ["last_name", ""], ["created_at", "2015-03-18 23:09:15.476977"], ["updated_at", "2015-03-18 23:09:15.476977"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "almibarazucarado@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "almibarazucarado@gmail.com"], ["list_id", 1], ["name", "Anibal"], ["last_name", "Simon Sandoval Sandoval"], ["created_at", "2015-03-18 23:09:15.486097"], ["updated_at", "2015-03-18 23:09:15.486097"]]  (77.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daniavg@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daniavg@hotmail.com"], ["list_id", 1], ["name", "Dania"], ["last_name", "Valeria Vidal Gallardo"], ["created_at", "2015-03-18 23:09:15.570932"], ["updated_at", "2015-03-18 23:09:15.570932"]]  (17.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ilianas1017@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ilianas1017@yahoo.es"], ["list_id", 1], ["name", "ILIANA"], ["last_name", ""], ["created_at", "2015-03-18 23:09:15.595438"], ["updated_at", "2015-03-18 23:09:15.595438"]]  (16.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "denissefontecilla@gmail.com"]]  (0.1ms) begin transaction SQL (1.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "denissefontecilla@gmail.com"], ["list_id", 1], ["name", "Denisse"], ["last_name", "Fontecilla"], ["created_at", "2015-03-18 23:09:15.619043"], ["updated_at", "2015-03-18 23:09:15.619043"]]  (7.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "imagen.imagen.imagen@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "imagen.imagen.imagen@gmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Urbina"], ["created_at", "2015-03-18 23:09:15.635726"], ["updated_at", "2015-03-18 23:09:15.635726"]]  (5.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arte@arteninia.webmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arte@arteninia.webmail.com"], ["list_id", 1], ["name", "NINIA"], ["last_name", "Fernandez Astrada"], ["created_at", "2015-03-18 23:09:15.648732"], ["updated_at", "2015-03-18 23:09:15.648732"]]  (17.7ms) commit transaction Postino::Subscriber Load (2.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablorittern@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablorittern@yahoo.com.mx"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Ritter Navarro"], ["created_at", "2015-03-18 23:09:15.674843"], ["updated_at", "2015-03-18 23:09:15.674843"]]  (41.9ms) commit transaction Postino::Subscriber Load (2.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "viviana2484@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "viviana2484@gmail.com"], ["list_id", 1], ["name", "Viviana"], ["last_name", "Ovando Cid"], ["created_at", "2015-03-18 23:09:15.725635"], ["updated_at", "2015-03-18 23:09:15.725635"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alecxa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alecxa@gmail.com"], ["list_id", 1], ["name", "Alejandra"], ["last_name", "del Campo"], ["created_at", "2015-03-18 23:09:15.735403"], ["updated_at", "2015-03-18 23:09:15.735403"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nellyctronica@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nellyctronica@hotmail.com"], ["list_id", 1], ["name", "Alejandra"], ["last_name", "Del Campo"], ["created_at", "2015-03-18 23:09:15.745273"], ["updated_at", "2015-03-18 23:09:15.745273"]]  (16.2ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "brenesthames@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "brenesthames@hotmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Brenes Thames"], ["created_at", "2015-03-18 23:09:15.767250"], ["updated_at", "2015-03-18 23:09:15.767250"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leo.flores.c@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leo.flores.c@gmail.com"], ["list_id", 1], ["name", "leonardo"], ["last_name", "mnuel flores caceres"], ["created_at", "2015-03-18 23:09:15.776783"], ["updated_at", "2015-03-18 23:09:15.776783"]]  (62.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@experimentourbano.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@experimentourbano.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Valdebenito Nuñez"], ["created_at", "2015-03-18 23:09:15.845720"], ["updated_at", "2015-03-18 23:09:15.845720"]]  (8.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "susana_cp08@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "susana_cp08@hotmail.com"], ["list_id", 1], ["name", "susana"], ["last_name", ""], ["created_at", "2015-03-18 23:09:15.860651"], ["updated_at", "2015-03-18 23:09:15.860651"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcelomainardi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcelomainardi@gmail.com"], ["list_id", 1], ["name", "Marcelo"], ["last_name", "Fernandez Mainardi"], ["created_at", "2015-03-18 23:09:15.869973"], ["updated_at", "2015-03-18 23:09:15.869973"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "torresayerdi@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "torresayerdi@gmail.com"], ["list_id", 1], ["name", "Alberto"], ["last_name", "Torres Ayerdi"], ["created_at", "2015-03-18 23:09:15.880168"], ["updated_at", "2015-03-18 23:09:15.880168"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lumobu@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lumobu@yahoo.com"], ["list_id", 1], ["name", "luis"], ["last_name", ""], ["created_at", "2015-03-18 23:09:15.893025"], ["updated_at", "2015-03-18 23:09:15.893025"]]  (3.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luguimobu@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luguimobu@hotmail.com"], ["list_id", 1], ["name", "Luis"], ["last_name", "Montoya"], ["created_at", "2015-03-18 23:09:15.904061"], ["updated_at", "2015-03-18 23:09:15.904061"]]  (40.2ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulipunk@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulipunk@gmail.com"], ["list_id", 1], ["name", "Pau"], ["last_name", ""], ["created_at", "2015-03-18 23:09:15.953319"], ["updated_at", "2015-03-18 23:09:15.953319"]]  (8.0ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yagoburgos@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yagoburgos@gmail.com"], ["list_id", 1], ["name", "Santiago"], ["last_name", "Romel"], ["created_at", "2015-03-18 23:09:15.976689"], ["updated_at", "2015-03-18 23:09:15.976689"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "visualmassive@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "visualmassive@gmail.com"], ["list_id", 1], ["name", "Erick"], ["last_name", ""], ["created_at", "2015-03-18 23:09:15.986922"], ["updated_at", "2015-03-18 23:09:15.986922"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "montsecosido@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "montsecosido@hotmail.com"], ["list_id", 1], ["name", "Montserrat"], ["last_name", "Cosidó Soley"], ["created_at", "2015-03-18 23:09:15.995618"], ["updated_at", "2015-03-18 23:09:15.995618"]]  (2.4ms) commit transaction Postino::Subscriber Load (2.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aniferlu@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aniferlu@hotmail.com"], ["list_id", 1], ["name", "Anita"], ["last_name", "Fernandez"], ["created_at", "2015-03-18 23:09:16.006843"], ["updated_at", "2015-03-18 23:09:16.006843"]]  (10.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artpopulus@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artpopulus@hotmail.com"], ["list_id", 1], ["name", "jonathan"], ["last_name", "elbaz"], ["created_at", "2015-03-18 23:09:16.026801"], ["updated_at", "2015-03-18 23:09:16.026801"]]  (61.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lisbethfeinberg@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lisbethfeinberg@hotmail.com"], ["list_id", 1], ["name", "Lisbeth"], ["last_name", ""], ["created_at", "2015-03-18 23:09:16.095679"], ["updated_at", "2015-03-18 23:09:16.095679"]]  (12.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", ""]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", ""], ["list_id", 1], ["name", "Alejzza"], ["last_name", "Gòmez"], ["created_at", "2015-03-18 23:09:16.115575"], ["updated_at", "2015-03-18 23:09:16.115575"]]  (13.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "negrodeluho@hotmail.com"]]  (0.1ms) begin transaction SQL (1.1ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "negrodeluho@hotmail.com"], ["list_id", 1], ["name", "carlos"], ["last_name", "enrique españa mina"], ["created_at", "2015-03-18 23:09:16.135162"], ["updated_at", "2015-03-18 23:09:16.135162"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maria.contrerasval@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maria.contrerasval@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Contreras"], ["created_at", "2015-03-18 23:09:16.146614"], ["updated_at", "2015-03-18 23:09:16.146614"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jmcf68@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jmcf68@gmail.com"], ["list_id", 1], ["name", "jose"], ["last_name", "miguel carcamo fonseca"], ["created_at", "2015-03-18 23:09:16.156495"], ["updated_at", "2015-03-18 23:09:16.156495"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javi_gold@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javi_gold@hotmail.com"], ["list_id", 1], ["name", "javi"], ["last_name", ""], ["created_at", "2015-03-18 23:09:16.165902"], ["updated_at", "2015-03-18 23:09:16.165902"]]  (53.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mypptal@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mypptal@hotmail.com"], ["list_id", 1], ["name", "marcela"], ["last_name", "ponce"], ["created_at", "2015-03-18 23:09:16.226549"], ["updated_at", "2015-03-18 23:09:16.226549"]]  (5.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "julietanievas@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "julietanievas@gmail.com"], ["list_id", 1], ["name", "Julietta"], ["last_name", "Sol Nievas Rebechi"], ["created_at", "2015-03-18 23:09:16.238896"], ["updated_at", "2015-03-18 23:09:16.238896"]]  (11.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablo-catado@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablo-catado@hotmail.com"], ["list_id", 1], ["name", "pablo"], ["last_name", "moreno cañado"], ["created_at", "2015-03-18 23:09:16.257381"], ["updated_at", "2015-03-18 23:09:16.257381"]]  (19.0ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcosdibuja@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcosdibuja@gmail.com"], ["list_id", 1], ["name", "Marcos"], ["last_name", "Navarro"], ["created_at", "2015-03-18 23:09:16.282827"], ["updated_at", "2015-03-18 23:09:16.282827"]]  (12.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulaquijada@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulaquijada@yahoo.es"], ["list_id", 1], ["name", "Paula"], ["last_name", "Veronica Quijada Valenzuela"], ["created_at", "2015-03-18 23:09:16.302151"], ["updated_at", "2015-03-18 23:09:16.302151"]]  (58.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catalafuente@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catalafuente@gmail.com"], ["list_id", 1], ["name", "Catalina"], ["last_name", "Lafuente"], ["created_at", "2015-03-18 23:09:16.368261"], ["updated_at", "2015-03-18 23:09:16.368261"]]  (19.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patobocca@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patobocca@gmail.com"], ["list_id", 1], ["name", "Patricio"], ["last_name", "Bocca"], ["created_at", "2015-03-18 23:09:16.394448"], ["updated_at", "2015-03-18 23:09:16.394448"]]  (22.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jorgetorosh@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jorgetorosh@gmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Toro"], ["created_at", "2015-03-18 23:09:16.424632"], ["updated_at", "2015-03-18 23:09:16.424632"]]  (7.6ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mbeatriz_ar@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mbeatriz_ar@hotmail.com"], ["list_id", 1], ["name", "Mirian"], ["last_name", "Beatriz Arce Barrientos"], ["created_at", "2015-03-18 23:09:16.438288"], ["updated_at", "2015-03-18 23:09:16.438288"]]  (23.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "soledadleondelacerda@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "soledadleondelacerda@gmail.com"], ["list_id", 1], ["name", "Soledad"], ["last_name", "León"], ["created_at", "2015-03-18 23:09:16.467980"], ["updated_at", "2015-03-18 23:09:16.467980"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artsduarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artsduarte@gmail.com"], ["list_id", 1], ["name", "MarceloDuarte"], ["last_name", ""], ["created_at", "2015-03-18 23:09:16.478907"], ["updated_at", "2015-03-18 23:09:16.478907"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "austral87@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "austral87@gmail.com"], ["list_id", 1], ["name", "Silvestre"], ["last_name", "Abud"], ["created_at", "2015-03-18 23:09:16.488095"], ["updated_at", "2015-03-18 23:09:16.488095"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contyragal@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contyragal@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Ragal"], ["created_at", "2015-03-18 23:09:16.498069"], ["updated_at", "2015-03-18 23:09:16.498069"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sergiolopezfotografo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sergiolopezfotografo@gmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "López R"], ["created_at", "2015-03-18 23:09:16.507330"], ["updated_at", "2015-03-18 23:09:16.507330"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "psanpastor@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "psanpastor@gmail.com"], ["list_id", 1], ["name", "paola"], ["last_name", "estrada perone"], ["created_at", "2015-03-18 23:09:16.524553"], ["updated_at", "2015-03-18 23:09:16.524553"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jakeline.herrera@mail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jakeline.herrera@mail.com"], ["list_id", 1], ["name", "Jacqueline"], ["last_name", "Herrera"], ["created_at", "2015-03-18 23:09:16.534271"], ["updated_at", "2015-03-18 23:09:16.534271"]]  (11.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mafalda623@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mafalda623@gmail.com"], ["list_id", 1], ["name", "Deysi"], ["last_name", "Cruz Vásquez"], ["created_at", "2015-03-18 23:09:16.552928"], ["updated_at", "2015-03-18 23:09:16.552928"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "trybal@msn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "trybal@msn.com"], ["list_id", 1], ["name", "Arturo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:16.563205"], ["updated_at", "2015-03-18 23:09:16.563205"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "coloresmagikos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "coloresmagikos@gmail.com"], ["list_id", 1], ["name", "Guillermo"], ["last_name", "González-García"], ["created_at", "2015-03-18 23:09:16.575054"], ["updated_at", "2015-03-18 23:09:16.575054"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "stop_paradisio@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "stop_paradisio@live.cl"], ["list_id", 1], ["name", "karol"], ["last_name", "arcioni benidorm"], ["created_at", "2015-03-18 23:09:16.583813"], ["updated_at", "2015-03-18 23:09:16.583813"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "irene.abujatum@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "irene.abujatum@gmail.com"], ["list_id", 1], ["name", "irene"], ["last_name", "abujatum"], ["created_at", "2015-03-18 23:09:16.593038"], ["updated_at", "2015-03-18 23:09:16.593038"]]  (13.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manxanaster@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manxanaster@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Alfonso"], ["created_at", "2015-03-18 23:09:16.612362"], ["updated_at", "2015-03-18 23:09:16.612362"]]  (8.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "spoerer.andrea@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "spoerer.andrea@gmail.com"], ["list_id", 1], ["name", "Andrea"], ["last_name", "Spoerer"], ["created_at", "2015-03-18 23:09:16.626912"], ["updated_at", "2015-03-18 23:09:16.626912"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lajortacktaich@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lajortacktaich@gmail.com"], ["list_id", 1], ["name", "JESSICA"], ["last_name", "JORTACK-TAICH DAWSON"], ["created_at", "2015-03-18 23:09:16.636268"], ["updated_at", "2015-03-18 23:09:16.636268"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "natamontesv@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "natamontesv@gmail.com"], ["list_id", 1], ["name", "Natalia"], ["last_name", "Montes Viviani"], ["created_at", "2015-03-18 23:09:16.646043"], ["updated_at", "2015-03-18 23:09:16.646043"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mafesoar@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mafesoar@hotmail.com"], ["list_id", 1], ["name", "maria"], ["last_name", "fernanda"], ["created_at", "2015-03-18 23:09:16.654578"], ["updated_at", "2015-03-18 23:09:16.654578"]]  (6.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lagarliza@gmail.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lagarliza@gmail.com"], ["list_id", 1], ["name", "Elisa"], ["last_name", "Díaz Browne"], ["created_at", "2015-03-18 23:09:16.667602"], ["updated_at", "2015-03-18 23:09:16.667602"]]  (14.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amarantastravi@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amarantastravi@hotmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Gutiérrez Gagliardi"], ["created_at", "2015-03-18 23:09:16.690747"], ["updated_at", "2015-03-18 23:09:16.690747"]]  (15.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "deilygo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "deilygo@gmail.com"], ["list_id", 1], ["name", "deily"], ["last_name", ""], ["created_at", "2015-03-18 23:09:16.713625"], ["updated_at", "2015-03-18 23:09:16.713625"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tunuxtu@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tunuxtu@hotmail.com"], ["list_id", 1], ["name", "ARSENIO"], ["last_name", "FELIX"], ["created_at", "2015-03-18 23:09:16.725060"], ["updated_at", "2015-03-18 23:09:16.725060"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pogoart1@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pogoart1@gmail.com"], ["list_id", 1], ["name", "Pogo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:16.734738"], ["updated_at", "2015-03-18 23:09:16.734738"]]  (16.0ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jlos23@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jlos23@hotmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Stuardo"], ["created_at", "2015-03-18 23:09:16.758045"], ["updated_at", "2015-03-18 23:09:16.758045"]]  (9.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matildecamposh@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matildecamposh@gmail.com"], ["list_id", 1], ["name", "Matilde"], ["last_name", "Campos"], ["created_at", "2015-03-18 23:09:16.774351"], ["updated_at", "2015-03-18 23:09:16.774351"]]  (20.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amae_04@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amae_04@hotmail.com"], ["list_id", 1], ["name", "Andrea"], ["last_name", "Aguilar"], ["created_at", "2015-03-18 23:09:16.801596"], ["updated_at", "2015-03-18 23:09:16.801596"]]  (50.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yosoypeligro@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yosoypeligro@gmail.com"], ["list_id", 1], ["name", "nico"], ["last_name", "aguirre"], ["created_at", "2015-03-18 23:09:16.859821"], ["updated_at", "2015-03-18 23:09:16.859821"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cruzpainemilla@gmail.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cruzpainemilla@gmail.com"], ["list_id", 1], ["name", "Cruz"], ["last_name", "Painemilla"], ["created_at", "2015-03-18 23:09:16.870778"], ["updated_at", "2015-03-18 23:09:16.870778"]]  (685.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "czamoradg@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "czamoradg@gmail.com"], ["list_id", 1], ["name", "Christian"], ["last_name", "Zamora"], ["created_at", "2015-03-18 23:09:17.564933"], ["updated_at", "2015-03-18 23:09:17.564933"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@luismontull.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@luismontull.com"], ["list_id", 1], ["name", "luis"], ["last_name", ""], ["created_at", "2015-03-18 23:09:17.575583"], ["updated_at", "2015-03-18 23:09:17.575583"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "soledadbravovaldivieso@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "soledadbravovaldivieso@gmail.com"], ["list_id", 1], ["name", "soledad"], ["last_name", "bravo valdivieso"], ["created_at", "2015-03-18 23:09:17.584641"], ["updated_at", "2015-03-18 23:09:17.584641"]]  (4.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@angieville.com.ar"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@angieville.com.ar"], ["list_id", 1], ["name", "Angie"], ["last_name", "Villé"], ["created_at", "2015-03-18 23:09:17.595493"], ["updated_at", "2015-03-18 23:09:17.595493"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gaflores70@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gaflores70@gmail.com"], ["list_id", 1], ["name", "Gabriel"], ["last_name", "Flores"], ["created_at", "2015-03-18 23:09:17.624001"], ["updated_at", "2015-03-18 23:09:17.624001"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catalinasilvaguzman@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catalinasilvaguzman@hotmail.com"], ["list_id", 1], ["name", "catalina"], ["last_name", "silva guzman"], ["created_at", "2015-03-18 23:09:17.633596"], ["updated_at", "2015-03-18 23:09:17.633596"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "super_yukito@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "super_yukito@hotmail.com"], ["list_id", 1], ["name", "Julia"], ["last_name", "Romero"], ["created_at", "2015-03-18 23:09:17.642576"], ["updated_at", "2015-03-18 23:09:17.642576"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "auxi_ta_1@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "auxi_ta_1@hotmail.com"], ["list_id", 1], ["name", "Jesús"], ["last_name", "Vázquez Rodríguez"], ["created_at", "2015-03-18 23:09:17.651399"], ["updated_at", "2015-03-18 23:09:17.651399"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lamaria.arte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lamaria.arte@gmail.com"], ["list_id", 1], ["name", "LaMaría"], ["last_name", ""], ["created_at", "2015-03-18 23:09:17.660639"], ["updated_at", "2015-03-18 23:09:17.660639"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caro.rodriguezpino@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caro.rodriguezpino@gmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Rodríguez"], ["created_at", "2015-03-18 23:09:17.672732"], ["updated_at", "2015-03-18 23:09:17.672732"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "robertolopezzamo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "robertolopezzamo@hotmail.com"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Zamo"], ["created_at", "2015-03-18 23:09:17.681173"], ["updated_at", "2015-03-18 23:09:17.681173"]]  (4.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ataxika@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ataxika@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Leyton Garate"], ["created_at", "2015-03-18 23:09:17.691691"], ["updated_at", "2015-03-18 23:09:17.691691"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alegarcialira@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alegarcialira@gmail.com"], ["list_id", 1], ["name", "Alejandra"], ["last_name", "mª Garcia Lira"], ["created_at", "2015-03-18 23:09:17.701091"], ["updated_at", "2015-03-18 23:09:17.701091"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "armariox@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "armariox@hotmail.com"], ["list_id", 1], ["name", "Mario"], ["last_name", "Moreno Tapia"], ["created_at", "2015-03-18 23:09:17.709372"], ["updated_at", "2015-03-18 23:09:17.709372"]]  (85.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "infogradualhate@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "infogradualhate@yahoo.es"], ["list_id", 1], ["name", "Avencio"], ["last_name", "DM"], ["created_at", "2015-03-18 23:09:17.806815"], ["updated_at", "2015-03-18 23:09:17.806815"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguel@delanu.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguel@delanu.cl"], ["list_id", 1], ["name", "Miguel"], ["last_name", "De Lanú"], ["created_at", "2015-03-18 23:09:17.817132"], ["updated_at", "2015-03-18 23:09:17.817132"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguel.michelson@metrikco.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguel.michelson@metrikco.com"], ["list_id", 1], ["name", "miguel"], ["last_name", "test"], ["created_at", "2015-03-18 23:09:17.825591"], ["updated_at", "2015-03-18 23:09:17.825591"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "demian.schopf@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "demian.schopf@gmail.com"], ["list_id", 1], ["name", "Demian"], ["last_name", "Schopf"], ["created_at", "2015-03-18 23:09:17.835249"], ["updated_at", "2015-03-18 23:09:17.835249"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miaslanides@mail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miaslanides@mail.com"], ["list_id", 1], ["name", "Federico"], ["last_name", "Bousquet"], ["created_at", "2015-03-18 23:09:17.844390"], ["updated_at", "2015-03-18 23:09:17.844390"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "duran.troise@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "duran.troise@gmail.com"], ["list_id", 1], ["name", "Graciela"], ["last_name", "Duran-Troise"], ["created_at", "2015-03-18 23:09:17.945969"], ["updated_at", "2015-03-18 23:09:17.945969"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miaslanides@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miaslanides@gmail.com"], ["list_id", 1], ["name", "Federico"], ["last_name", "D. Bousquet"], ["created_at", "2015-03-18 23:09:17.955807"], ["updated_at", "2015-03-18 23:09:17.955807"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jomiac@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jomiac@hotmail.com"], ["list_id", 1], ["name", "jose"], ["last_name", "miguel acevedo"], ["created_at", "2015-03-18 23:09:17.971037"], ["updated_at", "2015-03-18 23:09:17.971037"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ignaciatrucco@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ignaciatrucco@gmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Ignacia Trucco"], ["created_at", "2015-03-18 23:09:17.980205"], ["updated_at", "2015-03-18 23:09:17.980205"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aplikado79@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aplikado79@hotmail.com"], ["list_id", 1], ["name", "Andrés"], ["last_name", "Tiznado Riquelme"], ["created_at", "2015-03-18 23:09:18.005877"], ["updated_at", "2015-03-18 23:09:18.005877"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gianpierre_yovera@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gianpierre_yovera@hotmail.com"], ["list_id", 1], ["name", "Gianpierre"], ["last_name", "Juan Manuel Yovera Infanzon"], ["created_at", "2015-03-18 23:09:18.021836"], ["updated_at", "2015-03-18 23:09:18.021836"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "violetachq@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "violetachq@gmail.com"], ["list_id", 1], ["name", "violeta"], ["last_name", "chiang"], ["created_at", "2015-03-18 23:09:18.030302"], ["updated_at", "2015-03-18 23:09:18.030302"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "denst.aa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "denst.aa@gmail.com"], ["list_id", 1], ["name", "DENST"], ["last_name", ""], ["created_at", "2015-03-18 23:09:18.039550"], ["updated_at", "2015-03-18 23:09:18.039550"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bbkito@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bbkito@gmail.com"], ["list_id", 1], ["name", "Ariel"], ["last_name", "Eduardo Quiroz"], ["created_at", "2015-03-18 23:09:18.054651"], ["updated_at", "2015-03-18 23:09:18.054651"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rivas1981_4@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rivas1981_4@hotmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Carlos Rivas Fuentes"], ["created_at", "2015-03-18 23:09:18.063454"], ["updated_at", "2015-03-18 23:09:18.063454"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zapata.jimena@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zapata.jimena@gmail.com"], ["list_id", 1], ["name", "Jimena"], ["last_name", "Zapata"], ["created_at", "2015-03-18 23:09:18.072547"], ["updated_at", "2015-03-18 23:09:18.072547"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artutil@yandex.ru"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artutil@yandex.ru"], ["list_id", 1], ["name", "Alexander"], ["last_name", "Seliverstov"], ["created_at", "2015-03-18 23:09:18.081665"], ["updated_at", "2015-03-18 23:09:18.081665"]]  (17.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claukiedis@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claukiedis@gmail.com"], ["list_id", 1], ["name", "Claudia"], ["last_name", "Aldea Bascuñan"], ["created_at", "2015-03-18 23:09:18.106039"], ["updated_at", "2015-03-18 23:09:18.106039"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ana_migarcia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ana_migarcia@hotmail.com"], ["list_id", 1], ["name", "Ana"], ["last_name", "Garcia"], ["created_at", "2015-03-18 23:09:18.115830"], ["updated_at", "2015-03-18 23:09:18.115830"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "axxtlan@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "axxtlan@gmail.com"], ["list_id", 1], ["name", "Armando"], ["last_name", "\"freger\" Ruiz"], ["created_at", "2015-03-18 23:09:18.125661"], ["updated_at", "2015-03-18 23:09:18.125661"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "liliananeret@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "liliananeret@yahoo.com"], ["list_id", 1], ["name", "liliana"], ["last_name", "neret"], ["created_at", "2015-03-18 23:09:18.134442"], ["updated_at", "2015-03-18 23:09:18.134442"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "soniakrammcasas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "soniakrammcasas@gmail.com"], ["list_id", 1], ["name", "sonia"], ["last_name", "kramm casas"], ["created_at", "2015-03-18 23:09:18.143398"], ["updated_at", "2015-03-18 23:09:18.143398"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "michelleleon286@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "michelleleon286@gmail.com"], ["list_id", 1], ["name", "Michelle"], ["last_name", "Leon"], ["created_at", "2015-03-18 23:09:18.155015"], ["updated_at", "2015-03-18 23:09:18.155015"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ricardosilveira55@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ricardosilveira55@hotmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "G. Silveira"], ["created_at", "2015-03-18 23:09:18.163496"], ["updated_at", "2015-03-18 23:09:18.163496"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablo@pablomontt.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablo@pablomontt.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Montt"], ["created_at", "2015-03-18 23:09:18.172509"], ["updated_at", "2015-03-18 23:09:18.172509"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "m.j.olivos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "m.j.olivos@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Jesús Olivos"], ["created_at", "2015-03-18 23:09:18.181374"], ["updated_at", "2015-03-18 23:09:18.181374"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "metalvalparaiso@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "metalvalparaiso@gmail.com"], ["list_id", 1], ["name", "camila"], ["last_name", "castillo"], ["created_at", "2015-03-18 23:09:18.190533"], ["updated_at", "2015-03-18 23:09:18.190533"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bekydiaz8@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bekydiaz8@hotmail.com"], ["list_id", 1], ["name", "Rebeca"], ["last_name", ""], ["created_at", "2015-03-18 23:09:18.204430"], ["updated_at", "2015-03-18 23:09:18.204430"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pazrodriguez10@123.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pazrodriguez10@123.cl"], ["list_id", 1], ["name", "Maria"], ["last_name", "Paz Rodriguez Budge"], ["created_at", "2015-03-18 23:09:18.214253"], ["updated_at", "2015-03-18 23:09:18.214253"]]  (17.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "coni.cabrera@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "coni.cabrera@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Cabrera"], ["created_at", "2015-03-18 23:09:18.239545"], ["updated_at", "2015-03-18 23:09:18.239545"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosarioperriello@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosarioperriello@gmail.com"], ["list_id", 1], ["name", "Rosario"], ["last_name", "Perriello"], ["created_at", "2015-03-18 23:09:18.254446"], ["updated_at", "2015-03-18 23:09:18.254446"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "apm@perezmelero.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "apm@perezmelero.com"], ["list_id", 1], ["name", "Antonio"], ["last_name", "PEREZ MELERO"], ["created_at", "2015-03-18 23:09:18.263227"], ["updated_at", "2015-03-18 23:09:18.263227"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristobalcalvor@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristobalcalvor@gmail.com"], ["list_id", 1], ["name", "Cristobal"], ["last_name", "Calvo"], ["created_at", "2015-03-18 23:09:18.272195"], ["updated_at", "2015-03-18 23:09:18.272195"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macarenaestella@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macarenaestella@gmail.com"], ["list_id", 1], ["name", "macarena"], ["last_name", "estella"], ["created_at", "2015-03-18 23:09:18.280824"], ["updated_at", "2015-03-18 23:09:18.280824"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wisniewski.mateusz@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wisniewski.mateusz@yahoo.com"], ["list_id", 1], ["name", "Mateusz"], ["last_name", "Wisniewski"], ["created_at", "2015-03-18 23:09:18.290577"], ["updated_at", "2015-03-18 23:09:18.290577"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cuncunainjapi_989@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cuncunainjapi_989@hotmail.com"], ["list_id", 1], ["name", "luz"], ["last_name", "maria fuentes lozier"], ["created_at", "2015-03-18 23:09:18.303153"], ["updated_at", "2015-03-18 23:09:18.303153"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudia.contreras.saez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudia.contreras.saez@gmail.com"], ["list_id", 1], ["name", "claudia"], ["last_name", "a. contreras sáez"], ["created_at", "2015-03-18 23:09:18.312332"], ["updated_at", "2015-03-18 23:09:18.312332"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "angelafabregas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "angelafabregas@gmail.com"], ["list_id", 1], ["name", "angela"], ["last_name", "fabregas"], ["created_at", "2015-03-18 23:09:18.321360"], ["updated_at", "2015-03-18 23:09:18.321360"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pavioloinstru@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pavioloinstru@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Paviolo"], ["created_at", "2015-03-18 23:09:18.331106"], ["updated_at", "2015-03-18 23:09:18.331106"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sepulvedakatia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sepulvedakatia@gmail.com"], ["list_id", 1], ["name", "KaKa"], ["last_name", ""], ["created_at", "2015-03-18 23:09:18.339747"], ["updated_at", "2015-03-18 23:09:18.339747"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "inesdirube@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "inesdirube@yahoo.com.ar"], ["list_id", 1], ["name", "INES"], ["last_name", "DIRUBE"], ["created_at", "2015-03-18 23:09:18.354853"], ["updated_at", "2015-03-18 23:09:18.354853"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rafaelm-figuereo21@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rafaelm-figuereo21@hotmail.com"], ["list_id", 1], ["name", "Rafael"], ["last_name", "Miguel Figuereo"], ["created_at", "2015-03-18 23:09:18.364055"], ["updated_at", "2015-03-18 23:09:18.364055"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@tomasrodriguez.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@tomasrodriguez.cl"], ["list_id", 1], ["name", "Tomás"], ["last_name", "Rodríguez"], ["created_at", "2015-03-18 23:09:18.373618"], ["updated_at", "2015-03-18 23:09:18.373618"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fco_apolo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fco_apolo@hotmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Tureo"], ["created_at", "2015-03-18 23:09:18.382792"], ["updated_at", "2015-03-18 23:09:18.382792"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joaquin.mukden@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joaquin.mukden@gmail.com"], ["list_id", 1], ["name", "Joaquin"], ["last_name", "Mukden V"], ["created_at", "2015-03-18 23:09:18.392112"], ["updated_at", "2015-03-18 23:09:18.392112"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ninaciervo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ninaciervo@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Dussourd"], ["created_at", "2015-03-18 23:09:18.404337"], ["updated_at", "2015-03-18 23:09:18.404337"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juancarlosa430@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juancarlosa430@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Carlos Álvarez Flores"], ["created_at", "2015-03-18 23:09:18.413264"], ["updated_at", "2015-03-18 23:09:18.413264"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sergioo_15_15@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sergioo_15_15@hotmail.com"], ["list_id", 1], ["name", "sergio"], ["last_name", ""], ["created_at", "2015-03-18 23:09:18.423047"], ["updated_at", "2015-03-18 23:09:18.423047"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dalais@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dalais@gmail.com"], ["list_id", 1], ["name", "Magdalena"], ["last_name", "Muñoz"], ["created_at", "2015-03-18 23:09:18.432294"], ["updated_at", "2015-03-18 23:09:18.432294"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contact@martarebora.it"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contact@martarebora.it"], ["list_id", 1], ["name", "marta"], ["last_name", ""], ["created_at", "2015-03-18 23:09:18.441271"], ["updated_at", "2015-03-18 23:09:18.441271"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosaspintor@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosaspintor@gmail.com"], ["list_id", 1], ["name", "Eduardo"], ["last_name", "Rosas"], ["created_at", "2015-03-18 23:09:18.453287"], ["updated_at", "2015-03-18 23:09:18.453287"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "monicaflrs8@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "monicaflrs8@gmail.com"], ["list_id", 1], ["name", "Mónica"], ["last_name", "Flores A."], ["created_at", "2015-03-18 23:09:18.462441"], ["updated_at", "2015-03-18 23:09:18.462441"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "johia_dellafiori@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "johia_dellafiori@hotmail.com"], ["list_id", 1], ["name", "Johanna"], ["last_name", "Alvarez Dellafiori"], ["created_at", "2015-03-18 23:09:18.471933"], ["updated_at", "2015-03-18 23:09:18.471933"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodundergraff@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodundergraff@gmail.com"], ["list_id", 1], ["name", "rodrigo"], ["last_name", "saavedra"], ["created_at", "2015-03-18 23:09:18.481140"], ["updated_at", "2015-03-18 23:09:18.481140"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gustavolaplaya@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gustavolaplaya@gmail.com"], ["list_id", 1], ["name", "Gustavo"], ["last_name", "Cáceres"], ["created_at", "2015-03-18 23:09:18.490501"], ["updated_at", "2015-03-18 23:09:18.490501"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jimenezz@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jimenezz@hotmail.com"], ["list_id", 1], ["name", "Álvaro"], ["last_name", "González"], ["created_at", "2015-03-18 23:09:18.503261"], ["updated_at", "2015-03-18 23:09:18.503261"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "robertmorls66@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "robertmorls66@gmail.com"], ["list_id", 1], ["name", "artista"], ["last_name", "plastico ROBERTO MORALES"], ["created_at", "2015-03-18 23:09:18.512730"], ["updated_at", "2015-03-18 23:09:18.512730"]]  (7.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "robertmorls66@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "robertmorls66@hotmail.com"], ["list_id", 1], ["name", "artista"], ["last_name", "plastico roberto morales"], ["created_at", "2015-03-18 23:09:18.527338"], ["updated_at", "2015-03-18 23:09:18.527338"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kamikase3@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kamikase3@hotmail.com"], ["list_id", 1], ["name", "Gabriel"], ["last_name", "Moztasa"], ["created_at", "2015-03-18 23:09:18.538092"], ["updated_at", "2015-03-18 23:09:18.538092"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andreu@galeriaanimal.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andreu@galeriaanimal.com"], ["list_id", 1], ["name", "Tomás"], ["last_name", "Andreu"], ["created_at", "2015-03-18 23:09:18.552901"], ["updated_at", "2015-03-18 23:09:18.552901"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felipe_masters@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felipe_masters@hotmail.com"], ["list_id", 1], ["name", "Le"], ["last_name", "Neuf Michy Art"], ["created_at", "2015-03-18 23:09:18.562120"], ["updated_at", "2015-03-18 23:09:18.562120"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "samykocking@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "samykocking@hotmail.com"], ["list_id", 1], ["name", "Samantha"], ["last_name", "Kocking"], ["created_at", "2015-03-18 23:09:18.572689"], ["updated_at", "2015-03-18 23:09:18.572689"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "candplastique@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "candplastique@gmail.com"], ["list_id", 1], ["name", "Isabel"], ["last_name", ""], ["created_at", "2015-03-18 23:09:18.581400"], ["updated_at", "2015-03-18 23:09:18.581400"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "a_merello@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "a_merello@hotmail.com"], ["list_id", 1], ["name", "alessandra"], ["last_name", ""], ["created_at", "2015-03-18 23:09:18.590934"], ["updated_at", "2015-03-18 23:09:18.590934"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iluvatar325@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iluvatar325@hotmail.com"], ["list_id", 1], ["name", "Italo"], ["last_name", "Garcia"], ["created_at", "2015-03-18 23:09:18.603440"], ["updated_at", "2015-03-18 23:09:18.603440"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "denisse.bustamante@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "denisse.bustamante@hotmail.com"], ["list_id", 1], ["name", "Denisse"], ["last_name", ""], ["created_at", "2015-03-18 23:09:18.613207"], ["updated_at", "2015-03-18 23:09:18.613207"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "belenbulgheroni@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "belenbulgheroni@gmail.com"], ["list_id", 1], ["name", "Belen"], ["last_name", "Bulgheroni"], ["created_at", "2015-03-18 23:09:18.622425"], ["updated_at", "2015-03-18 23:09:18.622425"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@waltraudmaczassek.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@waltraudmaczassek.com"], ["list_id", 1], ["name", "Waltraud"], ["last_name", "Maczassek"], ["created_at", "2015-03-18 23:09:18.631903"], ["updated_at", "2015-03-18 23:09:18.631903"]]  (49.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zaines326@gmail.com"]]  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zaines326@gmail.com"], ["list_id", 1], ["name", "adrian"], ["last_name", "\"zaines\" valenzuela berrios"], ["created_at", "2015-03-18 23:09:18.688760"], ["updated_at", "2015-03-18 23:09:18.688760"]]  (5.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gabriel.abo82@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gabriel.abo82@gmail.com"], ["list_id", 1], ["name", "Gabriel"], ["last_name", "Aguayo"], ["created_at", "2015-03-18 23:09:18.703551"], ["updated_at", "2015-03-18 23:09:18.703551"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caty.pinto.gutierrez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caty.pinto.gutierrez@gmail.com"], ["list_id", 1], ["name", "Catherine"], ["last_name", "Pinto-Gutiérrez"], ["created_at", "2015-03-18 23:09:18.712520"], ["updated_at", "2015-03-18 23:09:18.712520"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fxdrako@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fxdrako@yahoo.es"], ["list_id", 1], ["name", "Lennon"], ["last_name", "Merino Monje"], ["created_at", "2015-03-18 23:09:18.721866"], ["updated_at", "2015-03-18 23:09:18.721866"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alirioinfante15@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alirioinfante15@gmail.com"], ["list_id", 1], ["name", "Alirio"], ["last_name", "Infante"], ["created_at", "2015-03-18 23:09:18.731917"], ["updated_at", "2015-03-18 23:09:18.731917"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rebekatrisot@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rebekatrisot@gmail.com"], ["list_id", 1], ["name", "laura"], ["last_name", "trisot"], ["created_at", "2015-03-18 23:09:18.740674"], ["updated_at", "2015-03-18 23:09:18.740674"]]  (5.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macatrella@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macatrella@hotmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Zuñiga"], ["created_at", "2015-03-18 23:09:18.752456"], ["updated_at", "2015-03-18 23:09:18.752456"]]  (4.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Hiluxxion@juno.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Hiluxxion@juno.com"], ["list_id", 1], ["name", "Horacio"], ["last_name", "Molina"], ["created_at", "2015-03-18 23:09:18.763543"], ["updated_at", "2015-03-18 23:09:18.763543"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "conny_ls@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "conny_ls@hotmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "López"], ["created_at", "2015-03-18 23:09:18.773150"], ["updated_at", "2015-03-18 23:09:18.773150"]]  (3.9ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lic.art.vis.exp.foto@live.com.mx"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lic.art.vis.exp.foto@live.com.mx"], ["list_id", 1], ["name", "JoséCarlos"], ["last_name", "Yañez"], ["created_at", "2015-03-18 23:09:18.783628"], ["updated_at", "2015-03-18 23:09:18.783628"]]  (6.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastianpzamora@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastianpzamora@gmail.com"], ["list_id", 1], ["name", "Sebastian"], ["last_name", "Peña Zamora"], ["created_at", "2015-03-18 23:09:18.802715"], ["updated_at", "2015-03-18 23:09:18.802715"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "panchomelo@mac.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "panchomelo@mac.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Melo"], ["created_at", "2015-03-18 23:09:18.812483"], ["updated_at", "2015-03-18 23:09:18.812483"]]  (23.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jamettvenegas@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jamettvenegas@gmail.com"], ["list_id", 1], ["name", "Álex"], ["last_name", "Fabián"], ["created_at", "2015-03-18 23:09:18.843079"], ["updated_at", "2015-03-18 23:09:18.843079"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "recuperaelsilencio10@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "recuperaelsilencio10@gmail.com"], ["list_id", 1], ["name", "felipe"], ["last_name", "carrasco (piri)"], ["created_at", "2015-03-18 23:09:18.853623"], ["updated_at", "2015-03-18 23:09:18.853623"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artesirina@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artesirina@yahoo.com.ar"], ["list_id", 1], ["name", "Irina"], ["last_name", "Shutova"], ["created_at", "2015-03-18 23:09:18.863778"], ["updated_at", "2015-03-18 23:09:18.863778"]]  (18.0ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulavltaller@gmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulavltaller@gmail.com"], ["list_id", 1], ["name", "Paula"], ["last_name", "Vergara Lira"], ["created_at", "2015-03-18 23:09:18.889704"], ["updated_at", "2015-03-18 23:09:18.889704"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "stephanievmc@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "stephanievmc@hotmail.com"], ["list_id", 1], ["name", "Stephanie"], ["last_name", "Cabrera"], ["created_at", "2015-03-18 23:09:18.902769"], ["updated_at", "2015-03-18 23:09:18.902769"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "perezmoni@gmail.com"]]  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "perezmoni@gmail.com"], ["list_id", 1], ["name", "Monica"], ["last_name", "Perez"], ["created_at", "2015-03-18 23:09:18.913578"], ["updated_at", "2015-03-18 23:09:18.913578"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daniela.walker.f@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daniela.walker.f@gmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Walker"], ["created_at", "2015-03-18 23:09:18.923584"], ["updated_at", "2015-03-18 23:09:18.923584"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elkcon13@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elkcon13@hotmail.com"], ["list_id", 1], ["name", "Feliberto"], ["last_name", "de Jesus Pichardo Valerio"], ["created_at", "2015-03-18 23:09:18.932818"], ["updated_at", "2015-03-18 23:09:18.932818"]]  (36.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "suyaiota@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "suyaiota@gmail.com"], ["list_id", 1], ["name", "Suyai"], ["last_name", "Otaño"], ["created_at", "2015-03-18 23:09:18.976342"], ["updated_at", "2015-03-18 23:09:18.976342"]]  (7.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "neoprotoconceptual@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "neoprotoconceptual@gmail.com"], ["list_id", 1], ["name", "julio"], ["last_name", "cesar briones moreno"], ["created_at", "2015-03-18 23:09:18.990714"], ["updated_at", "2015-03-18 23:09:18.990714"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ccxxs@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ccxxs@hotmail.com"], ["list_id", 1], ["name", "Claudio"], ["last_name", ""], ["created_at", "2015-03-18 23:09:19.001730"], ["updated_at", "2015-03-18 23:09:19.001730"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mluzcovarrubias@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mluzcovarrubias@gmail.com"], ["list_id", 1], ["name", "maría"], ["last_name", "luz covarrubias"], ["created_at", "2015-03-18 23:09:19.010415"], ["updated_at", "2015-03-18 23:09:19.010415"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "starkahbl@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "starkahbl@hotmail.com"], ["list_id", 1], ["name", "Andrea"], ["last_name", "Stark"], ["created_at", "2015-03-18 23:09:19.020605"], ["updated_at", "2015-03-18 23:09:19.020605"]]  (51.7ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gustavrios@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gustavrios@hotmail.com"], ["list_id", 1], ["name", "gustavo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:19.079780"], ["updated_at", "2015-03-18 23:09:19.079780"]]  (4.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joserafael_cch@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joserafael_cch@hotmail.com"], ["list_id", 1], ["name", "Jose"], ["last_name", "Rafael Cordero"], ["created_at", "2015-03-18 23:09:19.091713"], ["updated_at", "2015-03-18 23:09:19.091713"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulinaw1@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulinaw1@gmail.com"], ["list_id", 1], ["name", "PAULINA"], ["last_name", "WAGEMANN"], ["created_at", "2015-03-18 23:09:19.101368"], ["updated_at", "2015-03-18 23:09:19.101368"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marquezpease@att.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marquezpease@att.net"], ["list_id", 1], ["name", "Silvia"], ["last_name", "Marquez Pease"], ["created_at", "2015-03-18 23:09:19.111045"], ["updated_at", "2015-03-18 23:09:19.111045"]]  (7.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rincondelarte@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rincondelarte@hotmail.com"], ["list_id", 1], ["name", "flor"], ["last_name", "Soiza Robledo"], ["created_at", "2015-03-18 23:09:19.136535"], ["updated_at", "2015-03-18 23:09:19.136535"]]  (4.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pabloregalante@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pabloregalante@hotmail.com"], ["list_id", 1], ["name", "pablo"], ["last_name", "pérez regalante"], ["created_at", "2015-03-18 23:09:19.147263"], ["updated_at", "2015-03-18 23:09:19.147263"]]  (24.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fernanda.pringles@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fernanda.pringles@hotmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Fernanda"], ["created_at", "2015-03-18 23:09:19.180638"], ["updated_at", "2015-03-18 23:09:19.180638"]]  (4.0ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tulioperaza@yahoo.it"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tulioperaza@yahoo.it"], ["list_id", 1], ["name", "Tulio"], ["last_name", "Peraza"], ["created_at", "2015-03-18 23:09:19.192081"], ["updated_at", "2015-03-18 23:09:19.192081"]]  (22.4ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matiasacuna.cl@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matiasacuna.cl@gmail.com"], ["list_id", 1], ["name", "Matías"], ["last_name", "Acuña"], ["created_at", "2015-03-18 23:09:19.222289"], ["updated_at", "2015-03-18 23:09:19.222289"]]  (5.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dagas969@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dagas969@hotmail.com"], ["list_id", 1], ["name", "vicente"], ["last_name", "ibañez"], ["created_at", "2015-03-18 23:09:19.235530"], ["updated_at", "2015-03-18 23:09:19.235530"]]  (38.1ms) commit transaction Postino::Subscriber Load (2.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tomk32@gmx.de"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tomk32@gmx.de"], ["list_id", 1], ["name", "Thomas"], ["last_name", "R. Koll"], ["created_at", "2015-03-18 23:09:19.281924"], ["updated_at", "2015-03-18 23:09:19.281924"]]  (12.7ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "3colores@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "3colores@gmail.com"], ["list_id", 1], ["name", "camilo"], ["last_name", "ortega prieto"], ["created_at", "2015-03-18 23:09:19.300854"], ["updated_at", "2015-03-18 23:09:19.300854"]]  (22.5ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mostornol@osku.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mostornol@osku.cl"], ["list_id", 1], ["name", "Mauricio"], ["last_name", ""], ["created_at", "2015-03-18 23:09:19.331691"], ["updated_at", "2015-03-18 23:09:19.331691"]]  (7.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ale.legar@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ale.legar@hotmail.com"], ["list_id", 1], ["name", "alexander"], ["last_name", "de los santos garcia"], ["created_at", "2015-03-18 23:09:19.345790"], ["updated_at", "2015-03-18 23:09:19.345790"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "respirovisual@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "respirovisual@gmail.com"], ["list_id", 1], ["name", "ValBD"], ["last_name", ""], ["created_at", "2015-03-18 23:09:19.355505"], ["updated_at", "2015-03-18 23:09:19.355505"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "charlot1935@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "charlot1935@hotmail.com"], ["list_id", 1], ["name", "charly"], ["last_name", "vargas martinez"], ["created_at", "2015-03-18 23:09:19.365002"], ["updated_at", "2015-03-18 23:09:19.365002"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mpescev@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mpescev@gmail.com"], ["list_id", 1], ["name", "Mauro"], ["last_name", "Pesce"], ["created_at", "2015-03-18 23:09:19.384613"], ["updated_at", "2015-03-18 23:09:19.384613"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yoya.zamora.manzur@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yoya.zamora.manzur@gmail.com"], ["list_id", 1], ["name", "Yoya"], ["last_name", "Zamora Manzur"], ["created_at", "2015-03-18 23:09:19.393666"], ["updated_at", "2015-03-18 23:09:19.393666"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elmerello@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elmerello@gmail.com"], ["list_id", 1], ["name", "JUAN"], ["last_name", "PABLO MERELLO"], ["created_at", "2015-03-18 23:09:19.402968"], ["updated_at", "2015-03-18 23:09:19.402968"]]  (4.1ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "martinezcorcueraelicio@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "martinezcorcueraelicio@yahoo.es"], ["list_id", 1], ["name", "Elicio"], ["last_name", "martinez Corcuera"], ["created_at", "2015-03-18 23:09:19.413371"], ["updated_at", "2015-03-18 23:09:19.413371"]]  (4.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cancanxoxo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cancanxoxo@hotmail.com"], ["list_id", 1], ["name", "DGKarlaKano"], ["last_name", ""], ["created_at", "2015-03-18 23:09:19.424110"], ["updated_at", "2015-03-18 23:09:19.424110"]]  (15.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "olgalu_1020@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "olgalu_1020@hotmail.com"], ["list_id", 1], ["name", "olga"], ["last_name", ""], ["created_at", "2015-03-18 23:09:19.446538"], ["updated_at", "2015-03-18 23:09:19.446538"]]  (19.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zukujnomo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zukujnomo@hotmail.com"], ["list_id", 1], ["name", "Paola"], ["last_name", "Beatriz González Farias"], ["created_at", "2015-03-18 23:09:19.473521"], ["updated_at", "2015-03-18 23:09:19.473521"]]  (10.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sr.antipirina@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sr.antipirina@gmail.com"], ["list_id", 1], ["name", "René"], ["last_name", "Valiente"], ["created_at", "2015-03-18 23:09:19.491958"], ["updated_at", "2015-03-18 23:09:19.491958"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mra_mexicano@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mra_mexicano@hotmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Angel Reyes Arreola"], ["created_at", "2015-03-18 23:09:19.502718"], ["updated_at", "2015-03-18 23:09:19.502718"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yo_nunca@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yo_nunca@hotmail.com"], ["list_id", 1], ["name", "iri"], ["last_name", ""], ["created_at", "2015-03-18 23:09:19.512217"], ["updated_at", "2015-03-18 23:09:19.512217"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "abrilmontealegre@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "abrilmontealegre@hotmail.com"], ["list_id", 1], ["name", "Abril"], ["last_name", "Montealegre"], ["created_at", "2015-03-18 23:09:19.521713"], ["updated_at", "2015-03-18 23:09:19.521713"]]  (63.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nammaste@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nammaste@gmail.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Marcos"], ["created_at", "2015-03-18 23:09:19.593344"], ["updated_at", "2015-03-18 23:09:19.593344"]]  (21.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paolavergottini@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paolavergottini@hotmail.com"], ["list_id", 1], ["name", "Paola"], ["last_name", "Vergottini"], ["created_at", "2015-03-18 23:09:19.622038"], ["updated_at", "2015-03-18 23:09:19.622038"]]  (8.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "celsotrufel@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "celsotrufel@hotmail.com"], ["list_id", 1], ["name", "celso"], ["last_name", "trufel"], ["created_at", "2015-03-18 23:09:19.637937"], ["updated_at", "2015-03-18 23:09:19.637937"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "edgardgamboa@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "edgardgamboa@hotmail.com"], ["list_id", 1], ["name", "EDGARD"], ["last_name", "GAMBOA"], ["created_at", "2015-03-18 23:09:19.650911"], ["updated_at", "2015-03-18 23:09:19.650911"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alenubu@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alenubu@hotmail.com"], ["list_id", 1], ["name", "alejandra"], ["last_name", ""], ["created_at", "2015-03-18 23:09:19.660678"], ["updated_at", "2015-03-18 23:09:19.660678"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hubertcano@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hubertcano@yahoo.com"], ["list_id", 1], ["name", "HUBERT"], ["last_name", "CAÑO"], ["created_at", "2015-03-18 23:09:19.669201"], ["updated_at", "2015-03-18 23:09:19.669201"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gredwest27@yahoo.com.ve"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gredwest27@yahoo.com.ve"], ["list_id", 1], ["name", "Greg"], ["last_name", "Rosales"], ["created_at", "2015-03-18 23:09:19.679484"], ["updated_at", "2015-03-18 23:09:19.679484"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nellyjosefina.go@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nellyjosefina.go@gmail.com"], ["list_id", 1], ["name", "Nelly"], ["last_name", "Josefina Gonzalez Ortiz"], ["created_at", "2015-03-18 23:09:19.688811"], ["updated_at", "2015-03-18 23:09:19.688811"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xitalope@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xitalope@hotmail.com"], ["list_id", 1], ["name", "Ximena"], ["last_name", "Fernandez"], ["created_at", "2015-03-18 23:09:19.701163"], ["updated_at", "2015-03-18 23:09:19.701163"]]  (5.2ms) commit transaction Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mmolinasaldivia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mmolinasaldivia@gmail.com"], ["list_id", 1], ["name", "miguel"], ["last_name", "molina saldivia"], ["created_at", "2015-03-18 23:09:19.712389"], ["updated_at", "2015-03-18 23:09:19.712389"]]  (5.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lihnterna@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lihnterna@hotmail.com"], ["list_id", 1], ["name", "Andrés"], ["last_name", "Urzúa de la Sotta"], ["created_at", "2015-03-18 23:09:19.724190"], ["updated_at", "2015-03-18 23:09:19.724190"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "helena.helenahlm@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "helena.helenahlm@gmail.com"], ["list_id", 1], ["name", "Helena"], ["last_name", "Losada"], ["created_at", "2015-03-18 23:09:19.734474"], ["updated_at", "2015-03-18 23:09:19.734474"]]  (4.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "j.castillo.norambuena@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "j.castillo.norambuena@gmail.com"], ["list_id", 1], ["name", "Jose"], ["last_name", "Castillo Norambuena"], ["created_at", "2015-03-18 23:09:19.750500"], ["updated_at", "2015-03-18 23:09:19.750500"]]  (15.7ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ayurac@mclarens.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ayurac@mclarens.cl"], ["list_id", 1], ["name", "Alejandro"], ["last_name", "Yurac"], ["created_at", "2015-03-18 23:09:19.773960"], ["updated_at", "2015-03-18 23:09:19.773960"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diego.celedon@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diego.celedon@gmail.com"], ["list_id", 1], ["name", "Diego"], ["last_name", "Celedón"], ["created_at", "2015-03-18 23:09:19.784324"], ["updated_at", "2015-03-18 23:09:19.784324"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "robobertobmc@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "robobertobmc@hotmail.com"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Barrios"], ["created_at", "2015-03-18 23:09:19.799964"], ["updated_at", "2015-03-18 23:09:19.799964"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodver.89@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodver.89@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Vergara"], ["created_at", "2015-03-18 23:09:19.809444"], ["updated_at", "2015-03-18 23:09:19.809444"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rgarcia@duratex.com.mx"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rgarcia@duratex.com.mx"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:19.817732"], ["updated_at", "2015-03-18 23:09:19.817732"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "isabel@thebraun.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "isabel@thebraun.com"], ["list_id", 1], ["name", "Isabel"], ["last_name", "M. Fernandez"], ["created_at", "2015-03-18 23:09:19.826827"], ["updated_at", "2015-03-18 23:09:19.826827"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "isrodriguez44@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "isrodriguez44@gmail.com"], ["list_id", 1], ["name", "Ender"], ["last_name", "Rodríguez"], ["created_at", "2015-03-18 23:09:19.836141"], ["updated_at", "2015-03-18 23:09:19.836141"]]  (5.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariainesmoragam@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariainesmoragam@gmail.com"], ["list_id", 1], ["name", "mane"], ["last_name", "moraga m"], ["created_at", "2015-03-18 23:09:19.849955"], ["updated_at", "2015-03-18 23:09:19.849955"]]  (56.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanjoselizama@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanjoselizama@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "José Lizama Ovalle"], ["created_at", "2015-03-18 23:09:19.913298"], ["updated_at", "2015-03-18 23:09:19.913298"]]  (14.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rpeonveiga@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rpeonveiga@gmail.com"], ["list_id", 1], ["name", "Ramiro"], ["last_name", "Peon-Veiga"], ["created_at", "2015-03-18 23:09:19.934297"], ["updated_at", "2015-03-18 23:09:19.934297"]]  (24.0ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Lecktor_8AD@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Lecktor_8AD@hotmail.com"], ["list_id", 1], ["name", "David"], ["last_name", "Angel"], ["created_at", "2015-03-18 23:09:19.965802"], ["updated_at", "2015-03-18 23:09:19.965802"]]  (21.6ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yiyizak@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yiyizak@gmail.com"], ["list_id", 1], ["name", "yiyi"], ["last_name", "zakowicz"], ["created_at", "2015-03-18 23:09:19.995178"], ["updated_at", "2015-03-18 23:09:19.995178"]]  (18.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sdesigner@virgilio.it"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sdesigner@virgilio.it"], ["list_id", 1], ["name", "rosaria"], ["last_name", "isabella cavallaro bustamante"], ["created_at", "2015-03-18 23:09:20.019855"], ["updated_at", "2015-03-18 23:09:20.019855"]]  (18.7ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eduardozepeda@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eduardozepeda@hotmail.com"], ["list_id", 1], ["name", "Eduardo"], ["last_name", "Zepeda Palma"], ["created_at", "2015-03-18 23:09:20.045567"], ["updated_at", "2015-03-18 23:09:20.045567"]]  (18.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ceballalex@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ceballalex@hotmail.com"], ["list_id", 1], ["name", "©THE"], ["last_name", "ALEX CEBALL STUDIO_WORLDWIDE_"], ["created_at", "2015-03-18 23:09:20.070905"], ["updated_at", "2015-03-18 23:09:20.070905"]]  (23.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisco.sanchu15@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisco.sanchu15@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Pino Leiva"], ["created_at", "2015-03-18 23:09:20.101715"], ["updated_at", "2015-03-18 23:09:20.101715"]]  (25.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manray75@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manray75@hotmail.com"], ["list_id", 1], ["name", "cristobal"], ["last_name", "perez calvo"], ["created_at", "2015-03-18 23:09:20.134293"], ["updated_at", "2015-03-18 23:09:20.134293"]]  (19.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danny.landry@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danny.landry@gmail.com"], ["list_id", 1], ["name", "LANDRY"], ["last_name", "ART"], ["created_at", "2015-03-18 23:09:20.161117"], ["updated_at", "2015-03-18 23:09:20.161117"]]  (22.1ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@graficamaxva.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@graficamaxva.cl"], ["list_id", 1], ["name", "ricardo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:20.191018"], ["updated_at", "2015-03-18 23:09:20.191018"]]  (21.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "meriyeim@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "meriyeim@gmail.com"], ["list_id", 1], ["name", "Leslie"], ["last_name", "Balaguer"], ["created_at", "2015-03-18 23:09:20.219440"], ["updated_at", "2015-03-18 23:09:20.219440"]]  (7.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miguel.gamboahuerta@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miguel.gamboahuerta@gmail.com"], ["list_id", 1], ["name", "miguel"], ["last_name", "gamboa huerta"], ["created_at", "2015-03-18 23:09:20.233929"], ["updated_at", "2015-03-18 23:09:20.233929"]]  (24.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rossearquitecto@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rossearquitecto@hotmail.com"], ["list_id", 1], ["name", "jorge"], ["last_name", "rossel s"], ["created_at", "2015-03-18 23:09:20.265236"], ["updated_at", "2015-03-18 23:09:20.265236"]]  (3.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vitorius7@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vitorius7@yahoo.com"], ["list_id", 1], ["name", "Victor"], ["last_name", "Femenías von Willigmann"], ["created_at", "2015-03-18 23:09:20.276113"], ["updated_at", "2015-03-18 23:09:20.276113"]]  (65.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amaranta.espinoza@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amaranta.espinoza@gmail.com"], ["list_id", 1], ["name", "Amaranta"], ["last_name", "Ursula Espinoza"], ["created_at", "2015-03-18 23:09:20.348620"], ["updated_at", "2015-03-18 23:09:20.348620"]]  (23.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arturomusa@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arturomusa@hotmail.com"], ["list_id", 1], ["name", "Musa"], ["last_name", ""], ["created_at", "2015-03-18 23:09:20.379890"], ["updated_at", "2015-03-18 23:09:20.379890"]]  (12.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "buitredelespacio@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "buitredelespacio@hotmail.com"], ["list_id", 1], ["name", "Ernesto"], ["last_name", "Loza"], ["created_at", "2015-03-18 23:09:20.496291"], ["updated_at", "2015-03-18 23:09:20.496291"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "interruptorno@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "interruptorno@gmail.com"], ["list_id", 1], ["name", "Italo"], ["last_name", "Contador"], ["created_at", "2015-03-18 23:09:20.506286"], ["updated_at", "2015-03-18 23:09:20.506286"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jimena.villaseca@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jimena.villaseca@gmail.com"], ["list_id", 1], ["name", "Jimena"], ["last_name", "Villaseca"], ["created_at", "2015-03-18 23:09:20.515222"], ["updated_at", "2015-03-18 23:09:20.515222"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudiografic@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudiografic@yahoo.com"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Paolasso"], ["created_at", "2015-03-18 23:09:20.525271"], ["updated_at", "2015-03-18 23:09:20.525271"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "castillocamposjuan@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "castillocamposjuan@gmail.com"], ["list_id", 1], ["name", "ARTESANO"], ["last_name", "STENCIL"], ["created_at", "2015-03-18 23:09:20.534182"], ["updated_at", "2015-03-18 23:09:20.534182"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juank_0516@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juank_0516@gmail.com"], ["list_id", 1], ["name", "juan"], ["last_name", "camilo arevalo cubides"], ["created_at", "2015-03-18 23:09:20.548189"], ["updated_at", "2015-03-18 23:09:20.548189"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cesar_ko@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cesar_ko@yahoo.com.mx"], ["list_id", 1], ["name", "César"], ["last_name", "Cortés Vega"], ["created_at", "2015-03-18 23:09:20.558140"], ["updated_at", "2015-03-18 23:09:20.558140"]]  (13.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mitasoto@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mitasoto@yahoo.com.mx"], ["list_id", 1], ["name", "martha"], ["last_name", "soto"], ["created_at", "2015-03-18 23:09:20.578595"], ["updated_at", "2015-03-18 23:09:20.578595"]]  (15.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "veronica.comino@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "veronica.comino@gmail.com"], ["list_id", 1], ["name", "Verónica"], ["last_name", "Comino García"], ["created_at", "2015-03-18 23:09:20.601271"], ["updated_at", "2015-03-18 23:09:20.601271"]]  (20.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tallermarchant@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tallermarchant@gmail.com"], ["list_id", 1], ["name", "Ignacio"], ["last_name", "Bustos Marchant"], ["created_at", "2015-03-18 23:09:20.629238"], ["updated_at", "2015-03-18 23:09:20.629238"]]  (5.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "catavegaphotos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "catavegaphotos@gmail.com"], ["list_id", 1], ["name", "Cata"], ["last_name", "Vega Photos"], ["created_at", "2015-03-18 23:09:20.648101"], ["updated_at", "2015-03-18 23:09:20.648101"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nellarpavesio@fibertel.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nellarpavesio@fibertel.com.ar"], ["list_id", 1], ["name", "silvina"], ["last_name", ""], ["created_at", "2015-03-18 23:09:20.657141"], ["updated_at", "2015-03-18 23:09:20.657141"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "acrio_2008@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "acrio_2008@hotmail.com"], ["list_id", 1], ["name", "luis"], ["last_name", "jgerardo"], ["created_at", "2015-03-18 23:09:20.666735"], ["updated_at", "2015-03-18 23:09:20.666735"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "infohugortiz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "infohugortiz@gmail.com"], ["list_id", 1], ["name", "Hugo"], ["last_name", "Ortíz"], ["created_at", "2015-03-18 23:09:20.675527"], ["updated_at", "2015-03-18 23:09:20.675527"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "calinutigret@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "calinutigret@yahoo.com"], ["list_id", 1], ["name", "calin"], ["last_name", ""], ["created_at", "2015-03-18 23:09:20.684394"], ["updated_at", "2015-03-18 23:09:20.684394"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ampuero.juancarlos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ampuero.juancarlos@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Carlos"], ["created_at", "2015-03-18 23:09:20.698467"], ["updated_at", "2015-03-18 23:09:20.698467"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marust09@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marust09@gmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Eugenia Semprun"], ["created_at", "2015-03-18 23:09:20.707652"], ["updated_at", "2015-03-18 23:09:20.707652"]]  (5.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antonietarrpp@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antonietarrpp@gmail.com"], ["list_id", 1], ["name", "antonieta"], ["last_name", ""], ["created_at", "2015-03-18 23:09:20.719730"], ["updated_at", "2015-03-18 23:09:20.719730"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chechonouvel@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chechonouvel@gmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Nouvel"], ["created_at", "2015-03-18 23:09:20.729227"], ["updated_at", "2015-03-18 23:09:20.729227"]]  (7.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maida.yolin@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maida.yolin@gmail.com"], ["list_id", 1], ["name", "Magdalena"], ["last_name", "Yolin"], ["created_at", "2015-03-18 23:09:20.748171"], ["updated_at", "2015-03-18 23:09:20.748171"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hayferbrea@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hayferbrea@gmail.com"], ["list_id", 1], ["name", "Hayfer"], ["last_name", "Brea"], ["created_at", "2015-03-18 23:09:20.757928"], ["updated_at", "2015-03-18 23:09:20.757928"]]  (13.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arakoshiro@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arakoshiro@gmail.com"], ["list_id", 1], ["name", "Ara"], ["last_name", "Koshiro"], ["created_at", "2015-03-18 23:09:20.779109"], ["updated_at", "2015-03-18 23:09:20.779109"]]  (4.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eethit@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eethit@hotmail.com"], ["list_id", 1], ["name", "emilio"], ["last_name", ""], ["created_at", "2015-03-18 23:09:20.798827"], ["updated_at", "2015-03-18 23:09:20.798827"]]  (7.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "estela@artedelvalle.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "estela@artedelvalle.cl"], ["list_id", 1], ["name", "estela"], ["last_name", ""], ["created_at", "2015-03-18 23:09:20.812536"], ["updated_at", "2015-03-18 23:09:20.812536"]]  (21.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "esteladelvalle@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "esteladelvalle@gmail.com"], ["list_id", 1], ["name", "estela"], ["last_name", ""], ["created_at", "2015-03-18 23:09:20.840595"], ["updated_at", "2015-03-18 23:09:20.840595"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "infoyolandavela@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "infoyolandavela@gmail.com"], ["list_id", 1], ["name", "Yolanda"], ["last_name", "Vela"], ["created_at", "2015-03-18 23:09:20.852237"], ["updated_at", "2015-03-18 23:09:20.852237"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rojas.alfredo@tie.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rojas.alfredo@tie.cl"], ["list_id", 1], ["name", "Alfredo"], ["last_name", "Rojas Bouey"], ["created_at", "2015-03-18 23:09:20.860995"], ["updated_at", "2015-03-18 23:09:20.860995"]]  (8.7ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristina.coello@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristina.coello@gmail.com"], ["list_id", 1], ["name", "o"], ["last_name", ""], ["created_at", "2015-03-18 23:09:20.877026"], ["updated_at", "2015-03-18 23:09:20.877026"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "m.soledad.sairafi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "m.soledad.sairafi@gmail.com"], ["list_id", 1], ["name", "Soledad"], ["last_name", "Sairafi"], ["created_at", "2015-03-18 23:09:20.887119"], ["updated_at", "2015-03-18 23:09:20.887119"]]  (5.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "animiranda@mirandaqiuiroz.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "animiranda@mirandaqiuiroz.cl"], ["list_id", 1], ["name", "Ana"], ["last_name", "Maria Miranda Quiroz"], ["created_at", "2015-03-18 23:09:20.898842"], ["updated_at", "2015-03-18 23:09:20.898842"]]  (73.0ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antoniogalazm@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antoniogalazm@gmail.com"], ["list_id", 1], ["name", "Antonio"], ["last_name", "Galaz"], ["created_at", "2015-03-18 23:09:20.980483"], ["updated_at", "2015-03-18 23:09:20.980483"]]  (14.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elena.erre@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elena.erre@hotmail.com"], ["list_id", 1], ["name", "Elena"], ["last_name", ""], ["created_at", "2015-03-18 23:09:21.002606"], ["updated_at", "2015-03-18 23:09:21.002606"]]  (19.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "diego.tejada.gamboa@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "diego.tejada.gamboa@gmail.com"], ["list_id", 1], ["name", "diego"], ["last_name", "rodrigo"], ["created_at", "2015-03-18 23:09:21.029930"], ["updated_at", "2015-03-18 23:09:21.029930"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antoniaarriagada@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antoniaarriagada@gmail.com"], ["list_id", 1], ["name", "Antonia"], ["last_name", "Arriagada Monreal"], ["created_at", "2015-03-18 23:09:21.047331"], ["updated_at", "2015-03-18 23:09:21.047331"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "billa_arquitecto@yahoo.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "billa_arquitecto@yahoo.cl"], ["list_id", 1], ["name", "Karina"], ["last_name", "Billa"], ["created_at", "2015-03-18 23:09:21.056939"], ["updated_at", "2015-03-18 23:09:21.056939"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@waldenuno.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@waldenuno.es"], ["list_id", 1], ["name", "Fernando"], ["last_name", ""], ["created_at", "2015-03-18 23:09:21.066147"], ["updated_at", "2015-03-18 23:09:21.066147"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sbaudrand@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sbaudrand@gmail.com"], ["list_id", 1], ["name", "Sebastián"], ["last_name", "Baudrand"], ["created_at", "2015-03-18 23:09:21.075150"], ["updated_at", "2015-03-18 23:09:21.075150"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bizarredream2002@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bizarredream2002@hotmail.com"], ["list_id", 1], ["name", "manuel"], ["last_name", "romero ochoa"], ["created_at", "2015-03-18 23:09:21.084935"], ["updated_at", "2015-03-18 23:09:21.084935"]]  (13.5ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanade_22@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanade_22@hotmail.com"], ["list_id", 1], ["name", "Juana"], ["last_name", ""], ["created_at", "2015-03-18 23:09:21.104682"], ["updated_at", "2015-03-18 23:09:21.104682"]]  (4.0ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ronniematteorodriguez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ronniematteorodriguez@gmail.com"], ["list_id", 1], ["name", "ronnie"], ["last_name", "matteo rodriguez"], ["created_at", "2015-03-18 23:09:21.115340"], ["updated_at", "2015-03-18 23:09:21.115340"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maldok@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maldok@hotmail.com"], ["list_id", 1], ["name", "Joaquin"], ["last_name", "Maldonado"], ["created_at", "2015-03-18 23:09:21.124936"], ["updated_at", "2015-03-18 23:09:21.124936"]]  (17.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "guillermomunoz@live.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "guillermomunoz@live.cl"], ["list_id", 1], ["name", "Guillermo"], ["last_name", "Muñoz"], ["created_at", "2015-03-18 23:09:21.148952"], ["updated_at", "2015-03-18 23:09:21.148952"]]  (27.5ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nicolasbasaure84@gmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nicolasbasaure84@gmail.com"], ["list_id", 1], ["name", "Nicolás"], ["last_name", "Basaure Gutiérrez"], ["created_at", "2015-03-18 23:09:21.184533"], ["updated_at", "2015-03-18 23:09:21.184533"]]  (14.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "peralta.andres@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "peralta.andres@gmail.com"], ["list_id", 1], ["name", "andres"], ["last_name", ""], ["created_at", "2015-03-18 23:09:21.205496"], ["updated_at", "2015-03-18 23:09:21.205496"]]  (21.0ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bustamante.olguin@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bustamante.olguin@gmail.com"], ["list_id", 1], ["name", "maria"], ["last_name", "jose bustamante olguin"], ["created_at", "2015-03-18 23:09:21.234168"], ["updated_at", "2015-03-18 23:09:21.234168"]]  (11.9ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mcbricen@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mcbricen@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Briceño"], ["created_at", "2015-03-18 23:09:21.254045"], ["updated_at", "2015-03-18 23:09:21.254045"]]  (14.2ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Posa.artista@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Posa.artista@gmail.com"], ["list_id", 1], ["name", "JAIME"], ["last_name", "POSA"], ["created_at", "2015-03-18 23:09:21.276246"], ["updated_at", "2015-03-18 23:09:21.276246"]]  (7.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "e.cristoffanini@gmail.com"]]  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "e.cristoffanini@gmail.com"], ["list_id", 1], ["name", "Etienne"], ["last_name", "Cristoffanini-Ross"], ["created_at", "2015-03-18 23:09:21.292664"], ["updated_at", "2015-03-18 23:09:21.292664"]]  (21.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jaelverdugo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jaelverdugo@gmail.com"], ["list_id", 1], ["name", "jael"], ["last_name", ""], ["created_at", "2015-03-18 23:09:21.321455"], ["updated_at", "2015-03-18 23:09:21.321455"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigo@zamora.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigo@zamora.cl"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Zamora"], ["created_at", "2015-03-18 23:09:21.331893"], ["updated_at", "2015-03-18 23:09:21.331893"]]  (7.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "abrilandrade@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "abrilandrade@yahoo.com"], ["list_id", 1], ["name", "Abril"], ["last_name", "Andrade Griffith"], ["created_at", "2015-03-18 23:09:21.346979"], ["updated_at", "2015-03-18 23:09:21.346979"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marlena.prez@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marlena.prez@hotmail.com"], ["list_id", 1], ["name", "Marlena"], ["last_name", ""], ["created_at", "2015-03-18 23:09:21.357328"], ["updated_at", "2015-03-18 23:09:21.357328"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cazador-de-dioses@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cazador-de-dioses@hotmail.com"], ["list_id", 1], ["name", "lino"], ["last_name", "fernandez"], ["created_at", "2015-03-18 23:09:21.367328"], ["updated_at", "2015-03-18 23:09:21.367328"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlos.marti@itelefonica.com.br"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlos.marti@itelefonica.com.br"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Marti Formento"], ["created_at", "2015-03-18 23:09:21.377145"], ["updated_at", "2015-03-18 23:09:21.377145"]]  (19.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sexo-pudor-y-donas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sexo-pudor-y-donas@hotmail.com"], ["list_id", 1], ["name", "Danae"], ["last_name", ""], ["created_at", "2015-03-18 23:09:21.403376"], ["updated_at", "2015-03-18 23:09:21.403376"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "RODRIGO_COMICS@HOTMAIL.COM"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "RODRIGO_COMICS@HOTMAIL.COM"], ["list_id", 1], ["name", "RODRIGO"], ["last_name", "ARAYA SALAS"], ["created_at", "2015-03-18 23:09:21.413326"], ["updated_at", "2015-03-18 23:09:21.413326"]]  (19.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "m_sanchez200@yahoo.es"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "m_sanchez200@yahoo.es"], ["list_id", 1], ["name", "mario"], ["last_name", "sanchez rodriguez"], ["created_at", "2015-03-18 23:09:21.440357"], ["updated_at", "2015-03-18 23:09:21.440357"]]  (10.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lillollillo@libero.it"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lillollillo@libero.it"], ["list_id", 1], ["name", "memmo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:21.459734"], ["updated_at", "2015-03-18 23:09:21.459734"]]  (4.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rufo_milfuegos@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rufo_milfuegos@hotmail.com"], ["list_id", 1], ["name", "RUFO"], ["last_name", ""], ["created_at", "2015-03-18 23:09:21.470308"], ["updated_at", "2015-03-18 23:09:21.470308"]]  (19.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anibal.osses@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anibal.osses@gmail.com"], ["list_id", 1], ["name", "patricio"], ["last_name", "osses"], ["created_at", "2015-03-18 23:09:21.496423"], ["updated_at", "2015-03-18 23:09:21.496423"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aeroc27@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aeroc27@hotmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "González"], ["created_at", "2015-03-18 23:09:21.505732"], ["updated_at", "2015-03-18 23:09:21.505732"]]  (20.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "flore.montero@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "flore.montero@gmail.com"], ["list_id", 1], ["name", "florencia"], ["last_name", "montero murrie"], ["created_at", "2015-03-18 23:09:21.534230"], ["updated_at", "2015-03-18 23:09:21.534230"]]  (740.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "silvinagardonio@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "silvinagardonio@gmail.com"], ["list_id", 1], ["name", "silvina"], ["last_name", "gardonio"], ["created_at", "2015-03-18 23:09:22.282268"], ["updated_at", "2015-03-18 23:09:22.282268"]]  (80.3ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nathalieniniel@gmail.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nathalieniniel@gmail.com"], ["list_id", 1], ["name", "Nathalie"], ["last_name", "Le Feuvre"], ["created_at", "2015-03-18 23:09:22.370697"], ["updated_at", "2015-03-18 23:09:22.370697"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pequisbaldo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pequisbaldo@gmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Riquelme Garrido"], ["created_at", "2015-03-18 23:09:22.381684"], ["updated_at", "2015-03-18 23:09:22.381684"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ladama64@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ladama64@hotmail.com"], ["list_id", 1], ["name", "naheda"], ["last_name", ""], ["created_at", "2015-03-18 23:09:22.391843"], ["updated_at", "2015-03-18 23:09:22.391843"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulatsb@terra.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulatsb@terra.cl"], ["list_id", 1], ["name", "Paula"], ["last_name", "Solís Burgos"], ["created_at", "2015-03-18 23:09:22.401355"], ["updated_at", "2015-03-18 23:09:22.401355"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zampezeatelier@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zampezeatelier@gmail.com"], ["list_id", 1], ["name", "GIULIANO"], ["last_name", "ZAMPEZE ASEM"], ["created_at", "2015-03-18 23:09:22.428299"], ["updated_at", "2015-03-18 23:09:22.428299"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "matildaz70@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "matildaz70@hotmail.com"], ["list_id", 1], ["name", "matilda"], ["last_name", "zapata"], ["created_at", "2015-03-18 23:09:22.437376"], ["updated_at", "2015-03-18 23:09:22.437376"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "robertodgiusti@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "robertodgiusti@hotmail.com"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Daniel Giusti"], ["created_at", "2015-03-18 23:09:22.447371"], ["updated_at", "2015-03-18 23:09:22.447371"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lost.beat@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lost.beat@gmail.com"], ["list_id", 1], ["name", "Gonzalo"], ["last_name", "Fernandez"], ["created_at", "2015-03-18 23:09:22.456918"], ["updated_at", "2015-03-18 23:09:22.456918"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "coni.blen@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "coni.blen@hotmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", ""], ["created_at", "2015-03-18 23:09:22.465582"], ["updated_at", "2015-03-18 23:09:22.465582"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jlabarca@vtr.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jlabarca@vtr.net"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Labarca van Rysselberghe"], ["created_at", "2015-03-18 23:09:22.478027"], ["updated_at", "2015-03-18 23:09:22.478027"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cgvidalopez@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cgvidalopez@hotmail.com"], ["list_id", 1], ["name", "cristian"], ["last_name", "vidal"], ["created_at", "2015-03-18 23:09:22.487085"], ["updated_at", "2015-03-18 23:09:22.487085"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artalin@list.ru"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artalin@list.ru"], ["list_id", 1], ["name", "varticeanu"], ["last_name", "alin"], ["created_at", "2015-03-18 23:09:22.495877"], ["updated_at", "2015-03-18 23:09:22.495877"]]  (330.7ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alin.777@maill.ru"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alin.777@maill.ru"], ["list_id", 1], ["name", "varticeanu"], ["last_name", ""], ["created_at", "2015-03-18 23:09:22.834868"], ["updated_at", "2015-03-18 23:09:22.834868"]]  (184.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ccares@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ccares@gmail.com"], ["list_id", 1], ["name", "CARLOS"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.027523"], ["updated_at", "2015-03-18 23:09:23.027523"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cancinosilva.san@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cancinosilva.san@gmail.com"], ["list_id", 1], ["name", "sancancino"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.036861"], ["updated_at", "2015-03-18 23:09:23.036861"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rogonma.81@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rogonma.81@hotmail.com"], ["list_id", 1], ["name", "Roberto"], ["last_name", "González Martínez"], ["created_at", "2015-03-18 23:09:23.046624"], ["updated_at", "2015-03-18 23:09:23.046624"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yuricelm@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yuricelm@gmail.com"], ["list_id", 1], ["name", "yuricel"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.055576"], ["updated_at", "2015-03-18 23:09:23.055576"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "circoatellier@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "circoatellier@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Muñoz"], ["created_at", "2015-03-18 23:09:23.064807"], ["updated_at", "2015-03-18 23:09:23.064807"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "masescultura@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "masescultura@gmail.com"], ["list_id", 1], ["name", "diego"], ["last_name", "arenas"], ["created_at", "2015-03-18 23:09:23.075744"], ["updated_at", "2015-03-18 23:09:23.075744"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "roberta.requena@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "roberta.requena@gmail.com"], ["list_id", 1], ["name", "Roberta"], ["last_name", "Requena"], ["created_at", "2015-03-18 23:09:23.084981"], ["updated_at", "2015-03-18 23:09:23.084981"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tiscaserigrafia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tiscaserigrafia@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Corvera"], ["created_at", "2015-03-18 23:09:23.094300"], ["updated_at", "2015-03-18 23:09:23.094300"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ncabello@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ncabello@hotmail.com"], ["list_id", 1], ["name", "Nestor"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.102775"], ["updated_at", "2015-03-18 23:09:23.102775"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ottoclowns@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ottoclowns@yahoo.es"], ["list_id", 1], ["name", "Tomás"], ["last_name", "Anguita"], ["created_at", "2015-03-18 23:09:23.111969"], ["updated_at", "2015-03-18 23:09:23.111969"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kmilabr@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kmilabr@gmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "José Bardehle Ruiz"], ["created_at", "2015-03-18 23:09:23.125245"], ["updated_at", "2015-03-18 23:09:23.125245"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "abalvare@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "abalvare@uc.cl"], ["list_id", 1], ["name", "Andrea"], ["last_name", "Álvarez"], ["created_at", "2015-03-18 23:09:23.134502"], ["updated_at", "2015-03-18 23:09:23.134502"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "demati96@hotmail.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "demati96@hotmail.es"], ["list_id", 1], ["name", "christian"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.143562"], ["updated_at", "2015-03-18 23:09:23.143562"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juan_antes@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juan_antes@hotmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Carlos Amaya"], ["created_at", "2015-03-18 23:09:23.152270"], ["updated_at", "2015-03-18 23:09:23.152270"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlos.marti@bol.com.br"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlos.marti@bol.com.br"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Marti"], ["created_at", "2015-03-18 23:09:23.160742"], ["updated_at", "2015-03-18 23:09:23.160742"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iimirandad@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iimirandad@gmail.com"], ["list_id", 1], ["name", "Ingrid"], ["last_name", "Miranda"], ["created_at", "2015-03-18 23:09:23.175490"], ["updated_at", "2015-03-18 23:09:23.175490"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maurocarvajal74@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maurocarvajal74@gmail.com"], ["list_id", 1], ["name", "maurocarvajal"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.185048"], ["updated_at", "2015-03-18 23:09:23.185048"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cinti.pas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cinti.pas@hotmail.com"], ["list_id", 1], ["name", "Cynthia"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.193769"], ["updated_at", "2015-03-18 23:09:23.193769"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mirandaeugenia@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mirandaeugenia@yahoo.es"], ["list_id", 1], ["name", "Eugenia"], ["last_name", "Miranda"], ["created_at", "2015-03-18 23:09:23.202255"], ["updated_at", "2015-03-18 23:09:23.202255"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "coffre28@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "coffre28@hotmail.com"], ["list_id", 1], ["name", "Jhoffre"], ["last_name", "Flores Miranda"], ["created_at", "2015-03-18 23:09:23.211193"], ["updated_at", "2015-03-18 23:09:23.211193"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariagiljirado@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariagiljirado@hotmail.com"], ["list_id", 1], ["name", "maria"], ["last_name", "gil jjurado"], ["created_at", "2015-03-18 23:09:23.225761"], ["updated_at", "2015-03-18 23:09:23.225761"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jesusversusjesus@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jesusversusjesus@gmail.com"], ["list_id", 1], ["name", "jesus"], ["last_name", "roman"], ["created_at", "2015-03-18 23:09:23.234283"], ["updated_at", "2015-03-18 23:09:23.234283"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lartigue22@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lartigue22@hotmail.com"], ["list_id", 1], ["name", "Ruben"], ["last_name", "Lartigue"], ["created_at", "2015-03-18 23:09:23.243433"], ["updated_at", "2015-03-18 23:09:23.243433"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lemort.art@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lemort.art@gmail.com"], ["list_id", 1], ["name", "cristobal"], ["last_name", "guajardo arriagada"], ["created_at", "2015-03-18 23:09:23.251794"], ["updated_at", "2015-03-18 23:09:23.251794"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "stanislav.batalov.art@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "stanislav.batalov.art@gmail.com"], ["list_id", 1], ["name", "Stanislav"], ["last_name", "Batalov"], ["created_at", "2015-03-18 23:09:23.260716"], ["updated_at", "2015-03-18 23:09:23.260716"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "conchitamedina_49@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "conchitamedina_49@hotmail.com"], ["list_id", 1], ["name", "Conchita"], ["last_name", "Medina Amaro"], ["created_at", "2015-03-18 23:09:23.275248"], ["updated_at", "2015-03-18 23:09:23.275248"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juvasque@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juvasque@gmail.com"], ["list_id", 1], ["name", "juan"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.284694"], ["updated_at", "2015-03-18 23:09:23.284694"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felipegalazpacheco@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felipegalazpacheco@gmail.com"], ["list_id", 1], ["name", "felipe"], ["last_name", "galaz"], ["created_at", "2015-03-18 23:09:23.293631"], ["updated_at", "2015-03-18 23:09:23.293631"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "letra.usada@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "letra.usada@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Arturo Mejía"], ["created_at", "2015-03-18 23:09:23.302935"], ["updated_at", "2015-03-18 23:09:23.302935"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "meditativa@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "meditativa@hotmail.com"], ["list_id", 1], ["name", "meditativa"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.312180"], ["updated_at", "2015-03-18 23:09:23.312180"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanmege@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanmege@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Carlos Mege"], ["created_at", "2015-03-18 23:09:23.326131"], ["updated_at", "2015-03-18 23:09:23.326131"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dhsb01@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dhsb01@yahoo.com.ar"], ["list_id", 1], ["name", "Elsa"], ["last_name", "Net"], ["created_at", "2015-03-18 23:09:23.334915"], ["updated_at", "2015-03-18 23:09:23.334915"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dhuerta@vyh-sistemas.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dhuerta@vyh-sistemas.com.ar"], ["list_id", 1], ["name", "Graciela"], ["last_name", "Net"], ["created_at", "2015-03-18 23:09:23.343681"], ["updated_at", "2015-03-18 23:09:23.343681"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sergio_e_v@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sergio_e_v@hotmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", "Alejandro Espinoza Veas"], ["created_at", "2015-03-18 23:09:23.353191"], ["updated_at", "2015-03-18 23:09:23.353191"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arteisabelaninat@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arteisabelaninat@gmail.com"], ["list_id", 1], ["name", "arte"], ["last_name", "isabel aninat"], ["created_at", "2015-03-18 23:09:23.363249"], ["updated_at", "2015-03-18 23:09:23.363249"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariaignaciafell@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariaignaciafell@gmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Ignacia Fell"], ["created_at", "2015-03-18 23:09:23.375186"], ["updated_at", "2015-03-18 23:09:23.375186"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "drakemarinafrance@yahoo.fr"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "drakemarinafrance@yahoo.fr"], ["list_id", 1], ["name", "Franco"], ["last_name", "Salas Borquez"], ["created_at", "2015-03-18 23:09:23.383640"], ["updated_at", "2015-03-18 23:09:23.383640"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manuparrasensi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manuparrasensi@gmail.com"], ["list_id", 1], ["name", "Manuel"], ["last_name", "Parra"], ["created_at", "2015-03-18 23:09:23.393691"], ["updated_at", "2015-03-18 23:09:23.393691"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "millarayv@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "millarayv@gmail.com"], ["list_id", 1], ["name", "Millaray"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.402935"], ["updated_at", "2015-03-18 23:09:23.402935"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kruzarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kruzarte@gmail.com"], ["list_id", 1], ["name", "adriana"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.412239"], ["updated_at", "2015-03-18 23:09:23.412239"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mjose.miranda.jara@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mjose.miranda.jara@gmail.com"], ["list_id", 1], ["name", "MARIA"], ["last_name", "JOSE MIRANDA"], ["created_at", "2015-03-18 23:09:23.424788"], ["updated_at", "2015-03-18 23:09:23.424788"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maite.awad@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maite.awad@gmail.com"], ["list_id", 1], ["name", "Maite"], ["last_name", "Awad Lobato"], ["created_at", "2015-03-18 23:09:23.434553"], ["updated_at", "2015-03-18 23:09:23.434553"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "g.verdessi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "g.verdessi@gmail.com"], ["list_id", 1], ["name", "Gisela"], ["last_name", "Verdessi"], ["created_at", "2015-03-18 23:09:23.443666"], ["updated_at", "2015-03-18 23:09:23.443666"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camilalobosd@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camilalobosd@gmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Lobos"], ["created_at", "2015-03-18 23:09:23.453141"], ["updated_at", "2015-03-18 23:09:23.453141"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigobelloz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigobelloz@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Bello"], ["created_at", "2015-03-18 23:09:23.462256"], ["updated_at", "2015-03-18 23:09:23.462256"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arte/cota@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arte/cota@yahoo.es"], ["list_id", 1], ["name", "Carlo"], ["last_name", "Carrasco"], ["created_at", "2015-03-18 23:09:23.475469"], ["updated_at", "2015-03-18 23:09:23.475469"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sociolegista.w@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sociolegista.w@gmail.com"], ["list_id", 1], ["name", "wilson"], ["last_name", "nogueira"], ["created_at", "2015-03-18 23:09:23.485192"], ["updated_at", "2015-03-18 23:09:23.485192"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "samueltoro@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "samueltoro@gmail.com"], ["list_id", 1], ["name", "Samuel"], ["last_name", "Toro"], ["created_at", "2015-03-18 23:09:23.493718"], ["updated_at", "2015-03-18 23:09:23.493718"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "abrasivo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "abrasivo@gmail.com"], ["list_id", 1], ["name", "Edith"], ["last_name", "Medina"], ["created_at", "2015-03-18 23:09:23.503156"], ["updated_at", "2015-03-18 23:09:23.503156"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "azermeno@alejandrazermeno.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "azermeno@alejandrazermeno.com"], ["list_id", 1], ["name", "Alejandra"], ["last_name", "Zermeño"], ["created_at", "2015-03-18 23:09:23.512176"], ["updated_at", "2015-03-18 23:09:23.512176"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danieldepix@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danieldepix@gmail.com"], ["list_id", 1], ["name", "daniel"], ["last_name", "sanz depix"], ["created_at", "2015-03-18 23:09:23.524755"], ["updated_at", "2015-03-18 23:09:23.524755"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gguillermogonzalez@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gguillermogonzalez@gmail.com"], ["list_id", 1], ["name", "Guillermo"], ["last_name", "González"], ["created_at", "2015-03-18 23:09:23.533772"], ["updated_at", "2015-03-18 23:09:23.533772"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lamaslinda1523@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lamaslinda1523@hotmail.com"], ["list_id", 1], ["name", "raiza"], ["last_name", "elena bustamante mata"], ["created_at", "2015-03-18 23:09:23.542869"], ["updated_at", "2015-03-18 23:09:23.542869"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristobal.villanueva@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristobal.villanueva@gmail.com"], ["list_id", 1], ["name", "Cristobal"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.552233"], ["updated_at", "2015-03-18 23:09:23.552233"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "angelicasanchez@live.com.mx"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "angelicasanchez@live.com.mx"], ["list_id", 1], ["name", "Angélica"], ["last_name", "Sánchez"], ["created_at", "2015-03-18 23:09:23.561499"], ["updated_at", "2015-03-18 23:09:23.561499"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zaratrejointeriores@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zaratrejointeriores@gmail.com"], ["list_id", 1], ["name", "Zara"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.574237"], ["updated_at", "2015-03-18 23:09:23.574237"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nickychiarello@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nickychiarello@gmail.com"], ["list_id", 1], ["name", "Nicky"], ["last_name", "Chiarello"], ["created_at", "2015-03-18 23:09:23.582914"], ["updated_at", "2015-03-18 23:09:23.582914"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dagaf79@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dagaf79@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Abraham Garcia Arellano"], ["created_at", "2015-03-18 23:09:23.592350"], ["updated_at", "2015-03-18 23:09:23.592350"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aguilarios@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aguilarios@gmail.com"], ["list_id", 1], ["name", "Sergio"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.602023"], ["updated_at", "2015-03-18 23:09:23.602023"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kruznana@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kruznana@gmail.com"], ["list_id", 1], ["name", "adriana"], ["last_name", "cruz"], ["created_at", "2015-03-18 23:09:23.610961"], ["updated_at", "2015-03-18 23:09:23.610961"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlosmir22@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlosmir22@hotmail.com"], ["list_id", 1], ["name", "carlos"], ["last_name", "mir"], ["created_at", "2015-03-18 23:09:23.624109"], ["updated_at", "2015-03-18 23:09:23.624109"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlosmir@carlosmir.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlosmir@carlosmir.com"], ["list_id", 1], ["name", "c"], ["last_name", "mir"], ["created_at", "2015-03-18 23:09:23.633261"], ["updated_at", "2015-03-18 23:09:23.633261"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ibar_laserena@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ibar_laserena@hotmail.com"], ["list_id", 1], ["name", "Ibar"], ["last_name", "Ricardo Morgado Malebran"], ["created_at", "2015-03-18 23:09:23.642012"], ["updated_at", "2015-03-18 23:09:23.642012"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "panxo.kandalaft@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "panxo.kandalaft@hotmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Javier Kandalaft Ruminot"], ["created_at", "2015-03-18 23:09:23.652010"], ["updated_at", "2015-03-18 23:09:23.652010"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arnaldocarrascovergara@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arnaldocarrascovergara@gmail.com"], ["list_id", 1], ["name", "arnaldo"], ["last_name", "carrasco vergara"], ["created_at", "2015-03-18 23:09:23.661203"], ["updated_at", "2015-03-18 23:09:23.661203"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hola@pollion7.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hola@pollion7.com"], ["list_id", 1], ["name", "pol"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.675134"], ["updated_at", "2015-03-18 23:09:23.675134"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arcillablanca@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arcillablanca@gmail.com"], ["list_id", 1], ["name", "Daniela"], ["last_name", "Díaz Guerrero"], ["created_at", "2015-03-18 23:09:23.684450"], ["updated_at", "2015-03-18 23:09:23.684450"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "acwiwari@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "acwiwari@hotmail.com"], ["list_id", 1], ["name", "GREGORIO"], ["last_name", "SULCA CHAVEZ"], ["created_at", "2015-03-18 23:09:23.693819"], ["updated_at", "2015-03-18 23:09:23.693819"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vichideleon@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vichideleon@hotmail.com"], ["list_id", 1], ["name", "David"], ["last_name", "de Leon"], ["created_at", "2015-03-18 23:09:23.703368"], ["updated_at", "2015-03-18 23:09:23.703368"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ratthagallery@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ratthagallery@gmail.com"], ["list_id", 1], ["name", "Rattha"], ["last_name", "Gallery"], ["created_at", "2015-03-18 23:09:23.712839"], ["updated_at", "2015-03-18 23:09:23.712839"]]  (20.2ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "isabelfabiola@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "isabelfabiola@gmail.com"], ["list_id", 1], ["name", "Isabel"], ["last_name", "Urra"], ["created_at", "2015-03-18 23:09:23.740191"], ["updated_at", "2015-03-18 23:09:23.740191"]]  (6.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "betancourt.beta@gmail.com"]]  (0.1ms) begin transaction SQL (2.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "betancourt.beta@gmail.com"], ["list_id", 1], ["name", "Natalia"], ["last_name", "Betancourt Cofre"], ["created_at", "2015-03-18 23:09:23.753955"], ["updated_at", "2015-03-18 23:09:23.753955"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "afretme@live.cl"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "afretme@live.cl"], ["list_id", 1], ["name", "Julio"], ["last_name", "Chávez"], ["created_at", "2015-03-18 23:09:23.766175"], ["updated_at", "2015-03-18 23:09:23.766175"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mafalda623@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mafalda623@hotmail.com"], ["list_id", 1], ["name", "Deysi"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.777147"], ["updated_at", "2015-03-18 23:09:23.777147"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dosmascinco@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dosmascinco@gmail.com"], ["list_id", 1], ["name", "Natalia"], ["last_name", "Díaz Salvo"], ["created_at", "2015-03-18 23:09:23.787105"], ["updated_at", "2015-03-18 23:09:23.787105"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pcatalina.va@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pcatalina.va@gmail.com"], ["list_id", 1], ["name", "P."], ["last_name", "VALENZULA ANTÚNEZ"], ["created_at", "2015-03-18 23:09:23.796626"], ["updated_at", "2015-03-18 23:09:23.796626"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maecarlsson6@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maecarlsson6@hotmail.com"], ["list_id", 1], ["name", "Marie"], ["last_name", "Aileen Carlsson"], ["created_at", "2015-03-18 23:09:23.806350"], ["updated_at", "2015-03-18 23:09:23.806350"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antonelafrancesia@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antonelafrancesia@hotmail.com"], ["list_id", 1], ["name", "ANTONELA"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.909873"], ["updated_at", "2015-03-18 23:09:23.909873"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "issy.rtg@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "issy.rtg@gmail.com"], ["list_id", 1], ["name", "Isidora"], ["last_name", "Ortega"], ["created_at", "2015-03-18 23:09:23.919143"], ["updated_at", "2015-03-18 23:09:23.919143"]]  (3.6ms) commit transaction Postino::Subscriber Load (2.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "guerra2254@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "guerra2254@yahoo.com"], ["list_id", 1], ["name", "patricio"], ["last_name", ""], ["created_at", "2015-03-18 23:09:23.942040"], ["updated_at", "2015-03-18 23:09:23.942040"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cjmecanics@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cjmecanics@hotmail.com"], ["list_id", 1], ["name", "cesar"], ["last_name", "alfredo jiliberto vasquez"], ["created_at", "2015-03-18 23:09:23.957528"], ["updated_at", "2015-03-18 23:09:23.957528"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "goldenpe@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "goldenpe@gmail.com"], ["list_id", 1], ["name", "Pablo"], ["last_name", "Goldenberg"], ["created_at", "2015-03-18 23:09:23.974031"], ["updated_at", "2015-03-18 23:09:23.974031"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andresovalleny@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andresovalleny@gmail.com"], ["list_id", 1], ["name", "ANDRES"], ["last_name", "OVALLE"], ["created_at", "2015-03-18 23:09:23.983320"], ["updated_at", "2015-03-18 23:09:23.983320"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gasparalvarez@alugar.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gasparalvarez@alugar.cl"], ["list_id", 1], ["name", "Gaspar"], ["last_name", "Alvarez Requena"], ["created_at", "2015-03-18 23:09:23.992841"], ["updated_at", "2015-03-18 23:09:23.992841"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "abbig2000@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "abbig2000@yahoo.com"], ["list_id", 1], ["name", "Julio"], ["last_name", "Enrique Díaz Cambón"], ["created_at", "2015-03-18 23:09:24.007652"], ["updated_at", "2015-03-18 23:09:24.007652"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kubeda@gmail.com"]]  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kubeda@gmail.com"], ["list_id", 1], ["name", "Carina"], ["last_name", "Úbeda Chacana"], ["created_at", "2015-03-18 23:09:24.017745"], ["updated_at", "2015-03-18 23:09:24.017745"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolinadasilva84@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolinadasilva84@hotmail.com"], ["list_id", 1], ["name", "carolina"], ["last_name", "da silva"], ["created_at", "2015-03-18 23:09:24.029087"], ["updated_at", "2015-03-18 23:09:24.029087"]]  (4.6ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "deep_kover@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "deep_kover@hotmail.com"], ["list_id", 1], ["name", "Franco"], ["last_name", "Munoz"], ["created_at", "2015-03-18 23:09:24.040948"], ["updated_at", "2015-03-18 23:09:24.040948"]]  (9.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arpon@vtr.net"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arpon@vtr.net"], ["list_id", 1], ["name", "Hugo"], ["last_name", "Francisco Quintero Miño"], ["created_at", "2015-03-18 23:09:24.057529"], ["updated_at", "2015-03-18 23:09:24.057529"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cami.naif@hotmail.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cami.naif@hotmail.cl"], ["list_id", 1], ["name", "Camila"], ["last_name", "Ramírez"], ["created_at", "2015-03-18 23:09:24.066724"], ["updated_at", "2015-03-18 23:09:24.066724"]]  (17.4ms) commit transaction Postino::Subscriber Load (2.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fcostabombal@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fcostabombal@gmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Costa"], ["created_at", "2015-03-18 23:09:24.092127"], ["updated_at", "2015-03-18 23:09:24.092127"]]  (36.1ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "villapeutica@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "villapeutica@gmail.com"], ["list_id", 1], ["name", "Daniel"], ["last_name", "Reyes León"], ["created_at", "2015-03-18 23:09:24.135702"], ["updated_at", "2015-03-18 23:09:24.135702"]]  (18.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "schiaffaformas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "schiaffaformas@hotmail.com"], ["list_id", 1], ["name", "Enrique"], ["last_name", "Schiaffarino Riera"], ["created_at", "2015-03-18 23:09:24.161580"], ["updated_at", "2015-03-18 23:09:24.161580"]]  (12.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carlos.gr57@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carlos.gr57@gmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "G."], ["created_at", "2015-03-18 23:09:24.180599"], ["updated_at", "2015-03-18 23:09:24.180599"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rodrigobaez4@msn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rodrigobaez4@msn.com"], ["list_id", 1], ["name", "rodrigo"], ["last_name", "baez atienza"], ["created_at", "2015-03-18 23:09:24.190804"], ["updated_at", "2015-03-18 23:09:24.190804"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tarix.sep@gmail.coom"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tarix.sep@gmail.coom"], ["list_id", 1], ["name", "Tarix"], ["last_name", "Sepúlveda"], ["created_at", "2015-03-18 23:09:24.206675"], ["updated_at", "2015-03-18 23:09:24.206675"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mujermapocho@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mujermapocho@gmail.com"], ["list_id", 1], ["name", "Mujer"], ["last_name", "Mapocho"], ["created_at", "2015-03-18 23:09:24.216268"], ["updated_at", "2015-03-18 23:09:24.216268"]]  (34.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mjmunoz.arte@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mjmunoz.arte@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "José Muñoz Quezada"], ["created_at", "2015-03-18 23:09:24.258117"], ["updated_at", "2015-03-18 23:09:24.258117"]]  (10.6ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "topazred@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "topazred@gmail.com"], ["list_id", 1], ["name", "Alberto"], ["last_name", "Thirion"], ["created_at", "2015-03-18 23:09:24.276656"], ["updated_at", "2015-03-18 23:09:24.276656"]]  (11.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carinapuffez@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carinapuffez@gmail.com"], ["list_id", 1], ["name", "Carina"], ["last_name", "Puffe"], ["created_at", "2015-03-18 23:09:24.296140"], ["updated_at", "2015-03-18 23:09:24.296140"]]  (27.5ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jweskamp@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jweskamp@hotmail.com"], ["list_id", 1], ["name", "josefina"], ["last_name", "weskamp"], ["created_at", "2015-03-18 23:09:24.331416"], ["updated_at", "2015-03-18 23:09:24.331416"]]  (18.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dga_79@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dga_79@gmail.com"], ["list_id", 1], ["name", "Manos"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.356925"], ["updated_at", "2015-03-18 23:09:24.356925"]]  (38.1ms) commit transaction Postino::Subscriber Load (2.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "veronica.guarda@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "veronica.guarda@gmail.com"], ["list_id", 1], ["name", "Veronica"], ["last_name", "Guarda"], ["created_at", "2015-03-18 23:09:24.403860"], ["updated_at", "2015-03-18 23:09:24.403860"]]  (19.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dianaprofilio@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dianaprofilio@gmail.com"], ["list_id", 1], ["name", "Diana"], ["last_name", "Profilio"], ["created_at", "2015-03-18 23:09:24.431138"], ["updated_at", "2015-03-18 23:09:24.431138"]]  (19.0ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "castisusana@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "castisusana@gmail.com"], ["list_id", 1], ["name", "Susana"], ["last_name", "Castillo López"], ["created_at", "2015-03-18 23:09:24.457913"], ["updated_at", "2015-03-18 23:09:24.457913"]]  (25.1ms) commit transaction Postino::Subscriber Load (2.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "glenlizardi@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "glenlizardi@gmail.com"], ["list_id", 1], ["name", "Glen"], ["last_name", "Lizardi Flores"], ["created_at", "2015-03-18 23:09:24.492080"], ["updated_at", "2015-03-18 23:09:24.492080"]]  (13.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mdcaral@une.net.co"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mdcaral@une.net.co"], ["list_id", 1], ["name", "Beatriz"], ["last_name", "E Hoyos H"], ["created_at", "2015-03-18 23:09:24.512857"], ["updated_at", "2015-03-18 23:09:24.512857"]]  (15.6ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mmilagro.albornoz@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mmilagro.albornoz@gmail.com"], ["list_id", 1], ["name", "Milagro"], ["last_name", "Albornoz Castro"], ["created_at", "2015-03-18 23:09:24.535546"], ["updated_at", "2015-03-18 23:09:24.535546"]]  (20.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "m@magdalenaerrazuriz.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "m@magdalenaerrazuriz.cl"], ["list_id", 1], ["name", "Magdalena"], ["last_name", "Errázuriz"], ["created_at", "2015-03-18 23:09:24.563830"], ["updated_at", "2015-03-18 23:09:24.563830"]]  (19.7ms) commit transaction Postino::Subscriber Load (2.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "culturasantander@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "culturasantander@gmail.com"], ["list_id", 1], ["name", "Artistas"], ["last_name", "Zona Oriente"], ["created_at", "2015-03-18 23:09:24.591928"], ["updated_at", "2015-03-18 23:09:24.591928"]]  (18.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "azbanado@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "azbanado@uc.cl"], ["list_id", 1], ["name", "Antonia"], ["last_name", "Paz Bañados Ramirez"], ["created_at", "2015-03-18 23:09:24.617220"], ["updated_at", "2015-03-18 23:09:24.617220"]]  (11.2ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Genaroalbaino@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Genaroalbaino@gmail.com"], ["list_id", 1], ["name", "Genaro"], ["last_name", "Albaíno"], ["created_at", "2015-03-18 23:09:24.634498"], ["updated_at", "2015-03-18 23:09:24.634498"]]  (26.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "consuelowalker@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "consuelowalker@gmail.com"], ["list_id", 1], ["name", "consuelo"], ["last_name", "walker"], ["created_at", "2015-03-18 23:09:24.667384"], ["updated_at", "2015-03-18 23:09:24.667384"]]  (14.6ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "karinacasta@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "karinacasta@gmail.com"], ["list_id", 1], ["name", "Karina"], ["last_name", "Castañeda Zúñiga"], ["created_at", "2015-03-18 23:09:24.689900"], ["updated_at", "2015-03-18 23:09:24.689900"]]  (15.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "s.m.gallardo71@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "s.m.gallardo71@gmail.com"], ["list_id", 1], ["name", "sergio"], ["last_name", "marcelo gallardo paredes"], ["created_at", "2015-03-18 23:09:24.712768"], ["updated_at", "2015-03-18 23:09:24.712768"]]  (15.0ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "polysix@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "polysix@gmail.com"], ["list_id", 1], ["name", "Manuel"], ["last_name", "Rojas Morales"], ["created_at", "2015-03-18 23:09:24.735064"], ["updated_at", "2015-03-18 23:09:24.735064"]]  (13.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cotibriceno@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cotibriceno@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Briceño"], ["created_at", "2015-03-18 23:09:24.756039"], ["updated_at", "2015-03-18 23:09:24.756039"]]  (24.8ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sanzvane@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sanzvane@gmail.com"], ["list_id", 1], ["name", "Vanessa"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.789116"], ["updated_at", "2015-03-18 23:09:24.789116"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pet_punk@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pet_punk@hotmail.com"], ["list_id", 1], ["name", "Pedro"], ["last_name", "ricardo Duran"], ["created_at", "2015-03-18 23:09:24.804763"], ["updated_at", "2015-03-18 23:09:24.804763"]]  (9.6ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "martinodanza@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "martinodanza@gmail.com"], ["list_id", 1], ["name", "Angel"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.820862"], ["updated_at", "2015-03-18 23:09:24.820862"]]  (7.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pufhjlkfj@qq.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pufhjlkfj@qq.com"], ["list_id", 1], ["name", "raphaelherrande"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.835450"], ["updated_at", "2015-03-18 23:09:24.835450"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lithium.rei@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lithium.rei@gmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Valdes Flores"], ["created_at", "2015-03-18 23:09:24.856188"], ["updated_at", "2015-03-18 23:09:24.856188"]]  (9.9ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yaoxian14099949@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yaoxian14099949@163.com"], ["list_id", 1], ["name", "elinoreshelquis"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.873783"], ["updated_at", "2015-03-18 23:09:24.873783"]]  (9.5ms) commit transaction Postino::Subscriber Load (2.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yuenao25931650@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yuenao25931650@163.com"], ["list_id", 1], ["name", "christinaesenwe"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.891645"], ["updated_at", "2015-03-18 23:09:24.891645"]]  (13.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "susuovbchft@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "susuovbchft@21cn.com"], ["list_id", 1], ["name", "damarissewester"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.912236"], ["updated_at", "2015-03-18 23:09:24.912236"]]  (21.4ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "itszwowup@qq.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "itszwowup@qq.com"], ["list_id", 1], ["name", "winstonkoenemun"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.941706"], ["updated_at", "2015-03-18 23:09:24.941706"]]  (5.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wuniangwnh@eyou.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wuniangwnh@eyou.com"], ["list_id", 1], ["name", "janaemagrath"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.955471"], ["updated_at", "2015-03-18 23:09:24.955471"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zan51183@tom.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zan51183@tom.com"], ["list_id", 1], ["name", "arnulfogoldrich"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.965593"], ["updated_at", "2015-03-18 23:09:24.965593"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hezhecqhntc@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hezhecqhntc@21cn.com"], ["list_id", 1], ["name", "theodoramarsigl"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.975080"], ["updated_at", "2015-03-18 23:09:24.975080"]]  (4.0ms) commit transaction Postino::Subscriber Load (1.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "conolemodlin@sohu.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "conolemodlin@sohu.com"], ["list_id", 1], ["name", "loraleewlodarcz"], ["last_name", ""], ["created_at", "2015-03-18 23:09:24.985458"], ["updated_at", "2015-03-18 23:09:24.985458"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "shun7994370@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "shun7994370@163.com"], ["list_id", 1], ["name", "allenagaldamez"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.004302"], ["updated_at", "2015-03-18 23:09:25.004302"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "seeboldpace@sohu.com"]]  (0.5ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "seeboldpace@sohu.com"], ["list_id", 1], ["name", "martywenzell"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.015516"], ["updated_at", "2015-03-18 23:09:25.015516"]]  (56.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bnlurwdxx@qq.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bnlurwdxx@qq.com"], ["list_id", 1], ["name", "louiedeaton"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.079665"], ["updated_at", "2015-03-18 23:09:25.079665"]]  (14.9ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pinggu363431761@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pinggu363431761@163.com"], ["list_id", 1], ["name", "theaonorato"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.101938"], ["updated_at", "2015-03-18 23:09:25.101938"]]  (17.7ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mxgenesis@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mxgenesis@gmail.com"], ["list_id", 1], ["name", "Jonathan"], ["last_name", "Israel Carbajal García"], ["created_at", "2015-03-18 23:09:25.127030"], ["updated_at", "2015-03-18 23:09:25.127030"]]  (12.0ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "liuhaifei5@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "liuhaifei5@163.com"], ["list_id", 1], ["name", "rennalesmerises"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.146419"], ["updated_at", "2015-03-18 23:09:25.146419"]]  (20.2ms) commit transaction Postino::Subscriber Load (2.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dunqueyuan982@tom.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dunqueyuan982@tom.com"], ["list_id", 1], ["name", "wmlikins"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.174812"], ["updated_at", "2015-03-18 23:09:25.174812"]]  (9.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhuachang9148608@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhuachang9148608@163.com"], ["list_id", 1], ["name", "raeannzurkuhlen"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.191158"], ["updated_at", "2015-03-18 23:09:25.191158"]]  (59.6ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tbeyvecge@qq.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tbeyvecge@qq.com"], ["list_id", 1], ["name", "alvarostrick"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.258467"], ["updated_at", "2015-03-18 23:09:25.258467"]]  (13.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tannwiddison@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tannwiddison@sohu.com"], ["list_id", 1], ["name", "florrieschlesen"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.279511"], ["updated_at", "2015-03-18 23:09:25.279511"]]  (19.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kmbjjoglb@qq.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kmbjjoglb@qq.com"], ["list_id", 1], ["name", "gonzalotebar"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.306439"], ["updated_at", "2015-03-18 23:09:25.306439"]]  (10.5ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fenpenwum@eyou.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fenpenwum@eyou.com"], ["list_id", 1], ["name", "reaganadkinson"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.324861"], ["updated_at", "2015-03-18 23:09:25.324861"]]  (13.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wangdehuo@sohu.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wangdehuo@sohu.com"], ["list_id", 1], ["name", "lanellepapenfus"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.346317"], ["updated_at", "2015-03-18 23:09:25.346317"]]  (13.3ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vh4g3qwy7t@qq.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vh4g3qwy7t@qq.com"], ["list_id", 1], ["name", "tyronebejil"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.369018"], ["updated_at", "2015-03-18 23:09:25.369018"]]  (14.3ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yozan840953693@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yozan840953693@163.com"], ["list_id", 1], ["name", "eleanorpangelin"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.391340"], ["updated_at", "2015-03-18 23:09:25.391340"]]  (19.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "uda3752285@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "uda3752285@163.com"], ["list_id", 1], ["name", "dorathymckendry"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.418019"], ["updated_at", "2015-03-18 23:09:25.418019"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wuzeiejf@eyou.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wuzeiejf@eyou.com"], ["list_id", 1], ["name", "marciawarson"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.428128"], ["updated_at", "2015-03-18 23:09:25.428128"]]  (4.3ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pwrcjanb2512@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pwrcjanb2512@hotmail.com"], ["list_id", 1], ["name", "yurisaterfield"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.440099"], ["updated_at", "2015-03-18 23:09:25.440099"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhoumangubk@eyou.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhoumangubk@eyou.com"], ["list_id", 1], ["name", "irmacrowston"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.454611"], ["updated_at", "2015-03-18 23:09:25.454611"]]  (12.1ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "shentieajaavp@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "shentieajaavp@21cn.com"], ["list_id", 1], ["name", "dalilamuphy"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.474741"], ["updated_at", "2015-03-18 23:09:25.474741"]]  (8.6ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jtagampr2794@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jtagampr2794@hotmail.com"], ["list_id", 1], ["name", "myrlareola"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.491865"], ["updated_at", "2015-03-18 23:09:25.491865"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fenrexmubxb@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fenrexmubxb@21cn.com"], ["list_id", 1], ["name", "luannadegear"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.505200"], ["updated_at", "2015-03-18 23:09:25.505200"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xiangwuning@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xiangwuning@sohu.com"], ["list_id", 1], ["name", "sharonlukander"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.514112"], ["updated_at", "2015-03-18 23:09:25.514112"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rongsou4231514@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rongsou4231514@163.com"], ["list_id", 1], ["name", "nelidanakonechn"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.524004"], ["updated_at", "2015-03-18 23:09:25.524004"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "iar440613863@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "iar440613863@163.com"], ["list_id", 1], ["name", "alishalawter"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.532791"], ["updated_at", "2015-03-18 23:09:25.532791"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dansheng131@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dansheng131@163.com"], ["list_id", 1], ["name", "phyliskotas"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.541976"], ["updated_at", "2015-03-18 23:09:25.541976"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yanguanmvxxqw@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yanguanmvxxqw@21cn.com"], ["list_id", 1], ["name", "rivkafegueroa"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.553423"], ["updated_at", "2015-03-18 23:09:25.553423"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caorenetj@eyou.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caorenetj@eyou.com"], ["list_id", 1], ["name", "danaecovelli"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.562429"], ["updated_at", "2015-03-18 23:09:25.562429"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wangshuaibyfdsv@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wangshuaibyfdsv@21cn.com"], ["list_id", 1], ["name", "aracelychanler"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.571071"], ["updated_at", "2015-03-18 23:09:25.571071"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "minhuang1128196@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "minhuang1128196@163.com"], ["list_id", 1], ["name", "elviradewald"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.581270"], ["updated_at", "2015-03-18 23:09:25.581270"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yaogongpdh@eyou.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yaogongpdh@eyou.com"], ["list_id", 1], ["name", "denysegettinger"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.590877"], ["updated_at", "2015-03-18 23:09:25.590877"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "weisunaxgvwc@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "weisunaxgvwc@21cn.com"], ["list_id", 1], ["name", "leetilghman"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.603050"], ["updated_at", "2015-03-18 23:09:25.603050"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dcyrwrsh684@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dcyrwrsh684@hotmail.com"], ["list_id", 1], ["name", "carolinmichelin"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.612346"], ["updated_at", "2015-03-18 23:09:25.612346"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "senxiongbmv@eyou.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "senxiongbmv@eyou.com"], ["list_id", 1], ["name", "sheritanarlock"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.621706"], ["updated_at", "2015-03-18 23:09:25.621706"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wuxiaoqefqnb@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wuxiaoqefqnb@21cn.com"], ["list_id", 1], ["name", "analisamerkt"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.631243"], ["updated_at", "2015-03-18 23:09:25.631243"]]  (8.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fengmengrzx@eyou.com"]]  (0.3ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fengmengrzx@eyou.com"], ["list_id", 1], ["name", "fridamuhl"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.647899"], ["updated_at", "2015-03-18 23:09:25.647899"]]  (7.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "liu475268651@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "liu475268651@163.com"], ["list_id", 1], ["name", "patriciapeaslee"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.664092"], ["updated_at", "2015-03-18 23:09:25.664092"]]  (14.0ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xjnwzyga486@hotmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xjnwzyga486@hotmail.com"], ["list_id", 1], ["name", "elmermajeske"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.685731"], ["updated_at", "2015-03-18 23:09:25.685731"]]  (7.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "liangpin97129457@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "liangpin97129457@163.com"], ["list_id", 1], ["name", "kathaleenrockma"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.704532"], ["updated_at", "2015-03-18 23:09:25.704532"]]  (32.2ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "panfengnawpka@21cn.com"]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "panfengnawpka@21cn.com"], ["list_id", 1], ["name", "margrethardrick"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.744233"], ["updated_at", "2015-03-18 23:09:25.744233"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "panzanxk@eyou.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "panzanxk@eyou.com"], ["list_id", 1], ["name", "tanjataitague"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.755793"], ["updated_at", "2015-03-18 23:09:25.755793"]]  (6.0ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sunzouazq@eyou.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sunzouazq@eyou.com"], ["list_id", 1], ["name", "shinkistner"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.768224"], ["updated_at", "2015-03-18 23:09:25.768224"]]  (6.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wangtoupazbab@21cn.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wangtoupazbab@21cn.com"], ["list_id", 1], ["name", "terrellstemmer"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.781243"], ["updated_at", "2015-03-18 23:09:25.781243"]]  (78.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "stashstamnos@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "stashstamnos@sohu.com"], ["list_id", 1], ["name", "ruthannelambka"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.867077"], ["updated_at", "2015-03-18 23:09:25.867077"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "weimuzac@eyou.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "weimuzac@eyou.com"], ["list_id", 1], ["name", "minhedgman"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.876961"], ["updated_at", "2015-03-18 23:09:25.876961"]]  (17.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dxhrhygw297@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dxhrhygw297@hotmail.com"], ["list_id", 1], ["name", "jenaetippin"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.901105"], ["updated_at", "2015-03-18 23:09:25.901105"]]  (7.2ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mirandapola@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mirandapola@gmail.com"], ["list_id", 1], ["name", "pola"], ["last_name", "miranda"], ["created_at", "2015-03-18 23:09:25.919294"], ["updated_at", "2015-03-18 23:09:25.919294"]]  (19.6ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sunkunsxa@eyou.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sunkunsxa@eyou.com"], ["list_id", 1], ["name", "santinatredo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.946733"], ["updated_at", "2015-03-18 23:09:25.946733"]]  (14.9ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "harmondhast@sohu.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "harmondhast@sohu.com"], ["list_id", 1], ["name", "pearlecardozo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.970024"], ["updated_at", "2015-03-18 23:09:25.970024"]]  (19.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hefubao0223@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hefubao0223@sohu.com"], ["list_id", 1], ["name", "helentackett"], ["last_name", ""], ["created_at", "2015-03-18 23:09:25.996184"], ["updated_at", "2015-03-18 23:09:25.996184"]]  (9.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhendaottaevm@21cn.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhendaottaevm@21cn.com"], ["list_id", 1], ["name", "jennellgalacio"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.011534"], ["updated_at", "2015-03-18 23:09:26.011534"]]  (66.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zouxuhao3578274@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zouxuhao3578274@163.com"], ["list_id", 1], ["name", "patpruzansky"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.086796"], ["updated_at", "2015-03-18 23:09:26.086796"]]  (7.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "liu1356949@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "liu1356949@163.com"], ["list_id", 1], ["name", "kristanpolosky"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.101457"], ["updated_at", "2015-03-18 23:09:26.101457"]]  (25.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anduo755450227@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anduo755450227@163.com"], ["list_id", 1], ["name", "keishaosiecki"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.135055"], ["updated_at", "2015-03-18 23:09:26.135055"]]  (15.5ms) commit transaction Postino::Subscriber Load (2.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luchoufmp@eyou.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luchoufmp@eyou.com"], ["list_id", 1], ["name", "dioneperson"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.158479"], ["updated_at", "2015-03-18 23:09:26.158479"]]  (24.8ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lucaieudqhs@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lucaieudqhs@21cn.com"], ["list_id", 1], ["name", "wynonadeanes"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.190413"], ["updated_at", "2015-03-18 23:09:26.190413"]]  (8.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ebmpxnzd639@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ebmpxnzd639@hotmail.com"], ["list_id", 1], ["name", "paulitajansing"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.205237"], ["updated_at", "2015-03-18 23:09:26.205237"]]  (17.8ms) commit transaction Postino::Subscriber Load (2.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yangluuss@eyou.com"]]  (0.1ms) begin transaction SQL (120.2ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yangluuss@eyou.com"], ["list_id", 1], ["name", "ricardagolub"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.231649"], ["updated_at", "2015-03-18 23:09:26.231649"]]  (119.2ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "langbaoliang66659@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "langbaoliang66659@163.com"], ["list_id", 1], ["name", "sabrinaminckler"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.479489"], ["updated_at", "2015-03-18 23:09:26.479489"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "q829331953180@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "q829331953180@163.com"], ["list_id", 1], ["name", "natividadwesch"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.489580"], ["updated_at", "2015-03-18 23:09:26.489580"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fh198846659@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fh198846659@163.com"], ["list_id", 1], ["name", "candiceblomberg"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.499022"], ["updated_at", "2015-03-18 23:09:26.499022"]]  (89.7ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bwacvaxb8944@hotmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bwacvaxb8944@hotmail.com"], ["list_id", 1], ["name", "lakendrahutchin"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.597888"], ["updated_at", "2015-03-18 23:09:26.597888"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "censhaozac@eyou.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "censhaozac@eyou.com"], ["list_id", 1], ["name", "kristipalmieri"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.608481"], ["updated_at", "2015-03-18 23:09:26.608481"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mengdieche911aa@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mengdieche911aa@163.com"], ["list_id", 1], ["name", "neldacourtad"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.617534"], ["updated_at", "2015-03-18 23:09:26.617534"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xukuaicmg@eyou.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xukuaicmg@eyou.com"], ["list_id", 1], ["name", "lanepicardi"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.627010"], ["updated_at", "2015-03-18 23:09:26.627010"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "duihuo49773302@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "duihuo49773302@163.com"], ["list_id", 1], ["name", "dahliagrabauska"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.651550"], ["updated_at", "2015-03-18 23:09:26.651550"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "qianhuafzr@eyou.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "qianhuafzr@eyou.com"], ["list_id", 1], ["name", "isabellourence"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.661099"], ["updated_at", "2015-03-18 23:09:26.661099"]]  (11.3ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "qbbacdht635@hotmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "qbbacdht635@hotmail.com"], ["list_id", 1], ["name", "shastabelsito"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.679707"], ["updated_at", "2015-03-18 23:09:26.679707"]]  (18.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zymnbvms588@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zymnbvms588@hotmail.com"], ["list_id", 1], ["name", "myrticeemler"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.705883"], ["updated_at", "2015-03-18 23:09:26.705883"]]  (18.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kengjun94577516@163.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kengjun94577516@163.com"], ["list_id", 1], ["name", "carmonmanweiler"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.731170"], ["updated_at", "2015-03-18 23:09:26.731170"]]  (119.4ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ywymsama2561@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ywymsama2561@hotmail.com"], ["list_id", 1], ["name", "synthiagoretti"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.858399"], ["updated_at", "2015-03-18 23:09:26.858399"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sherrettsso@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sherrettsso@sohu.com"], ["list_id", 1], ["name", "danyellmahony"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.868675"], ["updated_at", "2015-03-18 23:09:26.868675"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhaoyunnaqbwf@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhaoyunnaqbwf@21cn.com"], ["list_id", 1], ["name", "evanfazzina"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.878847"], ["updated_at", "2015-03-18 23:09:26.878847"]]  (23.9ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "doughertyfo@sohu.com"]]  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "doughertyfo@sohu.com"], ["list_id", 1], ["name", "natalyaleininge"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.910548"], ["updated_at", "2015-03-18 23:09:26.910548"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kyrrsujz3548@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kyrrsujz3548@hotmail.com"], ["list_id", 1], ["name", "anlueckenbach"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.922011"], ["updated_at", "2015-03-18 23:09:26.922011"]]  (55.3ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "datangmaten@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "datangmaten@163.com"], ["list_id", 1], ["name", "vernicequinoes"], ["last_name", ""], ["created_at", "2015-03-18 23:09:26.985106"], ["updated_at", "2015-03-18 23:09:26.985106"]]  (13.1ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xyc8287454585709@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xyc8287454585709@163.com"], ["list_id", 1], ["name", "cheribeevers"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.006127"], ["updated_at", "2015-03-18 23:09:27.006127"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhenpaobgwger@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhenpaobgwger@21cn.com"], ["list_id", 1], ["name", "capricestaebell"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.016222"], ["updated_at", "2015-03-18 23:09:27.016222"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhuyingqsacny@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhuyingqsacny@21cn.com"], ["list_id", 1], ["name", "halliegoethe"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.034088"], ["updated_at", "2015-03-18 23:09:27.034088"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rongxiejun@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rongxiejun@sohu.com"], ["list_id", 1], ["name", "asiapriem"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.048455"], ["updated_at", "2015-03-18 23:09:27.048455"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "panbacbjwzt@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "panbacbjwzt@21cn.com"], ["list_id", 1], ["name", "alexandermanuia"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.057907"], ["updated_at", "2015-03-18 23:09:27.057907"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ymqbcjat8535@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ymqbcjat8535@hotmail.com"], ["list_id", 1], ["name", "clarewiederholt"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.067652"], ["updated_at", "2015-03-18 23:09:27.067652"]]  (16.4ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fczsrybf2692@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fczsrybf2692@hotmail.com"], ["list_id", 1], ["name", "lashundawiddows"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.090336"], ["updated_at", "2015-03-18 23:09:27.090336"]]  (20.8ms) commit transaction Postino::Subscriber Load (2.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "smqhbvas288@hotmail.com"]]  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "smqhbvas288@hotmail.com"], ["list_id", 1], ["name", "georginaemmert"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.119786"], ["updated_at", "2015-03-18 23:09:27.119786"]]  (7.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "guixiong318156@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "guixiong318156@163.com"], ["list_id", 1], ["name", "waierling"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.135010"], ["updated_at", "2015-03-18 23:09:27.135010"]]  (22.6ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xkwhgtru5824@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xkwhgtru5824@hotmail.com"], ["list_id", 1], ["name", "kayshallcross"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.166134"], ["updated_at", "2015-03-18 23:09:27.166134"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xunmiao53480547@163.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xunmiao53480547@163.com"], ["list_id", 1], ["name", "myrtiekass"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.182828"], ["updated_at", "2015-03-18 23:09:27.182828"]]  (11.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "puhu51745918403@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "puhu51745918403@163.com"], ["list_id", 1], ["name", "danyelpietrzyk"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.201375"], ["updated_at", "2015-03-18 23:09:27.201375"]]  (37.5ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhuotiao4894082@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhuotiao4894082@163.com"], ["list_id", 1], ["name", "helenenielsen"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.246126"], ["updated_at", "2015-03-18 23:09:27.246126"]]  (26.1ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "s602470433175@163.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "s602470433175@163.com"], ["list_id", 1], ["name", "candifeucht"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.280116"], ["updated_at", "2015-03-18 23:09:27.280116"]]  (25.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "errazaaw531@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "errazaaw531@hotmail.com"], ["list_id", 1], ["name", "vanitadziuk"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.312939"], ["updated_at", "2015-03-18 23:09:27.312939"]]  (15.0ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cjdzcdky6592@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cjdzcdky6592@hotmail.com"], ["list_id", 1], ["name", "jillianpledger"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.335928"], ["updated_at", "2015-03-18 23:09:27.335928"]]  (5.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "feivsxiaofang027@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "feivsxiaofang027@163.com"], ["list_id", 1], ["name", "sharylansel"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.349382"], ["updated_at", "2015-03-18 23:09:27.349382"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "adrpfbxt591@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "adrpfbxt591@hotmail.com"], ["list_id", 1], ["name", "lanorarovner"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.358721"], ["updated_at", "2015-03-18 23:09:27.358721"]]  (14.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bhacfkyu392@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bhacfkyu392@hotmail.com"], ["list_id", 1], ["name", "maisiejonak"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.380901"], ["updated_at", "2015-03-18 23:09:27.380901"]]  (8.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sgp3448293448@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sgp3448293448@163.com"], ["list_id", 1], ["name", "rachaelunverzag"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.398285"], ["updated_at", "2015-03-18 23:09:27.398285"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "songmanvaeacd@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "songmanvaeacd@21cn.com"], ["list_id", 1], ["name", "katerinegarces"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.407496"], ["updated_at", "2015-03-18 23:09:27.407496"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jika585039924461@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jika585039924461@163.com"], ["list_id", 1], ["name", "belvakinnaman"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.416768"], ["updated_at", "2015-03-18 23:09:27.416768"]]  (19.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lieshi0286679018@163.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lieshi0286679018@163.com"], ["list_id", 1], ["name", "ellynabolafia"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.444002"], ["updated_at", "2015-03-18 23:09:27.444002"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "doddgerloff@sohu.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "doddgerloff@sohu.com"], ["list_id", 1], ["name", "luettamartinat"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.547487"], ["updated_at", "2015-03-18 23:09:27.547487"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "quanba384416232@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "quanba384416232@163.com"], ["list_id", 1], ["name", "julissachor"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.556742"], ["updated_at", "2015-03-18 23:09:27.556742"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nulang3693996581@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nulang3693996581@163.com"], ["list_id", 1], ["name", "sandiehauth"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.565968"], ["updated_at", "2015-03-18 23:09:27.565968"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "brousardkib@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "brousardkib@sohu.com"], ["list_id", 1], ["name", "shainaczapiewsk"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.575510"], ["updated_at", "2015-03-18 23:09:27.575510"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zjuuzamx579@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zjuuzamx579@hotmail.com"], ["list_id", 1], ["name", "annlondo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:27.585351"], ["updated_at", "2015-03-18 23:09:27.585351"]]  (548.9ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhenduanzteayy@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhenduanzteayy@21cn.com"], ["list_id", 1], ["name", "valenegarski"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.142398"], ["updated_at", "2015-03-18 23:09:28.142398"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hoffeltiaro@sohu.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hoffeltiaro@sohu.com"], ["list_id", 1], ["name", "raeannsuennen"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.152451"], ["updated_at", "2015-03-18 23:09:28.152451"]]  (2.0ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "usyrzgnc593@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "usyrzgnc593@hotmail.com"], ["list_id", 1], ["name", "zaidafosberg"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.161053"], ["updated_at", "2015-03-18 23:09:28.161053"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yanchaohmpyyh@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yanchaohmpyyh@21cn.com"], ["list_id", 1], ["name", "violetpisciotta"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.170785"], ["updated_at", "2015-03-18 23:09:28.170785"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "huandang73170521@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "huandang73170521@163.com"], ["list_id", 1], ["name", "francesstudier"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.179455"], ["updated_at", "2015-03-18 23:09:28.179455"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhoulurezqgt@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhoulurezqgt@21cn.com"], ["list_id", 1], ["name", "shereetrilli"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.197842"], ["updated_at", "2015-03-18 23:09:28.197842"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vitkustrover@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vitkustrover@sohu.com"], ["list_id", 1], ["name", "lenitadibbles"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.208984"], ["updated_at", "2015-03-18 23:09:28.208984"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rpaamttc1192@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rpaamttc1192@hotmail.com"], ["list_id", 1], ["name", "maribelfeyler"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.217788"], ["updated_at", "2015-03-18 23:09:28.217788"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "shengshui04073@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "shengshui04073@163.com"], ["list_id", 1], ["name", "ermabanet"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.226631"], ["updated_at", "2015-03-18 23:09:28.226631"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fandugkkqvx@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fandugkkqvx@21cn.com"], ["list_id", 1], ["name", "socorrosubido"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.236054"], ["updated_at", "2015-03-18 23:09:28.236054"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anfqazgz595@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anfqazgz595@hotmail.com"], ["list_id", 1], ["name", "felisabloch"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.247548"], ["updated_at", "2015-03-18 23:09:28.247548"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zsqbcuth575@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zsqbcuth575@hotmail.com"], ["list_id", 1], ["name", "laveraknopf"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.256997"], ["updated_at", "2015-03-18 23:09:28.256997"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sunhuangnhshaw@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sunhuangnhshaw@21cn.com"], ["list_id", 1], ["name", "kierstenmiglior"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.267112"], ["updated_at", "2015-03-18 23:09:28.267112"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fushantu@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fushantu@sohu.com"], ["list_id", 1], ["name", "olympiawreyford"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.275918"], ["updated_at", "2015-03-18 23:09:28.275918"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Hunter_woshiwo6@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Hunter_woshiwo6@163.com"], ["list_id", 1], ["name", "maidunmire"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.285686"], ["updated_at", "2015-03-18 23:09:28.285686"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ninlun4900423350@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ninlun4900423350@163.com"], ["list_id", 1], ["name", "jinazuziak"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.296655"], ["updated_at", "2015-03-18 23:09:28.296655"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "youzangcmhhxq@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "youzangcmhhxq@21cn.com"], ["list_id", 1], ["name", "tamerametenosky"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.305929"], ["updated_at", "2015-03-18 23:09:28.305929"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhangzhaoctfugh@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhangzhaoctfugh@21cn.com"], ["list_id", 1], ["name", "danalacio"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.314486"], ["updated_at", "2015-03-18 23:09:28.314486"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "qnnmnxge2219@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "qnnmnxge2219@hotmail.com"], ["list_id", 1], ["name", "erinnbetti"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.323096"], ["updated_at", "2015-03-18 23:09:28.323096"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fantuanbwywav@21cn.com"]]  (0.1ms) begin transaction SQL (15.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fantuanbwywav@21cn.com"], ["list_id", 1], ["name", "deloisdietzman"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.333004"], ["updated_at", "2015-03-18 23:09:28.333004"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chenriybrbvy@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chenriybrbvy@21cn.com"], ["list_id", 1], ["name", "raymondhinsley"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.358949"], ["updated_at", "2015-03-18 23:09:28.358949"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pinggua96982293@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pinggua96982293@163.com"], ["list_id", 1], ["name", "maxineeickhorst"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.369035"], ["updated_at", "2015-03-18 23:09:28.369035"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "shenjuncha@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "shenjuncha@163.com"], ["list_id", 1], ["name", "kevinwillimas"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.378263"], ["updated_at", "2015-03-18 23:09:28.378263"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fsejywgu747@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fsejywgu747@hotmail.com"], ["list_id", 1], ["name", "chloeguilmette"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.396085"], ["updated_at", "2015-03-18 23:09:28.396085"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tianliu515857832@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tianliu515857832@163.com"], ["list_id", 1], ["name", "denniserayner"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.404448"], ["updated_at", "2015-03-18 23:09:28.404448"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "banyaoshu@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "banyaoshu@sohu.com"], ["list_id", 1], ["name", "albertcutchall"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.414054"], ["updated_at", "2015-03-18 23:09:28.414054"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yandongnahdwm@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yandongnahdwm@21cn.com"], ["list_id", 1], ["name", "caraknickelbein"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.423715"], ["updated_at", "2015-03-18 23:09:28.423715"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gehanmbbdva@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gehanmbbdva@21cn.com"], ["list_id", 1], ["name", "heikebauers"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.432418"], ["updated_at", "2015-03-18 23:09:28.432418"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "qianhenmgpnjw@21cn.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "qianhenmgpnjw@21cn.com"], ["list_id", 1], ["name", "halinagannett"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.446128"], ["updated_at", "2015-03-18 23:09:28.446128"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mpj337457348@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mpj337457348@163.com"], ["list_id", 1], ["name", "manuelashape"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.455996"], ["updated_at", "2015-03-18 23:09:28.455996"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gaaahhcf4336@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gaaahhcf4336@hotmail.com"], ["list_id", 1], ["name", "dorimcclaine"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.465762"], ["updated_at", "2015-03-18 23:09:28.465762"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "linangvtrauc@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "linangvtrauc@21cn.com"], ["list_id", 1], ["name", "vertiesien"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.475058"], ["updated_at", "2015-03-18 23:09:28.475058"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yaolingpeng@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yaolingpeng@sohu.com"], ["list_id", 1], ["name", "marquettapiccil"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.484215"], ["updated_at", "2015-03-18 23:09:28.484215"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chennisczrft@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chennisczrft@21cn.com"], ["list_id", 1], ["name", "dominquecrosby"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.497225"], ["updated_at", "2015-03-18 23:09:28.497225"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "oo880179864@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "oo880179864@163.com"], ["list_id", 1], ["name", "madelenesimcox"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.506921"], ["updated_at", "2015-03-18 23:09:28.506921"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jiangpeighbnra@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jiangpeighbnra@21cn.com"], ["list_id", 1], ["name", "piapaduano"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.516389"], ["updated_at", "2015-03-18 23:09:28.516389"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pengjiahaodehao13@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pengjiahaodehao13@163.com"], ["list_id", 1], ["name", "sherabrodeur"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.525842"], ["updated_at", "2015-03-18 23:09:28.525842"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "h_kunranran432@163.com"]]  (0.1ms) begin transaction SQL (59.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "h_kunranran432@163.com"], ["list_id", 1], ["name", "thedajhonson"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.535079"], ["updated_at", "2015-03-18 23:09:28.535079"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "songlerswbcp@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "songlerswbcp@21cn.com"], ["list_id", 1], ["name", "almetamattimoe"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.603618"], ["updated_at", "2015-03-18 23:09:28.603618"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "qxhrkqnv2754@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "qxhrkqnv2754@hotmail.com"], ["list_id", 1], ["name", "maciefipps"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.613239"], ["updated_at", "2015-03-18 23:09:28.613239"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caowowaajvc@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caowowaajvc@21cn.com"], ["list_id", 1], ["name", "kaneshaamick"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.623234"], ["updated_at", "2015-03-18 23:09:28.623234"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fenqiewsyxrw@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fenqiewsyxrw@21cn.com"], ["list_id", 1], ["name", "charlenadancoes"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.634293"], ["updated_at", "2015-03-18 23:09:28.634293"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jiaojiuxing@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jiaojiuxing@sohu.com"], ["list_id", 1], ["name", "setsukocorridan"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.646132"], ["updated_at", "2015-03-18 23:09:28.646132"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nsb4989495541182@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nsb4989495541182@163.com"], ["list_id", 1], ["name", "bettyganz"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.655724"], ["updated_at", "2015-03-18 23:09:28.655724"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yubing20925294@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yubing20925294@163.com"], ["list_id", 1], ["name", "chandahelin"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.664847"], ["updated_at", "2015-03-18 23:09:28.664847"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "phdwvqqa1738@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "phdwvqqa1738@hotmail.com"], ["list_id", 1], ["name", "josefaasbell"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.674885"], ["updated_at", "2015-03-18 23:09:28.674885"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jzd41287184339@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jzd41287184339@163.com"], ["list_id", 1], ["name", "theacrookshanks"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.684036"], ["updated_at", "2015-03-18 23:09:28.684036"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fanlingkswasu@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fanlingkswasu@21cn.com"], ["list_id", 1], ["name", "keeleycresta"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.696091"], ["updated_at", "2015-03-18 23:09:28.696091"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hangme0512145257@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hangme0512145257@163.com"], ["list_id", 1], ["name", "jamesmccutchen"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.705643"], ["updated_at", "2015-03-18 23:09:28.705643"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pancuoawwjxu@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pancuoawwjxu@21cn.com"], ["list_id", 1], ["name", "marcellethurner"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.714779"], ["updated_at", "2015-03-18 23:09:28.714779"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aunahamx352@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aunahamx352@hotmail.com"], ["list_id", 1], ["name", "lorileefleeting"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.725202"], ["updated_at", "2015-03-18 23:09:28.725202"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wsgpatqa555@hotmail.com"]]  (0.1ms) begin transaction SQL (7.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wsgpatqa555@hotmail.com"], ["list_id", 1], ["name", "kathesawina"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.735195"], ["updated_at", "2015-03-18 23:09:28.735195"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zenciwnefya@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zenciwnefya@21cn.com"], ["list_id", 1], ["name", "leathagerrior"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.752165"], ["updated_at", "2015-03-18 23:09:28.752165"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lufanmnmahr@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lufanmnmahr@21cn.com"], ["list_id", 1], ["name", "junenenez"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.761500"], ["updated_at", "2015-03-18 23:09:28.761500"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sorrellblew@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sorrellblew@sohu.com"], ["list_id", 1], ["name", "kelliekempel"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.771336"], ["updated_at", "2015-03-18 23:09:28.771336"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zeila539328639@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zeila539328639@163.com"], ["list_id", 1], ["name", "shieladobine"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.780726"], ["updated_at", "2015-03-18 23:09:28.780726"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "wengrong62475217@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "wengrong62475217@163.com"], ["list_id", 1], ["name", "antonettepenkal"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.795244"], ["updated_at", "2015-03-18 23:09:28.795244"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kuaiyong59760506@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kuaiyong59760506@163.com"], ["list_id", 1], ["name", "rhiannongiegeri"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.805717"], ["updated_at", "2015-03-18 23:09:28.805717"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gaigu22347107224@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gaigu22347107224@163.com"], ["list_id", 1], ["name", "marvellaolive"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.815960"], ["updated_at", "2015-03-18 23:09:28.815960"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aass68696766353@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aass68696766353@163.com"], ["list_id", 1], ["name", "lauraswoboda"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.826118"], ["updated_at", "2015-03-18 23:09:28.826118"]]  (15.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "daichang532322@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "daichang532322@163.com"], ["list_id", 1], ["name", "myraderalph"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.848864"], ["updated_at", "2015-03-18 23:09:28.848864"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "barnarlawsky@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "barnarlawsky@sohu.com"], ["list_id", 1], ["name", "vivanpalakiko"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.859524"], ["updated_at", "2015-03-18 23:09:28.859524"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "buh9015000655824@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "buh9015000655824@163.com"], ["list_id", 1], ["name", "mandyfulling"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.869363"], ["updated_at", "2015-03-18 23:09:28.869363"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "haoyan08072668130@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "haoyan08072668130@163.com"], ["list_id", 1], ["name", "angelschnautz"], ["last_name", ""], ["created_at", "2015-03-18 23:09:28.879295"], ["updated_at", "2015-03-18 23:09:28.879295"]]  (118.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fengjia6882630@163.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fengjia6882630@163.com"], ["list_id", 1], ["name", "sherellquist"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.005660"], ["updated_at", "2015-03-18 23:09:29.005660"]]  (22.0ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhushouafbcaq@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhushouafbcaq@21cn.com"], ["list_id", 1], ["name", "angellaspringma"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.035619"], ["updated_at", "2015-03-18 23:09:29.035619"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ahuan254992965@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ahuan254992965@163.com"], ["list_id", 1], ["name", "franciebagheri"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.062782"], ["updated_at", "2015-03-18 23:09:29.062782"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhangyunaeyryn@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhangyunaeyryn@21cn.com"], ["list_id", 1], ["name", "joselynwanner"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.078490"], ["updated_at", "2015-03-18 23:09:29.078490"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luoyanxian@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luoyanxian@sohu.com"], ["list_id", 1], ["name", "kerenmanoogian"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.087647"], ["updated_at", "2015-03-18 23:09:29.087647"]]  (11.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mayanan103@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mayanan103@163.com"], ["list_id", 1], ["name", "karymohead"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.105585"], ["updated_at", "2015-03-18 23:09:29.105585"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "najiekang@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "najiekang@sohu.com"], ["list_id", 1], ["name", "alvaminium"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.114497"], ["updated_at", "2015-03-18 23:09:29.114497"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zhennianguuxyjw@21cn.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zhennianguuxyjw@21cn.com"], ["list_id", 1], ["name", "annmarieschmaut"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.128967"], ["updated_at", "2015-03-18 23:09:29.128967"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zoumianvejygn@21cn.com"]]  (0.1ms) begin transaction SQL (11.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zoumianvejygn@21cn.com"], ["list_id", 1], ["name", "iraidadelavina"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.138071"], ["updated_at", "2015-03-18 23:09:29.138071"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "qichenlai@sohu.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "qichenlai@sohu.com"], ["list_id", 1], ["name", "nanciewaddle"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.160222"], ["updated_at", "2015-03-18 23:09:29.160222"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "zanbwrnc624@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "zanbwrnc624@hotmail.com"], ["list_id", 1], ["name", "cristendussault"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.179480"], ["updated_at", "2015-03-18 23:09:29.179480"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dongyangma@sohu.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dongyangma@sohu.com"], ["list_id", 1], ["name", "shavonschuneman"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.190944"], ["updated_at", "2015-03-18 23:09:29.190944"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mowai166347016@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mowai166347016@163.com"], ["list_id", 1], ["name", "angeleschwantd"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.200372"], ["updated_at", "2015-03-18 23:09:29.200372"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bdyhdeab1362@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bdyhdeab1362@hotmail.com"], ["list_id", 1], ["name", "bulahloiselle"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.210242"], ["updated_at", "2015-03-18 23:09:29.210242"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "drhjgsdc2289@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "drhjgsdc2289@hotmail.com"], ["list_id", 1], ["name", "priscilacashmer"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.228402"], ["updated_at", "2015-03-18 23:09:29.228402"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "linliuduan@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "linliuduan@sohu.com"], ["list_id", 1], ["name", "arthursecond"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.237697"], ["updated_at", "2015-03-18 23:09:29.237697"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "qdyswmbq8846@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "qdyswmbq8846@hotmail.com"], ["list_id", 1], ["name", "waltraudvalerin"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.247345"], ["updated_at", "2015-03-18 23:09:29.247345"]]  (3.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "panuo6647878167@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "panuo6647878167@163.com"], ["list_id", 1], ["name", "janeevantull"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.257663"], ["updated_at", "2015-03-18 23:09:29.257663"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lamoreekaib@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lamoreekaib@sohu.com"], ["list_id", 1], ["name", "brianapizzi"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.267647"], ["updated_at", "2015-03-18 23:09:29.267647"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "qpl9359557972651@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "qpl9359557972651@163.com"], ["list_id", 1], ["name", "portiajotblad"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.277964"], ["updated_at", "2015-03-18 23:09:29.277964"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hezhuadmypca@21cn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hezhuadmypca@21cn.com"], ["list_id", 1], ["name", "particiaspyres"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.287174"], ["updated_at", "2015-03-18 23:09:29.287174"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yazuo433381463@163.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yazuo433381463@163.com"], ["list_id", 1], ["name", "claudinearave"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.297121"], ["updated_at", "2015-03-18 23:09:29.297121"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chengnou45@163.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chengnou45@163.com"], ["list_id", 1], ["name", "hortenseskeele"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.306074"], ["updated_at", "2015-03-18 23:09:29.306074"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chifenchen@sohu.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chifenchen@sohu.com"], ["list_id", 1], ["name", "nicholeweemes"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.315182"], ["updated_at", "2015-03-18 23:09:29.315182"]]  (9.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "el.angeles@gmail.co"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "el.angeles@gmail.co"], ["list_id", 1], ["name", "Elena"], ["last_name", "Gatica Gonzalez"], ["created_at", "2015-03-18 23:09:29.330953"], ["updated_at", "2015-03-18 23:09:29.330953"]]  (67.1ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lazaromanuelaguilariglesias@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lazaromanuelaguilariglesias@yahoo.es"], ["list_id", 1], ["name", "lazaro"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.405636"], ["updated_at", "2015-03-18 23:09:29.405636"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alexannic@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alexannic@gmail.com"], ["list_id", 1], ["name", "Alex"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.415898"], ["updated_at", "2015-03-18 23:09:29.415898"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "comunicaciones@printlabdigital.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "comunicaciones@printlabdigital.cl"], ["list_id", 1], ["name", "Printlab"], ["last_name", "Digital"], ["created_at", "2015-03-18 23:09:29.425517"], ["updated_at", "2015-03-18 23:09:29.425517"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jocvangueluc@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jocvangueluc@gmail.com"], ["list_id", 1], ["name", "Joce"], ["last_name", "Guerrero"], ["created_at", "2015-03-18 23:09:29.435299"], ["updated_at", "2015-03-18 23:09:29.435299"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "malena.gogo@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "malena.gogo@gmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Elena Rdz. López de Lara"], ["created_at", "2015-03-18 23:09:29.462691"], ["updated_at", "2015-03-18 23:09:29.462691"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "florencia.sanchezp@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "florencia.sanchezp@gmail.com"], ["list_id", 1], ["name", "Florencia"], ["last_name", "Sanchez"], ["created_at", "2015-03-18 23:09:29.473394"], ["updated_at", "2015-03-18 23:09:29.473394"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "colectivobaba@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "colectivobaba@gmail.com"], ["list_id", 1], ["name", "BABA"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.482988"], ["updated_at", "2015-03-18 23:09:29.482988"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ajedrezsanfelipe@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ajedrezsanfelipe@gmail.com"], ["list_id", 1], ["name", "rodrigo"], ["last_name", "gajardo herrera"], ["created_at", "2015-03-18 23:09:29.492683"], ["updated_at", "2015-03-18 23:09:29.492683"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claudiodelsolar@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claudiodelsolar@yahoo.es"], ["list_id", 1], ["name", "claudio"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.511934"], ["updated_at", "2015-03-18 23:09:29.511934"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "robertapablaza@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "robertapablaza@gmail.com"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Apablaza Morales"], ["created_at", "2015-03-18 23:09:29.522022"], ["updated_at", "2015-03-18 23:09:29.522022"]]  (55.3ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "peraltamatias@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "peraltamatias@hotmail.com"], ["list_id", 1], ["name", "Matias"], ["last_name", "Peralta"], ["created_at", "2015-03-18 23:09:29.585456"], ["updated_at", "2015-03-18 23:09:29.585456"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "American.artist76@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "American.artist76@gmail.com"], ["list_id", 1], ["name", "Robert"], ["last_name", "Gorman"], ["created_at", "2015-03-18 23:09:29.596410"], ["updated_at", "2015-03-18 23:09:29.596410"]]  (4.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "avhaaster@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "avhaaster@hotmail.com"], ["list_id", 1], ["name", "Bla"], ["last_name", "bla"], ["created_at", "2015-03-18 23:09:29.608161"], ["updated_at", "2015-03-18 23:09:29.608161"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "indeleble_dg@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "indeleble_dg@hotmail.com"], ["list_id", 1], ["name", "Ramiro"], ["last_name", "Quartz_Lab"], ["created_at", "2015-03-18 23:09:29.618359"], ["updated_at", "2015-03-18 23:09:29.618359"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yelhsa_13@live.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yelhsa_13@live.com"], ["list_id", 1], ["name", "Ashley"], ["last_name", "Toloza"], ["created_at", "2015-03-18 23:09:29.645202"], ["updated_at", "2015-03-18 23:09:29.645202"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "orlandorojasoyarzun@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "orlandorojasoyarzun@gmail.com"], ["list_id", 1], ["name", "Orlando"], ["last_name", "Rojas"], ["created_at", "2015-03-18 23:09:29.655767"], ["updated_at", "2015-03-18 23:09:29.655767"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "terracotaceramica@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "terracotaceramica@yahoo.com"], ["list_id", 1], ["name", "Patricia"], ["last_name", "Martinez A"], ["created_at", "2015-03-18 23:09:29.665896"], ["updated_at", "2015-03-18 23:09:29.665896"]]  (4.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lio.fotoarte@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lio.fotoarte@gmail.com"], ["list_id", 1], ["name", "Alejandra"], ["last_name", "Rojas Salazar"], ["created_at", "2015-03-18 23:09:29.677158"], ["updated_at", "2015-03-18 23:09:29.677158"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mriveraf@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mriveraf@hotmail.com"], ["list_id", 1], ["name", "MARCELO"], ["last_name", "RIVERA FUENZALIDA"], ["created_at", "2015-03-18 23:09:29.693538"], ["updated_at", "2015-03-18 23:09:29.693538"]]  (20.1ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "manuebruit@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "manuebruit@gmail.com"], ["list_id", 1], ["name", "Manuel"], ["last_name", "Bruit"], ["created_at", "2015-03-18 23:09:29.721536"], ["updated_at", "2015-03-18 23:09:29.721536"]]  (6.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aleda74@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aleda74@hotmail.com"], ["list_id", 1], ["name", "Alejandra"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.735260"], ["updated_at", "2015-03-18 23:09:29.735260"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "katiamunyoz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "katiamunyoz@gmail.com"], ["list_id", 1], ["name", "KATIA"], ["last_name", "MUÑOZ"], ["created_at", "2015-03-18 23:09:29.746751"], ["updated_at", "2015-03-18 23:09:29.746751"]]  (10.2ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Tenepharis@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Tenepharis@hotmail.com"], ["list_id", 1], ["name", "Susana"], ["last_name", "Riveros San Martín"], ["created_at", "2015-03-18 23:09:29.763389"], ["updated_at", "2015-03-18 23:09:29.763389"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fer_ux@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fer_ux@hotmail.com"], ["list_id", 1], ["name", "Aldo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:29.773012"], ["updated_at", "2015-03-18 23:09:29.773012"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fegutierb@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fegutierb@gmail.com"], ["list_id", 1], ["name", "FELIPE"], ["last_name", "ANDRES GUTIERREZ BORIS"], ["created_at", "2015-03-18 23:09:29.782293"], ["updated_at", "2015-03-18 23:09:29.782293"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "majevalenz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "majevalenz@gmail.com"], ["list_id", 1], ["name", "Maje"], ["last_name", "Valenzuela"], ["created_at", "2015-03-18 23:09:29.794135"], ["updated_at", "2015-03-18 23:09:29.794135"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "obturadorfotos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "obturadorfotos@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Jesús Valenzuela"], ["created_at", "2015-03-18 23:09:29.803126"], ["updated_at", "2015-03-18 23:09:29.803126"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ojoahumao@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ojoahumao@gmail.com"], ["list_id", 1], ["name", "javier"], ["last_name", "reta"], ["created_at", "2015-03-18 23:09:29.813519"], ["updated_at", "2015-03-18 23:09:29.813519"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leni3car@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leni3car@hotmail.com"], ["list_id", 1], ["name", "jhon"], ["last_name", "edisson rodriguez nuñez"], ["created_at", "2015-03-18 23:09:29.822945"], ["updated_at", "2015-03-18 23:09:29.822945"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pazkku@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pazkku@gmail.com"], ["list_id", 1], ["name", "Camen"], ["last_name", "Ñancuvil"], ["created_at", "2015-03-18 23:09:29.832053"], ["updated_at", "2015-03-18 23:09:29.832053"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eltallerdemenina@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eltallerdemenina@gmail.com"], ["list_id", 1], ["name", "maría"], ["last_name", "cristina encina"], ["created_at", "2015-03-18 23:09:29.843412"], ["updated_at", "2015-03-18 23:09:29.843412"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "strangething@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "strangething@live.cl"], ["list_id", 1], ["name", "Eduardo"], ["last_name", "P."], ["created_at", "2015-03-18 23:09:29.852242"], ["updated_at", "2015-03-18 23:09:29.852242"]]  (14.9ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "x.u.s90@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "x.u.s90@hotmail.com"], ["list_id", 1], ["name", "luiss"], ["last_name", "lópez"], ["created_at", "2015-03-18 23:09:29.874981"], ["updated_at", "2015-03-18 23:09:29.874981"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ramirezg.camila@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ramirezg.camila@gmail.com"], ["list_id", 1], ["name", "Camila"], ["last_name", "Ramírez G."], ["created_at", "2015-03-18 23:09:29.893289"], ["updated_at", "2015-03-18 23:09:29.893289"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulcita@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulcita@gmail.com"], ["list_id", 1], ["name", "Paulina"], ["last_name", "Olguin Espinoza"], ["created_at", "2015-03-18 23:09:29.903249"], ["updated_at", "2015-03-18 23:09:29.903249"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pcristi@manquehue.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pcristi@manquehue.net"], ["list_id", 1], ["name", "pauline"], ["last_name", "cristi"], ["created_at", "2015-03-18 23:09:29.912843"], ["updated_at", "2015-03-18 23:09:29.912843"]]  (15.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "trini_tqr@hotmail.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "trini_tqr@hotmail.com"], ["list_id", 1], ["name", "Trinidad"], ["last_name", "Suárez"], ["created_at", "2015-03-18 23:09:29.934424"], ["updated_at", "2015-03-18 23:09:29.934424"]]  (35.9ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gusrom@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gusrom@gmail.com"], ["list_id", 1], ["name", "Gustavo"], ["last_name", "Romano"], ["created_at", "2015-03-18 23:09:29.978888"], ["updated_at", "2015-03-18 23:09:29.978888"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cyntiavargasteodoro@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cyntiavargasteodoro@gmail.com"], ["list_id", 1], ["name", "Cyntia"], ["last_name", "Vargas Teodoro"], ["created_at", "2015-03-18 23:09:29.994217"], ["updated_at", "2015-03-18 23:09:29.994217"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artistmarjorge@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artistmarjorge@gmail.com"], ["list_id", 1], ["name", "Marlene"], ["last_name", "Jorge"], ["created_at", "2015-03-18 23:09:30.010575"], ["updated_at", "2015-03-18 23:09:30.010575"]]  (7.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ireneazmi@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ireneazmi@hotmail.com"], ["list_id", 1], ["name", "Irene"], ["last_name", ""], ["created_at", "2015-03-18 23:09:30.024528"], ["updated_at", "2015-03-18 23:09:30.024528"]]  (6.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jsantander77@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jsantander77@hotmail.com"], ["list_id", 1], ["name", "jaime"], ["last_name", "santander"], ["created_at", "2015-03-18 23:09:30.037751"], ["updated_at", "2015-03-18 23:09:30.037751"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eduardotorres@espaciocrea.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eduardotorres@espaciocrea.cl"], ["list_id", 1], ["name", "Eduardo"], ["last_name", "Torres"], ["created_at", "2015-03-18 23:09:30.060670"], ["updated_at", "2015-03-18 23:09:30.060670"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paint3c@hotmail.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paint3c@hotmail.es"], ["list_id", 1], ["name", "efrain"], ["last_name", ""], ["created_at", "2015-03-18 23:09:30.075973"], ["updated_at", "2015-03-18 23:09:30.075973"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cgomez.navarro@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cgomez.navarro@yahoo.es"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Gómez Navarro"], ["created_at", "2015-03-18 23:09:30.085327"], ["updated_at", "2015-03-18 23:09:30.085327"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "babycalbillo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "babycalbillo@hotmail.com"], ["list_id", 1], ["name", "luis"], ["last_name", "castanedo"], ["created_at", "2015-03-18 23:09:30.094069"], ["updated_at", "2015-03-18 23:09:30.094069"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "e.humus@hotmail.es"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "e.humus@hotmail.es"], ["list_id", 1], ["name", "a"], ["last_name", ""], ["created_at", "2015-03-18 23:09:30.103657"], ["updated_at", "2015-03-18 23:09:30.103657"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sara.vergara.q@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sara.vergara.q@gmail.com"], ["list_id", 1], ["name", "Sara"], ["last_name", ""], ["created_at", "2015-03-18 23:09:30.113681"], ["updated_at", "2015-03-18 23:09:30.113681"]]  (13.7ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "florloewenta@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "florloewenta@yahoo.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "viggiano"], ["created_at", "2015-03-18 23:09:30.134624"], ["updated_at", "2015-03-18 23:09:30.134624"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "patriciakich@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "patriciakich@hotmail.com"], ["list_id", 1], ["name", "Patricia"], ["last_name", "Cerón"], ["created_at", "2015-03-18 23:09:30.144749"], ["updated_at", "2015-03-18 23:09:30.144749"]]  (9.7ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josenicolas.reyes@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josenicolas.reyes@gmail.com"], ["list_id", 1], ["name", "jose"], ["last_name", "reyes"], ["created_at", "2015-03-18 23:09:30.161604"], ["updated_at", "2015-03-18 23:09:30.161604"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javierlewin@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javierlewin@gmail.com"], ["list_id", 1], ["name", "Javier"], ["last_name", "Lewin"], ["created_at", "2015-03-18 23:09:30.176768"], ["updated_at", "2015-03-18 23:09:30.176768"]]  (4.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "clehuede@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "clehuede@yahoo.com"], ["list_id", 1], ["name", "Cristian"], ["last_name", "Lehuede"], ["created_at", "2015-03-18 23:09:30.188099"], ["updated_at", "2015-03-18 23:09:30.188099"]]  (15.5ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fb.valeria@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fb.valeria@gmail.com"], ["list_id", 1], ["name", "Valeria"], ["last_name", "Faúndez"], ["created_at", "2015-03-18 23:09:30.211719"], ["updated_at", "2015-03-18 23:09:30.211719"]]  (11.0ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ma.paz.araya@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ma.paz.araya@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Paz Araya Aguirre"], ["created_at", "2015-03-18 23:09:30.230246"], ["updated_at", "2015-03-18 23:09:30.230246"]]  (17.8ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "feromavi@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "feromavi@yahoo.es"], ["list_id", 1], ["name", "Marvilla"], ["last_name", ""], ["created_at", "2015-03-18 23:09:30.255734"], ["updated_at", "2015-03-18 23:09:30.255734"]]  (6.1ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "yrarrazaval@gmail.com"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "yrarrazaval@gmail.com"], ["list_id", 1], ["name", "monica"], ["last_name", "irarrazaval"], ["created_at", "2015-03-18 23:09:30.270509"], ["updated_at", "2015-03-18 23:09:30.270509"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Carlichucknorris@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Carlichucknorris@hotmail.com"], ["list_id", 1], ["name", "Carla"], ["last_name", "Safie"], ["created_at", "2015-03-18 23:09:30.281532"], ["updated_at", "2015-03-18 23:09:30.281532"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cecilain@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cecilain@gmail.com"], ["list_id", 1], ["name", "Cecilia"], ["last_name", "Luvecce Rouvrais"], ["created_at", "2015-03-18 23:09:30.291621"], ["updated_at", "2015-03-18 23:09:30.291621"]]  (8.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "emilio.fuentes.traverso@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "emilio.fuentes.traverso@gmail.com"], ["list_id", 1], ["name", "Emilio"], ["last_name", "Fuentes Traverso"], ["created_at", "2015-03-18 23:09:30.404993"], ["updated_at", "2015-03-18 23:09:30.404993"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gafus@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gafus@hotmail.com"], ["list_id", 1], ["name", "Guillermo"], ["last_name", "de Torres"], ["created_at", "2015-03-18 23:09:30.414590"], ["updated_at", "2015-03-18 23:09:30.414590"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bussearte@busse.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bussearte@busse.com.ar"], ["list_id", 1], ["name", "AUGUSTO"], ["last_name", "BUSSE"], ["created_at", "2015-03-18 23:09:30.424056"], ["updated_at", "2015-03-18 23:09:30.424056"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "guillermoperezsantos@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "guillermoperezsantos@gmail.com"], ["list_id", 1], ["name", "Guillermo"], ["last_name", "Perez Santos"], ["created_at", "2015-03-18 23:09:30.433230"], ["updated_at", "2015-03-18 23:09:30.433230"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "exoticamericana@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "exoticamericana@gmail.com"], ["list_id", 1], ["name", "Estefania"], ["last_name", "Irrazabal Del Castro"], ["created_at", "2015-03-18 23:09:30.442868"], ["updated_at", "2015-03-18 23:09:30.442868"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dinobuba@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dinobuba@gmail.com"], ["list_id", 1], ["name", "evelyn"], ["last_name", "acuña acuña"], ["created_at", "2015-03-18 23:09:30.459027"], ["updated_at", "2015-03-18 23:09:30.459027"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "otromaildenuevo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "otromaildenuevo@gmail.com"], ["list_id", 1], ["name", "Inka"], ["last_name", ""], ["created_at", "2015-03-18 23:09:30.468788"], ["updated_at", "2015-03-18 23:09:30.468788"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nicojaramillo@hotmail.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nicojaramillo@hotmail.es"], ["list_id", 1], ["name", "Sebastian"], ["last_name", "Jaramillo"], ["created_at", "2015-03-18 23:09:30.477936"], ["updated_at", "2015-03-18 23:09:30.477936"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fgrafico@hispavista.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fgrafico@hispavista.com"], ["list_id", 1], ["name", "fernando"], ["last_name", "gatica gutierrez"], ["created_at", "2015-03-18 23:09:30.487410"], ["updated_at", "2015-03-18 23:09:30.487410"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hffreiburg@aol.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hffreiburg@aol.com"], ["list_id", 1], ["name", "helmut"], ["last_name", "friedrich"], ["created_at", "2015-03-18 23:09:30.497400"], ["updated_at", "2015-03-18 23:09:30.497400"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "bernarditacastillo@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "bernarditacastillo@gmail.com"], ["list_id", 1], ["name", "Bernardita"], ["last_name", "Castillo Montt"], ["created_at", "2015-03-18 23:09:30.509328"], ["updated_at", "2015-03-18 23:09:30.509328"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "paulayaime2009@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "paulayaime2009@hotmail.com"], ["list_id", 1], ["name", "paula"], ["last_name", "tolosa"], ["created_at", "2015-03-18 23:09:30.518944"], ["updated_at", "2015-03-18 23:09:30.518944"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "borartemagico@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "borartemagico@gmail.com"], ["list_id", 1], ["name", "Paula"], ["last_name", ""], ["created_at", "2015-03-18 23:09:30.528233"], ["updated_at", "2015-03-18 23:09:30.528233"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "supnem@gmail.com"]]  (0.1ms) begin transaction SQL (1.0ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "supnem@gmail.com"], ["list_id", 1], ["name", "Katherine"], ["last_name", "Supnem"], ["created_at", "2015-03-18 23:09:30.538334"], ["updated_at", "2015-03-18 23:09:30.538334"]]  (719.8ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hibris1@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hibris1@hotmail.com"], ["list_id", 1], ["name", "Patricio"], ["last_name", "Paretti"], ["created_at", "2015-03-18 23:09:31.267346"], ["updated_at", "2015-03-18 23:09:31.267346"]]  (62.2ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "agnesgonzalezlagos@hotmail.com"]]  (0.1ms) begin transaction SQL (0.9ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "agnesgonzalezlagos@hotmail.com"], ["list_id", 1], ["name", "Agnes"], ["last_name", "González-Lagos"], ["created_at", "2015-03-18 23:09:31.337222"], ["updated_at", "2015-03-18 23:09:31.337222"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mijail.cioran@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mijail.cioran@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Angel Lander"], ["created_at", "2015-03-18 23:09:31.347882"], ["updated_at", "2015-03-18 23:09:31.347882"]]  (4.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ignacio.micheli@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ignacio.micheli@gmail.com"], ["list_id", 1], ["name", "ignacio"], ["last_name", "micheli"], ["created_at", "2015-03-18 23:09:31.359144"], ["updated_at", "2015-03-18 23:09:31.359144"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lissetteruiz005@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lissetteruiz005@gmail.com"], ["list_id", 1], ["name", "LISSETTE"], ["last_name", "RUIZ ARAVENA"], ["created_at", "2015-03-18 23:09:31.368694"], ["updated_at", "2015-03-18 23:09:31.368694"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "makita_1410@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "makita_1410@hotmail.com"], ["list_id", 1], ["name", "Maca"], ["last_name", ""], ["created_at", "2015-03-18 23:09:31.390279"], ["updated_at", "2015-03-18 23:09:31.390279"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artpower.cl@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artpower.cl@gmail.com"], ["list_id", 1], ["name", "Pedro"], ["last_name", "Asalgado Verdugo"], ["created_at", "2015-03-18 23:09:31.401303"], ["updated_at", "2015-03-18 23:09:31.401303"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cantaritomix@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cantaritomix@hotmail.com"], ["list_id", 1], ["name", "santiago"], ["last_name", "mendez"], ["created_at", "2015-03-18 23:09:31.411663"], ["updated_at", "2015-03-18 23:09:31.411663"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ddourojeanni@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ddourojeanni@hotmail.com"], ["list_id", 1], ["name", "Denise"], ["last_name", "Dourojeanni"], ["created_at", "2015-03-18 23:09:31.421557"], ["updated_at", "2015-03-18 23:09:31.421557"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josemoni@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josemoni@hotmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Moni"], ["created_at", "2015-03-18 23:09:31.439249"], ["updated_at", "2015-03-18 23:09:31.439249"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "texacoal@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "texacoal@hotmail.com"], ["list_id", 1], ["name", "adrian"], ["last_name", ""], ["created_at", "2015-03-18 23:09:31.448663"], ["updated_at", "2015-03-18 23:09:31.448663"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amaggiolo@hotmail.es"]]  (0.1ms) begin transaction SQL (68.2ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amaggiolo@hotmail.es"], ["list_id", 1], ["name", "alfonso"], ["last_name", "maggiolo peirano"], ["created_at", "2015-03-18 23:09:31.457936"], ["updated_at", "2015-03-18 23:09:31.457936"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "enapcomunicacionsocial@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "enapcomunicacionsocial@gmail.com"], ["list_id", 1], ["name", "Comunicación"], ["last_name", "Social ENAP"], ["created_at", "2015-03-18 23:09:31.536858"], ["updated_at", "2015-03-18 23:09:31.536858"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mirtha.almada59@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mirtha.almada59@gmail.com"], ["list_id", 1], ["name", "MIRTHA"], ["last_name", ""], ["created_at", "2015-03-18 23:09:31.546916"], ["updated_at", "2015-03-18 23:09:31.546916"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "a.mangulis@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "a.mangulis@gmail.com"], ["list_id", 1], ["name", "Aivars"], ["last_name", "Mangulis"], ["created_at", "2015-03-18 23:09:31.555838"], ["updated_at", "2015-03-18 23:09:31.555838"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lolkincast@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lolkincast@gmail.com"], ["list_id", 1], ["name", "LOL"], ["last_name", "KIN CASTAÑEDA"], ["created_at", "2015-03-18 23:09:31.565404"], ["updated_at", "2015-03-18 23:09:31.565404"]]  (2.1ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "emiliodessin@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "emiliodessin@gmail.com"], ["list_id", 1], ["name", "emilio"], ["last_name", "losada"], ["created_at", "2015-03-18 23:09:31.589825"], ["updated_at", "2015-03-18 23:09:31.589825"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elextranjerosefue@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elextranjerosefue@gmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Eduardo Meneses"], ["created_at", "2015-03-18 23:09:31.599428"], ["updated_at", "2015-03-18 23:09:31.599428"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "samuel@cenfoto.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "samuel@cenfoto.cl"], ["list_id", 1], ["name", "samuel"], ["last_name", ""], ["created_at", "2015-03-18 23:09:31.608422"], ["updated_at", "2015-03-18 23:09:31.608422"]]  (17.6ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hagop2404@gmail.com"]]  (0.3ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hagop2404@gmail.com"], ["list_id", 1], ["name", "Hagop"], ["last_name", "Der Hagopian"], ["created_at", "2015-03-18 23:09:31.634687"], ["updated_at", "2015-03-18 23:09:31.634687"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andradesilva_carlos@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andradesilva_carlos@hotmail.com"], ["list_id", 1], ["name", "Carlos"], ["last_name", "Andrade Silva"], ["created_at", "2015-03-18 23:09:31.644437"], ["updated_at", "2015-03-18 23:09:31.644437"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "piabahamondes@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "piabahamondes@gmail.com"], ["list_id", 1], ["name", "Pia"], ["last_name", "Bahamondes"], ["created_at", "2015-03-18 23:09:31.653560"], ["updated_at", "2015-03-18 23:09:31.653560"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jakicharru@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jakicharru@hotmail.com"], ["list_id", 1], ["name", "Jacqueline"], ["last_name", "Charrua"], ["created_at", "2015-03-18 23:09:31.663036"], ["updated_at", "2015-03-18 23:09:31.663036"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "os.nico@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "os.nico@hotmail.com"], ["list_id", 1], ["name", "Nicolás"], ["last_name", "O. Sardá"], ["created_at", "2015-03-18 23:09:31.672805"], ["updated_at", "2015-03-18 23:09:31.672805"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luis.augusto.u@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luis.augusto.u@gmail.com"], ["list_id", 1], ["name", "Luis"], ["last_name", "Augusto"], ["created_at", "2015-03-18 23:09:31.688796"], ["updated_at", "2015-03-18 23:09:31.688796"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javier_cluzet@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javier_cluzet@yahoo.com"], ["list_id", 1], ["name", "Javier"], ["last_name", "Cluzet"], ["created_at", "2015-03-18 23:09:31.698809"], ["updated_at", "2015-03-18 23:09:31.698809"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jhaeger1@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jhaeger1@hotmail.com"], ["list_id", 1], ["name", "javier"], ["last_name", "haeger"], ["created_at", "2015-03-18 23:09:31.707368"], ["updated_at", "2015-03-18 23:09:31.707368"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ca_yn@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ca_yn@yahoo.com"], ["list_id", 1], ["name", "Cesareo"], ["last_name", "Young"], ["created_at", "2015-03-18 23:09:31.716640"], ["updated_at", "2015-03-18 23:09:31.716640"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andreiandreina@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andreiandreina@gmail.com"], ["list_id", 1], ["name", "Andrea"], ["last_name", "Fuentealba"], ["created_at", "2015-03-18 23:09:31.725983"], ["updated_at", "2015-03-18 23:09:31.725983"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "carolina.busquets@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "carolina.busquets@gmail.com"], ["list_id", 1], ["name", "Carolina"], ["last_name", "Busquets"], ["created_at", "2015-03-18 23:09:31.738425"], ["updated_at", "2015-03-18 23:09:31.738425"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "miriandrealoyolap@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "miriandrealoyolap@gmail.com"], ["list_id", 1], ["name", "Nené"], ["last_name", "Loy"], ["created_at", "2015-03-18 23:09:31.747722"], ["updated_at", "2015-03-18 23:09:31.747722"]]  (1.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danaimirka@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danaimirka@gmail.com"], ["list_id", 1], ["name", "Danai"], ["last_name", "Ortiz de Zárate Vicuña"], ["created_at", "2015-03-18 23:09:31.756414"], ["updated_at", "2015-03-18 23:09:31.756414"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "lorenacmc@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "lorenacmc@gmail.com"], ["list_id", 1], ["name", "Lorena"], ["last_name", "Moraga Correa"], ["created_at", "2015-03-18 23:09:31.765866"], ["updated_at", "2015-03-18 23:09:31.765866"]]  (2.1ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Paula.morales@live.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Paula.morales@live.cl"], ["list_id", 1], ["name", "Paula"], ["last_name", "Morales"], ["created_at", "2015-03-18 23:09:31.774961"], ["updated_at", "2015-03-18 23:09:31.774961"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "margaritaval@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "margaritaval@gmail.com"], ["list_id", 1], ["name", "margarita"], ["last_name", ""], ["created_at", "2015-03-18 23:09:31.789339"], ["updated_at", "2015-03-18 23:09:31.789339"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jvargasvillicana@yahoo.com.mx"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jvargasvillicana@yahoo.com.mx"], ["list_id", 1], ["name", "JORGE"], ["last_name", "VARGAS VILLICAÑA"], ["created_at", "2015-03-18 23:09:31.798486"], ["updated_at", "2015-03-18 23:09:31.798486"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pazytae@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pazytae@yahoo.es"], ["list_id", 1], ["name", "Carmen"], ["last_name", "Ñancuvil"], ["created_at", "2015-03-18 23:09:31.808247"], ["updated_at", "2015-03-18 23:09:31.808247"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "escuela@pameladelafuente.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "escuela@pameladelafuente.cl"], ["list_id", 1], ["name", "Pamela"], ["last_name", "de la Fuente"], ["created_at", "2015-03-18 23:09:31.817620"], ["updated_at", "2015-03-18 23:09:31.817620"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jbvenega@puc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jbvenega@puc.cl"], ["list_id", 1], ["name", "Juan"], ["last_name", "Pablo Venegas Inostroza"], ["created_at", "2015-03-18 23:09:31.826870"], ["updated_at", "2015-03-18 23:09:31.826870"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mvvega1@uc.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mvvega1@uc.cl"], ["list_id", 1], ["name", "Mariángeles"], ["last_name", "Vega Rebolledo"], ["created_at", "2015-03-18 23:09:31.839222"], ["updated_at", "2015-03-18 23:09:31.839222"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "atarnacer@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "atarnacer@yahoo.es"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Pari Vela"], ["created_at", "2015-03-18 23:09:31.849000"], ["updated_at", "2015-03-18 23:09:31.849000"]]  (3.0ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kizunarhcp@hotmail.com"]]  (0.1ms) begin transaction SQL (9.1ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kizunarhcp@hotmail.com"], ["list_id", 1], ["name", "Alma"], ["last_name", ""], ["created_at", "2015-03-18 23:09:31.859169"], ["updated_at", "2015-03-18 23:09:31.859169"]]  (2.6ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "aledil555@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "aledil555@hotmail.com"], ["list_id", 1], ["name", "Alejandra"], ["last_name", "Ferrari"], ["created_at", "2015-03-18 23:09:31.878472"], ["updated_at", "2015-03-18 23:09:31.878472"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mauricioverde@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mauricioverde@gmail.com"], ["list_id", 1], ["name", "mauricio"], ["last_name", "verde"], ["created_at", "2015-03-18 23:09:31.889158"], ["updated_at", "2015-03-18 23:09:31.889158"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "edarel256@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "edarel256@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Ángel Cortés Vidal"], ["created_at", "2015-03-18 23:09:31.898334"], ["updated_at", "2015-03-18 23:09:31.898334"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "perroconcostilla@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "perroconcostilla@gmail.com"], ["list_id", 1], ["name", "Carla"], ["last_name", "Tortul"], ["created_at", "2015-03-18 23:09:31.908304"], ["updated_at", "2015-03-18 23:09:31.908304"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sancheztami@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sancheztami@gmail.com"], ["list_id", 1], ["name", "sancheztami@gmail.com"], ["last_name", ""], ["created_at", "2015-03-18 23:09:31.917611"], ["updated_at", "2015-03-18 23:09:31.917611"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gonzabar12@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gonzabar12@gmail.com"], ["list_id", 1], ["name", "Gonzalo"], ["last_name", "González Barreiro"], ["created_at", "2015-03-18 23:09:31.927447"], ["updated_at", "2015-03-18 23:09:31.927447"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ruizfrancisco095@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ruizfrancisco095@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Ruiz"], ["created_at", "2015-03-18 23:09:31.939562"], ["updated_at", "2015-03-18 23:09:31.939562"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "velosoferrari@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "velosoferrari@gmail.com"], ["list_id", 1], ["name", "FRANCISCO"], ["last_name", "VELOSO FERRARI"], ["created_at", "2015-03-18 23:09:31.952498"], ["updated_at", "2015-03-18 23:09:31.952498"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "abarcasolari@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "abarcasolari@gmail.com"], ["list_id", 1], ["name", "Mario"], ["last_name", "Abarca Solari"], ["created_at", "2015-03-18 23:09:31.962353"], ["updated_at", "2015-03-18 23:09:31.962353"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macarenadaniela@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macarenadaniela@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Castillo Puigrredon"], ["created_at", "2015-03-18 23:09:31.973047"], ["updated_at", "2015-03-18 23:09:31.973047"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pepiniplop@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pepiniplop@gmail.com"], ["list_id", 1], ["name", "Stephanie"], ["last_name", "Michelle Stifel Caica"], ["created_at", "2015-03-18 23:09:31.989800"], ["updated_at", "2015-03-18 23:09:31.989800"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ingridbork@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ingridbork@gmail.com"], ["list_id", 1], ["name", "Ingrid"], ["last_name", "Bork"], ["created_at", "2015-03-18 23:09:32.002413"], ["updated_at", "2015-03-18 23:09:32.002413"]]  (4.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "khelmlinger@ccs.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "khelmlinger@ccs.cl"], ["list_id", 1], ["name", "Karin"], ["last_name", "Helmlinger"], ["created_at", "2015-03-18 23:09:32.012877"], ["updated_at", "2015-03-18 23:09:32.012877"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jose.millapan@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jose.millapan@gmail.com"], ["list_id", 1], ["name", "José"], ["last_name", "Millapán"], ["created_at", "2015-03-18 23:09:32.022763"], ["updated_at", "2015-03-18 23:09:32.022763"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mbordenave@intv.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mbordenave@intv.com.ar"], ["list_id", 1], ["name", "Martin"], ["last_name", ""], ["created_at", "2015-03-18 23:09:32.039430"], ["updated_at", "2015-03-18 23:09:32.039430"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fco.villarroel.f@gmail.com"]]  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fco.villarroel.f@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Villarroel"], ["created_at", "2015-03-18 23:09:32.052959"], ["updated_at", "2015-03-18 23:09:32.052959"]]  (20.6ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fba1938@gmail.com"]]  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fba1938@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Barriga Alliende"], ["created_at", "2015-03-18 23:09:32.081010"], ["updated_at", "2015-03-18 23:09:32.081010"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cristianfernandezarq@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cristianfernandezarq@gmail.com"], ["list_id", 1], ["name", "cristian"], ["last_name", "fernandez"], ["created_at", "2015-03-18 23:09:32.092464"], ["updated_at", "2015-03-18 23:09:32.092464"]]  (4.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "vrjosefina@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "vrjosefina@gmail.com"], ["list_id", 1], ["name", "Josefina"], ["last_name", "Valenzuela"], ["created_at", "2015-03-18 23:09:32.103108"], ["updated_at", "2015-03-18 23:09:32.103108"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gperezneriz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gperezneriz@gmail.com"], ["list_id", 1], ["name", "Genesis"], ["last_name", "Victoria Perez Neriz"], ["created_at", "2015-03-18 23:09:32.112425"], ["updated_at", "2015-03-18 23:09:32.112425"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artbnjamin@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artbnjamin@gmail.com"], ["list_id", 1], ["name", "Bnjamin"], ["last_name", "Donoso"], ["created_at", "2015-03-18 23:09:32.122522"], ["updated_at", "2015-03-18 23:09:32.122522"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisca.espina@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisca.espina@hotmail.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Espina"], ["created_at", "2015-03-18 23:09:32.137847"], ["updated_at", "2015-03-18 23:09:32.137847"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andrespera16@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andrespera16@hotmail.com"], ["list_id", 1], ["name", "Andrés"], ["last_name", "Pérez Arenzana"], ["created_at", "2015-03-18 23:09:32.148031"], ["updated_at", "2015-03-18 23:09:32.148031"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kyu_7@msn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kyu_7@msn.com"], ["list_id", 1], ["name", "luis_canuto"], ["last_name", ""], ["created_at", "2015-03-18 23:09:32.157093"], ["updated_at", "2015-03-18 23:09:32.157093"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mptb45@yahoo.es"]]  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mptb45@yahoo.es"], ["list_id", 1], ["name", "Maria"], ["last_name", "Paz Tapia"], ["created_at", "2015-03-18 23:09:32.167635"], ["updated_at", "2015-03-18 23:09:32.167635"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "orlandojesus7@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "orlandojesus7@gmail.com"], ["list_id", 1], ["name", "Orlando"], ["last_name", "Jesus Tapia"], ["created_at", "2015-03-18 23:09:32.188450"], ["updated_at", "2015-03-18 23:09:32.188450"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ccofre@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ccofre@gmail.com"], ["list_id", 1], ["name", "Claudio"], ["last_name", "Cofré Flores"], ["created_at", "2015-03-18 23:09:32.198729"], ["updated_at", "2015-03-18 23:09:32.198729"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pamela.artetextil@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pamela.artetextil@gmail.com"], ["list_id", 1], ["name", "Pamela"], ["last_name", "Illanes Silva"], ["created_at", "2015-03-18 23:09:32.208898"], ["updated_at", "2015-03-18 23:09:32.208898"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "penasagua@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "penasagua@gmail.com"], ["list_id", 1], ["name", "Cristián"], ["last_name", "Peña"], ["created_at", "2015-03-18 23:09:32.219685"], ["updated_at", "2015-03-18 23:09:32.219685"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andressancarlos@gmail.con"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andressancarlos@gmail.con"], ["list_id", 1], ["name", "Andres"], ["last_name", "san carlos"], ["created_at", "2015-03-18 23:09:32.237252"], ["updated_at", "2015-03-18 23:09:32.237252"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jorge_quant@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jorge_quant@yahoo.com"], ["list_id", 1], ["name", "Jorge"], ["last_name", "Quant"], ["created_at", "2015-03-18 23:09:32.247345"], ["updated_at", "2015-03-18 23:09:32.247345"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eliiseo.sp@gmail.com"]]  (0.1ms) begin transaction SQL (19.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eliiseo.sp@gmail.com"], ["list_id", 1], ["name", "eliseo"], ["last_name", ""], ["created_at", "2015-03-18 23:09:32.256789"], ["updated_at", "2015-03-18 23:09:32.256789"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "maria.sanzg@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "maria.sanzg@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Sanz-Guerrero Cosulich"], ["created_at", "2015-03-18 23:09:32.287127"], ["updated_at", "2015-03-18 23:09:32.287127"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "undosclik@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "undosclik@gmail.com"], ["list_id", 1], ["name", "Nibaldo"], ["last_name", "Guerra Figueroa"], ["created_at", "2015-03-18 23:09:32.296666"], ["updated_at", "2015-03-18 23:09:32.296666"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "educacioncontinua.arte@uc.cl"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "educacioncontinua.arte@uc.cl"], ["list_id", 1], ["name", "Educación"], ["last_name", "Continua Arte UC"], ["created_at", "2015-03-18 23:09:32.307038"], ["updated_at", "2015-03-18 23:09:32.307038"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "constanzada@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "constanzada@gmail.com"], ["list_id", 1], ["name", "Constanza"], ["last_name", "Quioza"], ["created_at", "2015-03-18 23:09:32.316783"], ["updated_at", "2015-03-18 23:09:32.316783"]]  (2.6ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ERPOLLOSK8@HOTMAIL.COM"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ERPOLLOSK8@HOTMAIL.COM"], ["list_id", 1], ["name", "JOSE"], ["last_name", "ENMANUEL SEQUERA"], ["created_at", "2015-03-18 23:09:32.326462"], ["updated_at", "2015-03-18 23:09:32.326462"]]  (3.9ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hugopenavargas@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hugopenavargas@gmail.com"], ["list_id", 1], ["name", "hugo"], ["last_name", "peña vargas"], ["created_at", "2015-03-18 23:09:32.337497"], ["updated_at", "2015-03-18 23:09:32.337497"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ricardodonoso.m@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ricardodonoso.m@gmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Donoso"], ["created_at", "2015-03-18 23:09:32.348449"], ["updated_at", "2015-03-18 23:09:32.348449"]]  (5.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nuriar.2009@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nuriar.2009@gmail.com"], ["list_id", 1], ["name", "nuria"], ["last_name", "ruiz navarro"], ["created_at", "2015-03-18 23:09:32.361199"], ["updated_at", "2015-03-18 23:09:32.361199"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josefa.espinosa.henriquez@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josefa.espinosa.henriquez@gmail.com"], ["list_id", 1], ["name", "Josefa"], ["last_name", "Espinosa Henríquez"], ["created_at", "2015-03-18 23:09:32.371876"], ["updated_at", "2015-03-18 23:09:32.371876"]]  (12.3ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rosales.azulmagenta@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rosales.azulmagenta@gmail.com"], ["list_id", 1], ["name", "Doris"], ["last_name", "Rosales Ramos"], ["created_at", "2015-03-18 23:09:32.391099"], ["updated_at", "2015-03-18 23:09:32.391099"]]  (19.7ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "avidelalira@yahoo.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "avidelalira@yahoo.com"], ["list_id", 1], ["name", "ana"], ["last_name", "videla"], ["created_at", "2015-03-18 23:09:32.418362"], ["updated_at", "2015-03-18 23:09:32.418362"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "antonio_desant_art@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "antonio_desant_art@hotmail.com"], ["list_id", 1], ["name", "Antonio"], ["last_name", "Fink Desant"], ["created_at", "2015-03-18 23:09:32.438880"], ["updated_at", "2015-03-18 23:09:32.438880"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fnarvaezcruz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fnarvaezcruz@gmail.com"], ["list_id", 1], ["name", "Fabián"], ["last_name", "Narváez Cruz"], ["created_at", "2015-03-18 23:09:32.449306"], ["updated_at", "2015-03-18 23:09:32.449306"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "arte@macawall.com"]]  (0.1ms) begin transaction SQL (20.2ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "arte@macawall.com"], ["list_id", 1], ["name", "Maca"], ["last_name", "Wall"], ["created_at", "2015-03-18 23:09:32.459648"], ["updated_at", "2015-03-18 23:09:32.459648"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "redelico@msn.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "redelico@msn.com"], ["list_id", 1], ["name", "lydia"], ["last_name", "redelico"], ["created_at", "2015-03-18 23:09:32.795023"], ["updated_at", "2015-03-18 23:09:32.795023"]]  (2.5ms) commit transaction Postino::Subscriber Load (2.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hichia_7@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hichia_7@hotmail.com"], ["list_id", 1], ["name", "monica"], ["last_name", "salcedo"], ["created_at", "2015-03-18 23:09:32.806774"], ["updated_at", "2015-03-18 23:09:32.806774"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anyelogonzalez1@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anyelogonzalez1@gmail.com"], ["list_id", 1], ["name", "Anyelo"], ["last_name", "Gonzalez"], ["created_at", "2015-03-18 23:09:32.816960"], ["updated_at", "2015-03-18 23:09:32.816960"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kmyvalenzuela@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kmyvalenzuela@gmail.com"], ["list_id", 1], ["name", "camila"], ["last_name", "valenzuela"], ["created_at", "2015-03-18 23:09:32.827724"], ["updated_at", "2015-03-18 23:09:32.827724"]]  (468.2ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "rorrosilver@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "rorrosilver@gmail.com"], ["list_id", 1], ["name", "Rodrigo"], ["last_name", "Silver"], ["created_at", "2015-03-18 23:09:33.304046"], ["updated_at", "2015-03-18 23:09:33.304046"]]  (70.1ms) commit transaction Postino::Subscriber Load (2.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "adrian.castillosq@gmail.com"]]  (0.1ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "adrian.castillosq@gmail.com"], ["list_id", 1], ["name", "Adrián"], ["last_name", "Castillos Quintela"], ["created_at", "2015-03-18 23:09:33.382514"], ["updated_at", "2015-03-18 23:09:33.382514"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jotasmt@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jotasmt@hotmail.com"], ["list_id", 1], ["name", "Jose"], ["last_name", ""], ["created_at", "2015-03-18 23:09:33.393161"], ["updated_at", "2015-03-18 23:09:33.393161"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "xim.silva@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "xim.silva@hotmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Ximena Silva"], ["created_at", "2015-03-18 23:09:33.402532"], ["updated_at", "2015-03-18 23:09:33.402532"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mariagraciabisso@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mariagraciabisso@gmail.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Gracia Bisso"], ["created_at", "2015-03-18 23:09:33.411572"], ["updated_at", "2015-03-18 23:09:33.411572"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sastre49@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sastre49@hotmail.com"], ["list_id", 1], ["name", "nicolas"], ["last_name", "sartori"], ["created_at", "2015-03-18 23:09:33.420163"], ["updated_at", "2015-03-18 23:09:33.420163"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "unmardehistoria@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "unmardehistoria@gmail.com"], ["list_id", 1], ["name", "By3nz"], ["last_name", ""], ["created_at", "2015-03-18 23:09:33.433838"], ["updated_at", "2015-03-18 23:09:33.433838"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "creacionestany@terra.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "creacionestany@terra.com"], ["list_id", 1], ["name", "Manuel"], ["last_name", "Farfan Suarez"], ["created_at", "2015-03-18 23:09:33.443186"], ["updated_at", "2015-03-18 23:09:33.443186"]]  (12.0ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastiangilm@hotmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastiangilm@hotmail.com"], ["list_id", 1], ["name", "sebastián"], ["last_name", "gil muñoz"], ["created_at", "2015-03-18 23:09:33.462565"], ["updated_at", "2015-03-18 23:09:33.462565"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "contacto@palomagomez.net"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "contacto@palomagomez.net"], ["list_id", 1], ["name", "Paloma"], ["last_name", "Gómez Carrasco"], ["created_at", "2015-03-18 23:09:33.472753"], ["updated_at", "2015-03-18 23:09:33.472753"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "noemitannaka@hotmail.com"]]  (0.1ms) begin transaction SQL (14.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "noemitannaka@hotmail.com"], ["list_id", 1], ["name", "Noemi"], ["last_name", ""], ["created_at", "2015-03-18 23:09:33.485541"], ["updated_at", "2015-03-18 23:09:33.485541"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pablonuch@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pablonuch@gmail.com"], ["list_id", 1], ["name", "PABLO"], ["last_name", "NUCH"], ["created_at", "2015-03-18 23:09:33.510350"], ["updated_at", "2015-03-18 23:09:33.510350"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "amali94@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "amali94@yahoo.com.ar"], ["list_id", 1], ["name", "magali"], ["last_name", ""], ["created_at", "2015-03-18 23:09:33.520740"], ["updated_at", "2015-03-18 23:09:33.520740"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "chnunezcruz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "chnunezcruz@gmail.com"], ["list_id", 1], ["name", "Charlie"], ["last_name", ""], ["created_at", "2015-03-18 23:09:33.534561"], ["updated_at", "2015-03-18 23:09:33.534561"]]  (4.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "felipe.mardonesh@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "felipe.mardonesh@gmail.com"], ["list_id", 1], ["name", "Felipe"], ["last_name", "Mardones"], ["created_at", "2015-03-18 23:09:33.544874"], ["updated_at", "2015-03-18 23:09:33.544874"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gabriel.holzapfel@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gabriel.holzapfel@gmail.com"], ["list_id", 1], ["name", "Gabriel"], ["last_name", "Holzapfel Mancini"], ["created_at", "2015-03-18 23:09:33.554401"], ["updated_at", "2015-03-18 23:09:33.554401"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "alim.ampuero@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "alim.ampuero@gmail.com"], ["list_id", 1], ["name", "Alim"], ["last_name", "AMPUERO"], ["created_at", "2015-03-18 23:09:33.565076"], ["updated_at", "2015-03-18 23:09:33.565076"]]  (10.2ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "residenciatactica@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "residenciatactica@gmail.com"], ["list_id", 1], ["name", "residencia"], ["last_name", "táctica"], ["created_at", "2015-03-18 23:09:33.585351"], ["updated_at", "2015-03-18 23:09:33.585351"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "hugoproao@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "hugoproao@yahoo.com"], ["list_id", 1], ["name", "HugoProaño"], ["last_name", ""], ["created_at", "2015-03-18 23:09:33.596153"], ["updated_at", "2015-03-18 23:09:33.596153"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "francisco.s.jara@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "francisco.s.jara@gmail.com"], ["list_id", 1], ["name", "Francisco"], ["last_name", "Salgado Jara"], ["created_at", "2015-03-18 23:09:33.606336"], ["updated_at", "2015-03-18 23:09:33.606336"]]  (4.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "Olma.n53@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "Olma.n53@hotmail.com"], ["list_id", 1], ["name", "Olman"], ["last_name", "Cruz Rodriguez"], ["created_at", "2015-03-18 23:09:33.617254"], ["updated_at", "2015-03-18 23:09:33.617254"]]  (6.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "olmmarta@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "olmmarta@gmail.com"], ["list_id", 1], ["name", "jose"], ["last_name", "cruz rodriguez"], ["created_at", "2015-03-18 23:09:33.633503"], ["updated_at", "2015-03-18 23:09:33.633503"]]  (5.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pacheco-art@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pacheco-art@hotmail.com"], ["list_id", 1], ["name", "cristina"], ["last_name", "pacheco campillo"], ["created_at", "2015-03-18 23:09:33.645124"], ["updated_at", "2015-03-18 23:09:33.645124"]]  (11.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "petguego@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "petguego@gmail.com"], ["list_id", 1], ["name", "Peter"], ["last_name", "Guerrero"], ["created_at", "2015-03-18 23:09:33.662488"], ["updated_at", "2015-03-18 23:09:33.662488"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "anita.merendina@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "anita.merendina@gmail.com"], ["list_id", 1], ["name", "aune"], ["last_name", "ainson"], ["created_at", "2015-03-18 23:09:33.672805"], ["updated_at", "2015-03-18 23:09:33.672805"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pedoosoriop@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pedoosoriop@hotmail.com"], ["list_id", 1], ["name", "pedro"], ["last_name", "osorio"], ["created_at", "2015-03-18 23:09:33.684422"], ["updated_at", "2015-03-18 23:09:33.684422"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danilailabaca@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danilailabaca@gmail.com"], ["list_id", 1], ["name", "danila"], ["last_name", "ilabaca argandoña"], ["created_at", "2015-03-18 23:09:33.693657"], ["updated_at", "2015-03-18 23:09:33.693657"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "artrodriguezdei@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "artrodriguezdei@hotmail.com"], ["list_id", 1], ["name", "jorge"], ["last_name", "rodriguez"], ["created_at", "2015-03-18 23:09:33.702999"], ["updated_at", "2015-03-18 23:09:33.702999"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javieron9@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javieron9@gmail.com"], ["list_id", 1], ["name", "Javier"], ["last_name", "Calquín"], ["created_at", "2015-03-18 23:09:33.712698"], ["updated_at", "2015-03-18 23:09:33.712698"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mary.mor4@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mary.mor4@gmail.com"], ["list_id", 1], ["name", "María"], ["last_name", "Teresa Morales Díaz"], ["created_at", "2015-03-18 23:09:33.721424"], ["updated_at", "2015-03-18 23:09:33.721424"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camilahortensia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camilahortensia@gmail.com"], ["list_id", 1], ["name", "camila"], ["last_name", "hortensia prieto collado"], ["created_at", "2015-03-18 23:09:33.734286"], ["updated_at", "2015-03-18 23:09:33.734286"]]  (7.1ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "caminodeldia@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "caminodeldia@gmail.com"], ["list_id", 1], ["name", "Lu"], ["last_name", "Robles"], ["created_at", "2015-03-18 23:09:33.748972"], ["updated_at", "2015-03-18 23:09:33.748972"]]  (7.7ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "roberth_moon@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "roberth_moon@hotmail.com"], ["list_id", 1], ["name", "Roberto"], ["last_name", "Aranibar Luna"], ["created_at", "2015-03-18 23:09:33.763997"], ["updated_at", "2015-03-18 23:09:33.763997"]]  (11.6ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "consttanza@live.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "consttanza@live.com"], ["list_id", 1], ["name", "Maria"], ["last_name", "Constanza Arriagada Neira"], ["created_at", "2015-03-18 23:09:33.783522"], ["updated_at", "2015-03-18 23:09:33.783522"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elicofra@yahoo.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elicofra@yahoo.com"], ["list_id", 1], ["name", "Elías"], ["last_name", "Sánchez Torres"], ["created_at", "2015-03-18 23:09:33.793143"], ["updated_at", "2015-03-18 23:09:33.793143"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "irodriguezmarconi@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "irodriguezmarconi@gmail.com"], ["list_id", 1], ["name", "Rodríguez"], ["last_name", "Marconi"], ["created_at", "2015-03-18 23:09:33.803325"], ["updated_at", "2015-03-18 23:09:33.803325"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "valeria.viancos@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "valeria.viancos@gmail.com"], ["list_id", 1], ["name", "Valeria"], ["last_name", "Viancos"], ["created_at", "2015-03-18 23:09:33.813219"], ["updated_at", "2015-03-18 23:09:33.813219"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eliso_n@mail.ru"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eliso_n@mail.ru"], ["list_id", 1], ["name", "Элисо"], ["last_name", "Накопия"], ["created_at", "2015-03-18 23:09:33.823213"], ["updated_at", "2015-03-18 23:09:33.823213"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mendozaseminario@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mendozaseminario@hotmail.com"], ["list_id", 1], ["name", "Jaime"], ["last_name", "Mendoza Seminario"], ["created_at", "2015-03-18 23:09:33.833923"], ["updated_at", "2015-03-18 23:09:33.833923"]]  (2.7ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "davidcofre@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "davidcofre@gmail.com"], ["list_id", 1], ["name", "David"], ["last_name", "Cofre E"], ["created_at", "2015-03-18 23:09:33.843429"], ["updated_at", "2015-03-18 23:09:33.843429"]]  (3.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pedrofermin.arte@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pedrofermin.arte@gmail.com"], ["list_id", 1], ["name", "Pedro"], ["last_name", "Fermín"], ["created_at", "2015-03-18 23:09:33.854043"], ["updated_at", "2015-03-18 23:09:33.854043"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marcos.palacios77@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marcos.palacios77@gmail.com"], ["list_id", 1], ["name", "marcos"], ["last_name", "palacios"], ["created_at", "2015-03-18 23:09:33.864524"], ["updated_at", "2015-03-18 23:09:33.864524"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "macasanchezm@gmail.com"]]  (0.1ms) begin transaction SQL (12.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "macasanchezm@gmail.com"], ["list_id", 1], ["name", "Macarena"], ["last_name", "Sánchez Mortenson"], ["created_at", "2015-03-18 23:09:33.883267"], ["updated_at", "2015-03-18 23:09:33.883267"]]  (3.2ms) commit transaction Postino::Subscriber Load (2.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "celesteortich@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "celesteortich@gmail.com"], ["list_id", 1], ["name", "Celeste"], ["last_name", "Ortiz"], ["created_at", "2015-03-18 23:09:33.906877"], ["updated_at", "2015-03-18 23:09:33.906877"]]  (3.1ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ramirezv.natalia@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ramirezv.natalia@gmail.com"], ["list_id", 1], ["name", "Natalia"], ["last_name", "Ramírez Vergara"], ["created_at", "2015-03-18 23:09:33.917844"], ["updated_at", "2015-03-18 23:09:33.917844"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elisabet.genoveva@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elisabet.genoveva@gmail.com"], ["list_id", 1], ["name", "Elisabet"], ["last_name", "Genoveva"], ["created_at", "2015-03-18 23:09:33.933469"], ["updated_at", "2015-03-18 23:09:33.933469"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "andres.matusantis@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "andres.matusantis@gmail.com"], ["list_id", 1], ["name", "Andres Francisco"], ["last_name", " Maturana Santis"], ["created_at", "2015-03-18 23:09:33.943595"], ["updated_at", "2015-03-18 23:09:33.943595"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pihita.inzunza@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pihita.inzunza@gmail.com"], ["list_id", 1], ["name", "Pia"], ["last_name", "Inzunza Cerda"], ["created_at", "2015-03-18 23:09:34.055609"], ["updated_at", "2015-03-18 23:09:34.055609"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jm.gonzalez.farias@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jm.gonzalez.farias@gmail.com"], ["list_id", 1], ["name", "Jose"], ["last_name", "Martin Gonzalez Farias"], ["created_at", "2015-03-18 23:09:34.066444"], ["updated_at", "2015-03-18 23:09:34.066444"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cenzhandyeg@sogou.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cenzhandyeg@sogou.com"], ["list_id", 1], ["name", "mrelmarc"], ["last_name", ""], ["created_at", "2015-03-18 23:09:34.076226"], ["updated_at", "2015-03-18 23:09:34.076226"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "julianfarias_22@hotmail.com"]]  (0.1ms) begin transaction SQL (20.2ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "julianfarias_22@hotmail.com"], ["list_id", 1], ["name", "Julian"], ["last_name", "Farias"], ["created_at", "2015-03-18 23:09:34.086147"], ["updated_at", "2015-03-18 23:09:34.086147"]]  (2.7ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "seba.calfuqueo@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "seba.calfuqueo@gmail.com"], ["list_id", 1], ["name", "Sebastian"], ["last_name", "Calfuqueo"], ["created_at", "2015-03-18 23:09:34.116511"], ["updated_at", "2015-03-18 23:09:34.116511"]]  (4.0ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tonmarmel@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tonmarmel@hotmail.com"], ["list_id", 1], ["name", "MarMel"], ["last_name", ""], ["created_at", "2015-03-18 23:09:34.128132"], ["updated_at", "2015-03-18 23:09:34.128132"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "natahuidobro@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "natahuidobro@gmail.com"], ["list_id", 1], ["name", "Natalia"], ["last_name", "Huidobro"], ["created_at", "2015-03-18 23:09:34.138028"], ["updated_at", "2015-03-18 23:09:34.138028"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danielgallardo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danielgallardo@hotmail.com"], ["list_id", 1], ["name", "daniel"], ["last_name", "gallardo"], ["created_at", "2015-03-18 23:09:34.148188"], ["updated_at", "2015-03-18 23:09:34.148188"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juliopinzon2014@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juliopinzon2014@hotmail.com"], ["list_id", 1], ["name", "julio"], ["last_name", "pinzón"], ["created_at", "2015-03-18 23:09:34.166282"], ["updated_at", "2015-03-18 23:09:34.166282"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "eyefocus75@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "eyefocus75@gmail.com"], ["list_id", 1], ["name", "cristóbal"], ["last_name", "pérez calvo"], ["created_at", "2015-03-18 23:09:34.175854"], ["updated_at", "2015-03-18 23:09:34.175854"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sbrojas@uc.cl"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sbrojas@uc.cl"], ["list_id", 1], ["name", "Simón"], ["last_name", "Rojas"], ["created_at", "2015-03-18 23:09:34.184815"], ["updated_at", "2015-03-18 23:09:34.184815"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "marianamarciana@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "marianamarciana@gmail.com"], ["list_id", 1], ["name", "Mariana"], ["last_name", "Guzmán"], ["created_at", "2015-03-18 23:09:34.195043"], ["updated_at", "2015-03-18 23:09:34.195043"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "info@mmontes.com.ar"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "info@mmontes.com.ar"], ["list_id", 1], ["name", "Mabel"], ["last_name", "Montes"], ["created_at", "2015-03-18 23:09:34.205044"], ["updated_at", "2015-03-18 23:09:34.205044"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tanvargas@gmail.com"]]  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tanvargas@gmail.com"], ["list_id", 1], ["name", "tan"], ["last_name", "vargas"], ["created_at", "2015-03-18 23:09:34.216330"], ["updated_at", "2015-03-18 23:09:34.216330"]]  (4.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "javieravalenciaarenas@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "javieravalenciaarenas@gmail.com"], ["list_id", 1], ["name", "Javiera"], ["last_name", "Valencia Arenas"], ["created_at", "2015-03-18 23:09:34.227743"], ["updated_at", "2015-03-18 23:09:34.227743"]]  (2.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "efeuerhake@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "efeuerhake@gmail.com"], ["list_id", 1], ["name", "Eduardo"], ["last_name", "Feuerhake"], ["created_at", "2015-03-18 23:09:34.236896"], ["updated_at", "2015-03-18 23:09:34.236896"]]  (4.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "fran.infante@live.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "fran.infante@live.com"], ["list_id", 1], ["name", "Francisca"], ["last_name", "Infante"], ["created_at", "2015-03-18 23:09:34.247651"], ["updated_at", "2015-03-18 23:09:34.247651"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "claralarrainz@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "claralarrainz@gmail.com"], ["list_id", 1], ["name", "Clara"], ["last_name", "Larraín"], ["created_at", "2015-03-18 23:09:34.266647"], ["updated_at", "2015-03-18 23:09:34.266647"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ricardolagosmiranda@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ricardolagosmiranda@gmail.com"], ["list_id", 1], ["name", "Neto"], ["last_name", ""], ["created_at", "2015-03-18 23:09:34.275877"], ["updated_at", "2015-03-18 23:09:34.275877"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mtwilliamslisboa@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mtwilliamslisboa@gmail.com"], ["list_id", 1], ["name", "maria"], ["last_name", "teresa williams"], ["created_at", "2015-03-18 23:09:34.284865"], ["updated_at", "2015-03-18 23:09:34.284865"]]  (3.7ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "nicolasrico1@gmail.com"]]  (0.1ms) begin transaction SQL (190.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "nicolasrico1@gmail.com"], ["list_id", 1], ["name", "Nicolas"], ["last_name", "Rico Castro"], ["created_at", "2015-03-18 23:09:34.295383"], ["updated_at", "2015-03-18 23:09:34.295383"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "blirusa@yahoo.es"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "blirusa@yahoo.es"], ["list_id", 1], ["name", "Angel"], ["last_name", "Blanco"], ["created_at", "2015-03-18 23:09:34.495436"], ["updated_at", "2015-03-18 23:09:34.495436"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanmsandin@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanmsandin@gmail.com"], ["list_id", 1], ["name", "Juan"], ["last_name", "Manuel Sandin Espada"], ["created_at", "2015-03-18 23:09:34.505559"], ["updated_at", "2015-03-18 23:09:34.505559"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "elmigue.contacto@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "elmigue.contacto@gmail.com"], ["list_id", 1], ["name", "Miguel"], ["last_name", "Ríos Peters"], ["created_at", "2015-03-18 23:09:34.515114"], ["updated_at", "2015-03-18 23:09:34.515114"]]  (3.6ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mendoquino@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mendoquino@gmail.com"], ["list_id", 1], ["name", "Ete"], ["last_name", "Mendoquino"], ["created_at", "2015-03-18 23:09:34.526098"], ["updated_at", "2015-03-18 23:09:34.526098"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "jovisandoval@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "jovisandoval@gmail.com"], ["list_id", 1], ["name", "Jovita "], ["last_name", "Sandoval"], ["created_at", "2015-03-18 23:09:34.550499"], ["updated_at", "2015-03-18 23:09:34.550499"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "luzailine33@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "luzailine33@gmail.com"], ["list_id", 1], ["name", "ailine"], ["last_name", "encina"], ["created_at", "2015-03-18 23:09:34.560522"], ["updated_at", "2015-03-18 23:09:34.560522"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "leopinturas@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "leopinturas@hotmail.com"], ["list_id", 1], ["name", "Leopoldo"], ["last_name", "Sosa"], ["created_at", "2015-03-18 23:09:34.570511"], ["updated_at", "2015-03-18 23:09:34.570511"]]  (3.5ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "kenji.senda.ferrando@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "kenji.senda.ferrando@gmail.com"], ["list_id", 1], ["name", "Kenji"], ["last_name", "Senda"], ["created_at", "2015-03-18 23:09:34.580766"], ["updated_at", "2015-03-18 23:09:34.580766"]]  (14.4ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "mario.morales.astudillo@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "mario.morales.astudillo@hotmail.com"], ["list_id", 1], ["name", "Mario"], ["last_name", "Morales Astudillo"], ["created_at", "2015-03-18 23:09:34.602551"], ["updated_at", "2015-03-18 23:09:34.602551"]]  (22.2ms) commit transaction Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gianadedier@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gianadedier@gmail.com"], ["list_id", 1], ["name", "Giana "], ["last_name", "De DIer"], ["created_at", "2015-03-18 23:09:34.632673"], ["updated_at", "2015-03-18 23:09:34.632673"]]  (3.0ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sebastianlartigue@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sebastianlartigue@gmail.com"], ["list_id", 1], ["name", "Sebastian"], ["last_name", "Lartigue"], ["created_at", "2015-03-18 23:09:34.648699"], ["updated_at", "2015-03-18 23:09:34.648699"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "soari.miguel@gmail.com"]]  (0.1ms) begin transaction SQL (75.8ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "soari.miguel@gmail.com"], ["list_id", 1], ["name", "miguel"], ["last_name", "Solari"], ["created_at", "2015-03-18 23:09:34.658543"], ["updated_at", "2015-03-18 23:09:34.658543"]]  (2.5ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "camiamado@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "camiamado@gmail.com"], ["list_id", 1], ["name", "Maria Camila"], ["last_name", "Amado Rivera"], ["created_at", "2015-03-18 23:09:34.744369"], ["updated_at", "2015-03-18 23:09:34.744369"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "montalvanestudio@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "montalvanestudio@gmail.com"], ["list_id", 1], ["name", "Montalván "], ["last_name", "Estudio"], ["created_at", "2015-03-18 23:09:34.754532"], ["updated_at", "2015-03-18 23:09:34.754532"]]  (2.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "cynthiarodriguez76@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "cynthiarodriguez76@gmail.com"], ["list_id", 1], ["name", "Cynthia"], ["last_name", "Rodríguez"], ["created_at", "2015-03-18 23:09:34.764096"], ["updated_at", "2015-03-18 23:09:34.764096"]]  (3.1ms) commit transaction Postino::Subscriber Load (2.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "juanegrande@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "juanegrande@gmail.com"], ["list_id", 1], ["name", "Juan "], ["last_name", "Grande"], ["created_at", "2015-03-18 23:09:34.774647"], ["updated_at", "2015-03-18 23:09:34.774647"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "infocreadors@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "infocreadors@gmail.com"], ["list_id", 1], ["name", "Xavi"], ["last_name", "Millán"], ["created_at", "2015-03-18 23:09:34.799671"], ["updated_at", "2015-03-18 23:09:34.799671"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sumiko.muray@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sumiko.muray@gmail.com"], ["list_id", 1], ["name", "Sumiko"], ["last_name", "Muray"], ["created_at", "2015-03-18 23:09:34.809746"], ["updated_at", "2015-03-18 23:09:34.809746"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gabyfarnell@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gabyfarnell@gmail.com"], ["list_id", 1], ["name", "Gabriela "], ["last_name", "Farnell"], ["created_at", "2015-03-18 23:09:34.818691"], ["updated_at", "2015-03-18 23:09:34.818691"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "joaliciamunozv@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "joaliciamunozv@gmail.com"], ["list_id", 1], ["name", "Jo"], ["last_name", "Muñoz"], ["created_at", "2015-03-18 23:09:34.828506"], ["updated_at", "2015-03-18 23:09:34.828506"]]  (2.2ms) commit transaction Postino::Subscriber Load (1.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "dmacdonald@brocku.ca"]]  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "dmacdonald@brocku.ca"], ["list_id", 1], ["name", "Duncan"], ["last_name", "MacDonald"], ["created_at", "2015-03-18 23:09:34.837898"], ["updated_at", "2015-03-18 23:09:34.837898"]]  (3.2ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "litomille@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "litomille@hotmail.com"], ["list_id", 1], ["name", "Lito"], ["last_name", "Mille"], ["created_at", "2015-03-18 23:09:34.848153"], ["updated_at", "2015-03-18 23:09:34.848153"]]  (14.4ms) commit transaction Postino::Subscriber Load (2.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "josefrederick83@gmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "josefrederick83@gmail.com"], ["list_id", 1], ["name", "Josefina "], ["last_name", "Frederick"], ["created_at", "2015-03-18 23:09:34.870474"], ["updated_at", "2015-03-18 23:09:34.870474"]]  (6.7ms) commit transaction Postino::Subscriber Load (2.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pinturadelsur@yahoo.es"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pinturadelsur@yahoo.es"], ["list_id", 1], ["name", "Javier"], ["last_name", "Mansilla Aguila"], ["created_at", "2015-03-18 23:09:34.885449"], ["updated_at", "2015-03-18 23:09:34.885449"]]  (8.1ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "palomaanahi@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "palomaanahi@gmail.com"], ["list_id", 1], ["name", "paloma"], ["last_name", "abate"], ["created_at", "2015-03-18 23:09:34.900335"], ["updated_at", "2015-03-18 23:09:34.900335"]]  (4.9ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "naranjoestudio@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "naranjoestudio@hotmail.com"], ["list_id", 1], ["name", "Sergio "], ["last_name", "Naranjo"], ["created_at", "2015-03-18 23:09:34.911760"], ["updated_at", "2015-03-18 23:09:34.911760"]]  (145.5ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "danygarciaconbirr@yahoo.com.ar"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "danygarciaconbirr@yahoo.com.ar"], ["list_id", 1], ["name", "daniel"], ["last_name", "garcia"], ["created_at", "2015-03-18 23:09:35.064905"], ["updated_at", "2015-03-18 23:09:35.064905"]]  (2.8ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "pintorchileno7@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "pintorchileno7@gmail.com"], ["list_id", 1], ["name", "Coco"], ["last_name", "González Lohse"], ["created_at", "2015-03-18 23:09:35.075557"], ["updated_at", "2015-03-18 23:09:35.075557"]]  (3.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "ricardoalfarog@gmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "ricardoalfarog@gmail.com"], ["list_id", 1], ["name", "Ricardo"], ["last_name", "Alfaro"], ["created_at", "2015-03-18 23:09:35.085860"], ["updated_at", "2015-03-18 23:09:35.085860"]]  (3.4ms) commit transaction Postino::Subscriber Load (1.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "oscararroyopaint@gmail.com"]]  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "oscararroyopaint@gmail.com"], ["list_id", 1], ["name", "oscar"], ["last_name", "arroyo"], ["created_at", "2015-03-18 23:09:35.095842"], ["updated_at", "2015-03-18 23:09:35.095842"]]  (2.3ms) commit transaction Postino::Subscriber Load (1.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "tecnostyle@hotmail.com"]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "tecnostyle@hotmail.com"], ["list_id", 1], ["name", "Carola"], ["last_name", "Ramírez"], ["created_at", "2015-03-18 23:09:35.114733"], ["updated_at", "2015-03-18 23:09:35.114733"]]  (22.4ms) commit transaction Postino::Subscriber Load (1.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "sofiadonovan@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "sofiadonovan@hotmail.com"], ["list_id", 1], ["name", "Sofía "], ["last_name", "Donovan"], ["created_at", "2015-03-18 23:09:35.144731"], ["updated_at", "2015-03-18 23:09:35.144731"]]  (2.6ms) commit transaction Postino::Subscriber Load (1.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "gal_frias@hotmail.com"]]  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "postino_subscribers" ("email", "list_id", "name", "last_name", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "gal_frias@hotmail.com"], ["list_id", 1], ["name", "Rodrigo "], ["last_name", "Galindo"], ["created_at", "2015-03-18 23:09:35.165548"], ["updated_at", "2015-03-18 23:09:35.165548"]]  (3.0ms) commit transaction Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 20:09:42 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (20.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (364.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 454ms (Views: 412.2ms | ActiveRecord: 23.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 20:09:43 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 20:11:45 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 18ms NoMethodError (undefined method `page' for nil:NilClass): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/lists_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.0ms) Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 20:12:59 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.6ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 241ms NoMethodError (undefined method `page' for nil:NilClass): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/lists_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (46.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (94.9ms) Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 20:13:36 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (210.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (6.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (4.0ms) Completed 200 OK in 475ms (Views: 352.9ms | ActiveRecord: 3.7ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:13:36 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 20:13:36 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:13:36 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:13:37 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 20:13:37 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:13:37 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:13:37 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:13:37 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:13:37 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:13:37 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:13:37 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 20:13:37 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 20:16:10 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (97.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Completed 200 OK in 172ms (Views: 168.5ms | ActiveRecord: 1.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 20:16:10 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 20:17:39 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (43.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 230ms (Views: 225.3ms | ActiveRecord: 1.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 20:17:39 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 20:18:02 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (36.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.3ms) Completed 200 OK in 171ms (Views: 166.9ms | ActiveRecord: 1.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 20:18:02 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 20:18:19 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (35.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 162ms (Views: 155.9ms | ActiveRecord: 1.6ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 20:18:20 -0300 Started GET "/postino/manage/lists/1" for ::1 at 2015-03-18 20:19:43 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.6ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (39.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 109ms (Views: 104.6ms | ActiveRecord: 1.6ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 20:19:43 -0300 Started GET "/postino/manage/lists" for ::1 at 2015-03-18 20:20:02 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (7.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 75ms (Views: 74.3ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/lists" for ::1 at 2015-03-18 20:20:07 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (2.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 76ms (Views: 75.0ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns" for ::1 at 2015-03-18 20:20:08 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (68.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 134ms (Views: 133.7ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns" for ::1 at 2015-03-18 20:20:47 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (3.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Completed 200 OK in 69ms (Views: 68.1ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:20:47 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 20:20:48 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:20:48 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:20:48 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:20:48 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-18 20:20:48 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:20:48 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:20:48 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:20:48 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:20:48 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:20:48 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 20:20:48 -0300 Started GET "/postino/campaigns" for ::1 at 2015-03-18 20:22:08 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (28.0ms) Completed 500 Internal Server Error in 36ms ActionView::Template::Error (undefined local variable or method `list' for #<#:0x007fb8f815c300>): 6: -#%img.img-responsive{:alt => "Generic placeholder thumbnail", "data-src" => "holder.js/200x200/auto/sky"}/ 7: %h4= campaign.subject 8: %span.text-muted= campaign.state 9: = link_to "edit", edit_list_path(list) 10: = link_to "destroy", list_path(list), method: :delete /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:9:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_index_haml__4595015132537879059_70216206450180' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:4:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_index_haml__4595015132537879059_70216206450180' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (49.0ms) Started GET "/postino/campaigns" for ::1 at 2015-03-18 20:22:22 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (10.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 188ms (Views: 186.6ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:22:22 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 20:22:22 -0300 Started GET "/postino/campaigns" for ::1 at 2015-03-18 20:22:40 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (12.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 90ms (Views: 89.1ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for ::1 at 2015-03-18 20:22:40 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 20:27:51 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (5.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 75ms (Views: 74.6ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:27:51 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 20:27:51 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:27:51 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:27:51 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:27:51 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-18 20:27:51 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:27:51 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:27:51 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:27:51 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:27:52 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:27:52 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-18 20:27:52 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-18 20:28:43 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (12.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.3ms) Completed 200 OK in 273ms (Views: 271.0ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:44 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.6ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (10.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.3ms) Completed 200 OK in 117ms (Views: 115.6ms | ActiveRecord: 0.6ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-18 20:28:45 -0300 Started GET "/" for 127.0.0.1 at 2015-03-19 00:04:53 -0300 Processing by Rails::WelcomeController#index as HTML Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (20.0ms) Completed 200 OK in 96ms (Views: 95.8ms | ActiveRecord: 0.0ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (4.1ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (52.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (5.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (3.4ms) Completed 200 OK in 599ms (Views: 414.7ms | ActiveRecord: 4.7ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-19 00:05:04 -0300 Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-19 00:05:16 -0300 Processing by Postino::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml within layouts/postino/application (480.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 548ms (Views: 546.5ms | ActiveRecord: 0.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 00:05:20 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (45.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Completed 200 OK in 178ms (Views: 177.1ms | ActiveRecord: 0.4ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-19 00:05:22 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (29.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (32.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 132ms (Views: 97.5ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 00:05:23 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (3.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 142ms (Views: 140.9ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-19 00:05:24 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (2.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (4.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 73ms (Views: 71.6ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 00:05:26 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (61.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 125ms (Views: 123.8ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-19 00:05:29 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (2.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (4.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Completed 200 OK in 127ms (Views: 125.9ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:05:33 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (5.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 71ms (Views: 70.5ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 00:05:37 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (3.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 68ms (Views: 66.9ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-19 00:05:38 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (62.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (64.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 131ms (Views: 130.1ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-19 00:05:40 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (10.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (11.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (1.9ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (126.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 323ms (Views: 229.0ms | ActiveRecord: 24.1ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 00:05:44 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (3.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 68ms (Views: 67.4ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (6.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 186ms (Views: 185.1ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:04 -0300 Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (33.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 156ms (Views: 152.3ms | ActiveRecord: 1.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:06 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (5.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 71ms (Views: 70.4ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:15 -0300 Started GET "/postino/campaigns/new" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Processing by Postino::CampaignsController#new as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/new.haml within layouts/postino/application (74.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 141ms (Views: 140.3ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:19 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (5.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 70ms (Views: 69.6ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-19 00:07:45 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (9.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 77ms (Views: 75.7ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:21 -0300 Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-19 00:08:25 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/application (89.9ms) Completed 500 Internal Server Error in 98ms ActionView::Template::Error (undefined method `name' for #): 1: %h1 2: Campaign #{@campaign.name} activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:2:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_show_haml___1104147378786027467_70227201113320' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (63.1ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/application (3.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 145ms (Views: 143.5ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/application-9e2285217884c3c41031b922f29d23b2.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/assets/postino/application-318351139ca0646a17a64ec474663c15.js?body=1" for 127.0.0.1 at 2015-03-19 00:08:38 -0300 Started GET "/postino" for 127.0.0.1 at 2015-03-19 00:14:14 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Postino::DashboardController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.9ms) Started GET "/postino" for 127.0.0.1 at 2015-03-19 00:14:52 -0300 Processing by Postino::DashboardController#show as HTML Completed 500 Internal Server Error in 6ms ActionView::MissingTemplate (Missing template postino/dashboard/show, postino/application/show with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (51.2ms) Started GET "/postino" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_account_stats.haml (10.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (16.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Completed 200 OK in 242ms (Views: 241.4ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:15:24 -0300 Started GET "/postino" for 127.0.0.1 at 2015-03-19 00:16:34 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_account_stats.haml (8.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (11.3ms) Completed 500 Internal Server Error in 17ms ActionView::Template::Error (uninitialized constant Postino::Subscribers): 7: .count.alignr 8: %strong.float-left Subscribers 9: %a{:href => "/lists/", :title => "View All Subscribers"} 0 10: of #{Postino::Subscribers.count} 11: .meter.mar-b0 12: %span{:style => "width:0%"} 13: .lastUnit.size1of2 /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_account_stats.haml:10:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_shared__account_stats_haml___4336931466717123151_70227155681300' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_dashboard_show_haml___3208840430911288139_70227183913760' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (21.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.3ms) Started GET "/postino" for 127.0.0.1 at 2015-03-19 00:16:41 -0300 Processing by Postino::DashboardController#show as HTML  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_account_stats.haml (12.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (15.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Completed 200 OK in 89ms (Views: 88.0ms | ActiveRecord: 0.7ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:16:41 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:16:41 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:16:41 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:16:41 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:16:41 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:16:42 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:16:42 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:16:42 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:16:42 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:16:42 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:16:42 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:16:42 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:16:42 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:16:42 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.9ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (82.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 172ms (Views: 162.6ms | ActiveRecord: 1.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:03 -0300 Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-19 00:18:04 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.6ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (136.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 291ms (Views: 281.8ms | ActiveRecord: 3.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:05 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (3.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 90ms (Views: 89.2ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:18:08 -0300 Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-19 00:18:09 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (4.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (6.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 82ms (Views: 80.7ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 00:18:17 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 82ms (Views: 81.3ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-19 00:18:21 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (35.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 112ms (Views: 108.9ms | ActiveRecord: 1.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:19:02 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (9.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 132ms (Views: 131.6ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (11.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 154ms (Views: 153.4ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:23 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:19:36 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (11.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 208ms (Views: 207.1ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:19:37 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (16.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 93ms (Views: 92.4ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:03 -0300 Started GET "/postino/..." for 127.0.0.1 at 2015-03-19 00:26:03 -0300 ActionController::RoutingError (No route matches [GET] "/postino/..."): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (29.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (147.4ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:26:26 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (13.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 88ms (Views: 87.4ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:26:27 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:28:15 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (16.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 166ms (Views: 164.4ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:16 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (10.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 198ms (Views: 197.0ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:36 -0300 Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-19 00:28:41 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/application (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 83ms (Views: 79.5ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:42 -0300 Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-19 00:28:49 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (68.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (71.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 149ms (Views: 147.5ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:28:50 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (8.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 198ms (Views: 197.1ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:30:43 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (13.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 96ms (Views: 95.0ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:31:10 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:31:11 -0300 Started GET "/postino/campaigns/1/edit" for 127.0.0.1 at 2015-03-19 00:31:13 -0300 AbstractController::ActionNotFound (The action 'edit' could not be found for Postino::CampaignsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.6ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:36:34 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (4.2ms) Completed 500 Internal Server Error in 10ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:18: syntax error, unexpected '(', expecting ')' ...izard_path(@campaign, "setup")(campaign) ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:19: syntax error, unexpected ')', expecting '}' ));}\n #{_hamlout.format_s... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: syntax error, unexpected $undefined ));}\n
\n
\n", -2, false);end;_hamlout.p... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: syntax error, unexpected $end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:18: syntax error, unexpected '(', expecting ')' ...izard_path(@campaign, "setup")(campaign) ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:19: syntax error, unexpected ')', expecting '}' ));}\n #{_hamlout.format_s... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: syntax error, unexpected $undefined ));}\n \n \n", -2, false);end;_hamlout.p... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: syntax error, unexpected $end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.0ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:36:40 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (4.1ms) Completed 500 Internal Server Error in 11ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:18: syntax error, unexpected '(', expecting ')' ...wizard_path(campaign, "setup")(campaign) ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:19: syntax error, unexpected ')', expecting '}' ));}\n #{_hamlout.format_s... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: syntax error, unexpected $undefined ));}\n \n \n", -2, false);end;_hamlout.p... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: syntax error, unexpected $end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:18: syntax error, unexpected '(', expecting ')' ...wizard_path(campaign, "setup")(campaign) ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:19: syntax error, unexpected ')', expecting '}' ));}\n #{_hamlout.format_s... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: syntax error, unexpected $undefined ));}\n \n \n", -2, false);end;_hamlout.p... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:20: syntax error, unexpected $end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (53.0ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (12.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 146ms (Views: 145.4ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:36:55 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:37:05 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.1ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (8.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (28.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 132ms (Views: 130.7ms | ActiveRecord: 0.1ms) Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (9.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (12.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 94ms (Views: 91.3ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:12 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (10.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (13.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 198ms (Views: 196.4ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:23 -0300 Started GET "/postino/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/list.haml within layouts/postino/application (1.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 130ms (Views: 128.4ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:39:27 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (7.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 84ms (Views: 82.7ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:40:05 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (216.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 299ms (Views: 296.6ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:41 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (67.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Completed 200 OK in 255ms (Views: 253.4ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:44:56 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:46:38 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (491.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 627ms (Views: 626.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:46:39 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:48:41 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (17.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (887.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (6.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (3.5ms) Completed 200 OK in 1572ms (Views: 1280.2ms | ActiveRecord: 7.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:48:44 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (70.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 207ms (Views: 205.1ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:51:28 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:52:06 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (86.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (157.0ms) Completed 500 Internal Server Error in 163ms ActionView::Template::Error (undefined local variable or method `prev_wizard_path' for #<#:0x007fb84371f450>): 1: %nav 2: %ul.pager 3: %li.previous 4: %a{:href => prev_wizard_path} 5: %span{"aria-hidden" => "true"} ← 6: Older 7: %li.next /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml:4:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard__wizard_nav_haml__1238318271698182868_70214699745460' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml:19:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_setup_haml__2577783735647177252_70214691132740' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (21.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.5ms) Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.1ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (5.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (68.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 195ms (Views: 194.2ms | ActiveRecord: 0.1ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:19 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:52:32 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (4.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (137.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 215ms (Views: 212.9ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:32 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:33 -0300 Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (14.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 95ms (Views: 93.4ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:35 -0300 Started GET "/postino/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/design.haml within layouts/postino/application (88.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 165ms (Views: 163.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:52:37 -0300 Started GET "/postino/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-19 00:58:51 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/confirm.haml within layouts/postino/application (17.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Completed 200 OK in 96ms (Views: 94.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 00:58:52 -0300 Started GET "/postino/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-19 00:58:58 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (70.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/design.haml within layouts/postino/application (84.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 163ms (Views: 161.5ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 00:58:59 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (12.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 157ms (Views: 154.8ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 00:59:00 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (69.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 215ms (Views: 212.8ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 00:59:02 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (12.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 87ms (Views: 84.6ms | ActiveRecord: 0.3ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddTemplateToPostinoCampaign (20150319040114)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "postino_campaigns" ADD "template_id" integer  (0.1ms) select sqlite_version(*)  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.2ms) CREATE INDEX "index_postino_campaigns_on_template_id" ON "postino_campaigns" ("template_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150319040114"]]  (2.4ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_template_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddTemplateToPostinoCampaign (20150319040114)  (0.2ms) begin transaction  (1.6ms) CREATE TEMPORARY TABLE "apostino_campaigns" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar, "from_name" varchar, "from_email" varchar, "reply_email" varchar, "plain_content" text, "html_content" text, "query_string" varchar, "scheduled_at" datetime, "timezone" varchar, "state" varchar, "recipients_count" integer, "sent" boolean, "opens_count" integer, "clicks_count" integer, "parent_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "list_id" integer, "template_id" integer)  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_template_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'   (0.1ms) select sqlite_version(*)  (0.1ms) CREATE INDEX "tindex_apostino_campaigns_on_template_id" ON "apostino_campaigns" ("template_id")  (0.1ms) CREATE INDEX "tindex_apostino_campaigns_on_list_id" ON "apostino_campaigns" ("list_id")  (0.1ms) CREATE INDEX "tindex_apostino_campaigns_on_parent_id" ON "apostino_campaigns" ("parent_id")  (0.1ms) SELECT * FROM "postino_campaigns"  (0.2ms) INSERT INTO "apostino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id","template_id") VALUES (1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:18:13.422035', '2015-03-18 05:18:13.422035', 1, NULL)  (0.1ms) INSERT INTO "apostino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id","template_id") VALUES (2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:18:58.999583', '2015-03-18 05:18:58.999583', 1, NULL)  (0.1ms) INSERT INTO "apostino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id","template_id") VALUES (3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:22:03.925852', '2015-03-18 05:22:03.925852', 1, NULL)  (0.1ms) INSERT INTO "apostino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id","template_id") VALUES (4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:43:43.388005', '2015-03-18 05:43:43.388005', 1, NULL)  (0.1ms) INSERT INTO "apostino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id","template_id") VALUES (5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:44:10.603159', '2015-03-18 05:44:10.603159', 1, NULL)  (0.2ms) INSERT INTO "apostino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id","template_id") VALUES (6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:45:38.963123', '2015-03-18 05:45:38.963123', 1, NULL)  (0.2ms) INSERT INTO "apostino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id","template_id") VALUES (7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 22:23:20.608133', '2015-03-18 22:23:20.608133', 1, NULL)  (0.8ms) DROP TABLE "postino_campaigns"  (0.2ms) CREATE TABLE "postino_campaigns" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject" varchar, "from_name" varchar, "from_email" varchar, "reply_email" varchar, "plain_content" text, "html_content" text, "query_string" varchar, "scheduled_at" datetime, "timezone" varchar, "state" varchar, "recipients_count" integer, "sent" boolean, "opens_count" integer, "clicks_count" integer, "parent_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "list_id" integer)   (0.1ms) SELECT sql FROM sqlite_master WHERE name='tindex_apostino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='tindex_apostino_campaigns_on_parent_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='tindex_apostino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='tindex_apostino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='tindex_apostino_campaigns_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='tindex_apostino_campaigns_on_template_id' AND type='index'  (0.1ms) CREATE INDEX "index_postino_campaigns_on_parent_id" ON "postino_campaigns" ("parent_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.1ms) CREATE INDEX "index_postino_campaigns_on_list_id" ON "postino_campaigns" ("list_id")  (0.1ms) SELECT * FROM "apostino_campaigns"  (0.1ms) INSERT INTO "postino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id") VALUES (1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:18:13.422035', '2015-03-18 05:18:13.422035', 1)  (0.1ms) INSERT INTO "postino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id") VALUES (2, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:18:58.999583', '2015-03-18 05:18:58.999583', 1)  (0.1ms) INSERT INTO "postino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id") VALUES (3, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:22:03.925852', '2015-03-18 05:22:03.925852', 1)  (0.1ms) INSERT INTO "postino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id") VALUES (4, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:43:43.388005', '2015-03-18 05:43:43.388005', 1)  (0.1ms) INSERT INTO "postino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id") VALUES (5, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:44:10.603159', '2015-03-18 05:44:10.603159', 1)  (0.1ms) INSERT INTO "postino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id") VALUES (6, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 05:45:38.963123', '2015-03-18 05:45:38.963123', 1)  (0.1ms) INSERT INTO "postino_campaigns" ("id","subject","from_name","from_email","reply_email","plain_content","html_content","query_string","scheduled_at","timezone","state","recipients_count","sent","opens_count","clicks_count","parent_id","created_at","updated_at","list_id") VALUES (7, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2015-03-18 22:23:20.608133', '2015-03-18 22:23:20.608133', 1)  (0.4ms) DROP TABLE "apostino_campaigns" SQL (0.4ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20150319040114"]]  (3.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:07:04 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (3.0ms) Completed 500 Internal Server Error in 48ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:10: syntax error, unexpected ')' ));}\n", 0, false);end;_hamlou... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:10: syntax error, unexpected $undefined, expecting ')' ...aml_temp);_hamlout.push_text("\n", 0, false);end;_hamlout.pu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:12: syntax error, unexpected '}', expecting ')' ));}\n", 0, false);end;_hamlout.b... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:12: syntax error, unexpected $undefined, expecting ')' ...aml_temp);_hamlout.push_text("\n#{ ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:14: syntax error, unexpected '}', expecting ')' ));}\n", 0, false);::Haml::Util.h... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:14: unterminated string meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:14: syntax error, unexpected $end, expecting ')'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:10: syntax error, unexpected ')' ));}\n", 0, false);end;_hamlou... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:10: syntax error, unexpected $undefined, expecting ')' ...aml_temp);_hamlout.push_text("\n", 0, false);end;_hamlout.pu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:12: syntax error, unexpected '}', expecting ')' ));}\n", 0, false);end;_hamlout.b... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:12: syntax error, unexpected $undefined, expecting ')' ...aml_temp);_hamlout.push_text("\n#{ ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:14: syntax error, unexpected '}', expecting ')' ));}\n", 0, false);::Haml::Util.h... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:14: unterminated string meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:14: syntax error, unexpected $end, expecting ')' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.7ms) Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:07:17 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.8ms) Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (94.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Completed 200 OK in 170ms (Views: 168.0ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:17 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:17 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:17 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:17 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:17 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:17 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:18 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:18 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:18 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:18 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:18 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:18 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:18 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:18 -0300 Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:07:24 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.1ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (17.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 97ms (Views: 95.0ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:25 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (5.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 124ms (Views: 123.5ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:30 -0300 Started GET "/postino/manage/templates/new" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Processing by Postino::TemplatesController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/_form.haml (8.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/new.haml within layouts/postino/application (98.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 291ms (Views: 279.2ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:07:32 -0300 Started POST "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:07:41 -0300 Processing by Postino::TemplatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CvchqBTRBMfPekUZxGe3bPtK/0J6XHOE9HaGzLJl58NyMkQ6fA/JMxjXUj0xAXROTHi6pnJNuSF4e+g8mYDgbw==", "template"=>{"name"=>"default", "html_content"=>"

"}, "commit"=>"crear"} Completed 500 Internal Server Error in 3ms NameError (undefined local variable or method `resource_params' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/templates_controller.rb:32:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.1ms) Started POST "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:08:14 -0300 Processing by Postino::TemplatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"CvchqBTRBMfPekUZxGe3bPtK/0J6XHOE9HaGzLJl58NyMkQ6fA/JMxjXUj0xAXROTHi6pnJNuSF4e+g8mYDgbw==", "template"=>{"name"=>"default", "html_content"=>"

"}, "commit"=>"crear"}  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_templates" ("name", "html_content", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "default"], ["html_content", "

"], ["created_at", "2015-03-19 04:08:15.146865"], ["updated_at", "2015-03-19 04:08:15.146865"]]  (6.1ms) commit transaction Redirected to http://localhost:3000/postino/manage/templates Completed 302 Found in 32ms (ActiveRecord: 8.1ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (2.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Completed 200 OK in 84ms (Views: 82.7ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:08:15 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 01:08:20 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (98.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 187ms (Views: 174.9ms | ActiveRecord: 1.0ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:08:22 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (2.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Completed 200 OK in 153ms (Views: 152.4ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.5ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (10.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 96ms (Views: 94.6ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:12:40 -0300 Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Processing by Postino::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/_form.haml (5.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/edit.haml within layouts/postino/application (10.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 98ms (Views: 94.5ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:03 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:13:06 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (3.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Completed 200 OK in 146ms (Views: 144.9ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:06 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:06 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:06 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:06 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:06 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:06 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:06 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:06 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:13:19 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (2.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 84ms (Views: 83.5ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:19 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:19 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:19 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:19 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:19 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:19 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:20 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:20 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:20 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:20 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:20 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:20 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:20 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:20 -0300 Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Processing by Postino::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.5ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/_form.haml (17.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/edit.haml within layouts/postino/application (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Completed 200 OK in 103ms (Views: 100.1ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:21 -0300 Started PATCH "/postino/manage/templates/1" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Processing by Postino::TemplatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"HihjN2DaVF+PU/FmVqxDiN9T0Dpo/9twNsXrIWrDZRRm7QalCASZq1j+5kKjyoCqaGGV3mDuEdW6yIXRQSZiuA==", "template"=>{"name"=>"default", "html_content"=>"

"}, "commit"=>"crear", "id"=>"1"} Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3000/postino/manage/templates Completed 302 Found in 4ms (ActiveRecord: 0.4ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (2.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Completed 200 OK in 142ms (Views: 141.1ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:13:54 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:15:26 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (3.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (2.6ms) Completed 200 OK in 151ms (Views: 149.8ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:27 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (17.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.2ms) Completed 200 OK in 123ms (Views: 113.4ms | ActiveRecord: 0.6ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:32 -0300 Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-19 01:15:34 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (88.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 276ms (Views: 222.8ms | ActiveRecord: 2.2ms) Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:35 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 01:15:38 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (3.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 83ms (Views: 81.7ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:39 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:15:39 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:39 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:39 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:39 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:39 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:39 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:39 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:15:39 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:15:40 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (3.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 83ms (Views: 82.6ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 01:15:43 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (3.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 80ms (Views: 78.5ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-19 01:16:37 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (31.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 112ms (Views: 106.5ms | ActiveRecord: 1.7ms) Started GET "/postino/manage/lists/1?page=2" for 127.0.0.1 at 2015-03-19 01:16:41 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"page"=>"2", "id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 50 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (96.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 239ms (Views: 234.5ms | ActiveRecord: 1.4ms) Started GET "/postino/manage/lists/1?page=3" for 127.0.0.1 at 2015-03-19 01:16:44 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"page"=>"3", "id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 100 [["list_id", 1]]  (0.7ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (52.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 136ms (Views: 129.7ms | ActiveRecord: 2.1ms) Started GET "/postino/manage/lists/1?page=4" for 127.0.0.1 at 2015-03-19 01:16:46 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"page"=>"4", "id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 150 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (45.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 189ms (Views: 185.1ms | ActiveRecord: 1.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 01:16:48 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 84ms (Views: 82.8ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/lists/2" for 127.0.0.1 at 2015-03-19 01:16:51 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"2"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 2]] Postino::Subscriber Load (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (6.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 86ms (Views: 81.4ms | ActiveRecord: 0.7ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 01:16:54 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 161ms (Views: 160.2ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/lists/2" for 127.0.0.1 at 2015-03-19 01:16:55 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 2]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (8.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 87ms (Views: 84.0ms | ActiveRecord: 0.9ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 01:16:59 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (8.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 166ms (Views: 165.5ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 01:18:30 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (15.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 95ms (Views: 94.1ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (7.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 156ms (Views: 155.2ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:21:48 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (13.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 88ms (Views: 87.0ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:22:53 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 01:23:12 -0300 Processing by Postino::CampaignsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (2.8ms) Completed 500 Internal Server Error in 9ms ActionView::Template::Error (The line was indented 2 levels deeper than the previous line.): 15: = campaign.state 16: .media-right 17: 18: = link_to "edit", campaign_wizard_path(campaign, "setup") 19: 20: = link_to "destroy", campaign_path(campaign), method: :delete /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml:18 haml (4.0.6) lib/haml/parser.rb:128:in `parse' haml (4.0.6) lib/haml/engine.rb:66:in `initialize' haml (4.0.6) lib/haml/template/plugin.rb:25:in `new' haml (4.0.6) lib/haml/template/plugin.rb:25:in `compile' haml (4.0.6) lib/haml/template/plugin.rb:30:in `call' actionview (4.2.0) lib/action_view/template.rb:270:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (85.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (111.5ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 01:23:21 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (12.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 93ms (Views: 92.4ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:23:21 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:23:21 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:23:21 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:23:22 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 01:24:58 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (8.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (6.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 164ms (Views: 163.6ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/campaigns-e48e4f0eb0dea04fd7ff5825f0ef9096.css?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/application-11e85ed6c69b9e0900c7ee64de9d5c65.css?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:24:59 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 01:25:40 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (8.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 120ms (Views: 119.4ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:40 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:40 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:40 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:40 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:40 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:40 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:41 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:41 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:41 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:41 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:41 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:41 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:41 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:41 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 01:25:45 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 83ms (Views: 81.7ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:46 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (3.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 153ms (Views: 151.9ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:47 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 01:25:49 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 85ms (Views: 83.7ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:50 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:50 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:50 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:50 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:25:50 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 01:25:50 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (8.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 90ms (Views: 89.2ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 01:26:14 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (60.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.2ms) Completed 200 OK in 142ms (Views: 140.2ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:26:39 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (4.6ms) Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (13.6ms) Completed 500 Internal Server Error in 24ms ActionView::Template::Error (No input found for checkbox): 6: 7: = Postino::Template.all.each do |template| 8: = simple_fields_for :campaign_template do |f| 9: = f.input :template_id , as: :checkbox 10: 11: = f.submit 12: simple_form (3.1.0) lib/simple_form/form_builder.rb:573:in `find_mapping' simple_form (3.1.0) lib/simple_form/form_builder.rb:502:in `find_input' simple_form (3.1.0) lib/simple_form/form_builder.rb:112:in `input' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:9:in `block (3 levels) in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_template_haml___2725889136442064880_70214715474200' haml (4.0.6) lib/haml/helpers.rb:368:in `call' haml (4.0.6) lib/haml/helpers.rb:368:in `block in capture_haml' haml (4.0.6) lib/haml/helpers.rb:608:in `with_haml_buffer' haml (4.0.6) lib/haml/helpers.rb:364:in `capture_haml' haml (4.0.6) lib/haml/helpers/xss_mods.rb:61:in `capture_haml_with_haml_xss' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:45:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:714:in `fields_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:35:in `block in simple_fields_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:34:in `simple_fields_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:8:in `block (2 levels) in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_template_haml___2725889136442064880_70214715474200' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:7:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_template_haml___2725889136442064880_70214715474200' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:5:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_template_haml___2725889136442064880_70214715474200' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (24.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.8ms) Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:28:12 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.7ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (19.3ms) Completed 500 Internal Server Error in 28ms ActionView::Template::Error (No input found for checkbox): 6: 7: = Postino::Template.all.each do |template| 8: = simple_fields_for :campaign_template do |f| 9: = f.input :template , as: :checkbox 10: 11: = f.submit 12: simple_form (3.1.0) lib/simple_form/form_builder.rb:573:in `find_mapping' simple_form (3.1.0) lib/simple_form/form_builder.rb:502:in `find_input' simple_form (3.1.0) lib/simple_form/form_builder.rb:112:in `input' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:9:in `block (3 levels) in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_template_haml___2725889136442064880_70214715004080' haml (4.0.6) lib/haml/helpers.rb:368:in `call' haml (4.0.6) lib/haml/helpers.rb:368:in `block in capture_haml' haml (4.0.6) lib/haml/helpers.rb:608:in `with_haml_buffer' haml (4.0.6) lib/haml/helpers.rb:364:in `capture_haml' haml (4.0.6) lib/haml/helpers/xss_mods.rb:61:in `capture_haml_with_haml_xss' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:45:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:714:in `fields_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:35:in `block in simple_fields_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:34:in `simple_fields_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:8:in `block (2 levels) in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_template_haml___2725889136442064880_70214715004080' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:7:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_template_haml___2725889136442064880_70214715004080' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml:5:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaign_wizard_template_haml___2725889136442064880_70214715004080' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.3ms) Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.3ms) Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" INNER JOIN "postino_campaign_templates" ON "postino_templates"."id" = "postino_campaign_templates"."template_id" WHERE "postino_campaign_templates"."campaign_id" = ? LIMIT 1 [["campaign_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (154.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 230ms (Views: 227.2ms | ActiveRecord: 0.9ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:30:44 -0300 Started PATCH "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:33:17 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"nekhE4fDJMgPXpxSmfbCopyDXILRAOTNID58Kh+a+9/lLESB7x3pPNjzi3ZskAGAK7EZZtkRLmisMxLaNH/8cw==", "campaign"=>{"template"=>"1"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameter: template  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 7ms ArgumentError (When assigning attributes, you must pass a hash as an argument.): activerecord (4.2.0) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' activerecord (4.2.0) lib/active_record/persistence.rb:249:in `block in update' activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.0) lib/active_record/persistence.rb:248:in `update' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:19:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.0ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddLastNameToPostinoSubscribers (20150318225157)  (0.1ms) begin transaction  (1.3ms) CREATE TEMPORARY TABLE "apostino_subscribers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "state" varchar, "list_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "last_name" varchar)  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'   (0.1ms) select sqlite_version(*)  (0.2ms) CREATE INDEX "tindex_apostino_subscribers_on_list_id" ON "apostino_subscribers" ("list_id")  (40.6ms) SELECT * FROM "postino_subscribers"  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1, 'Miguel', 'miguelmichelson@gmail.com', NULL, 1, '2015-03-18 23:08:37.499424', '2015-03-18 23:08:37.499424', 'Michelson Martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2, 'Jorge', 'jorge@numcero.cl', NULL, 1, '2015-03-18 23:08:37.512805', '2015-03-18 23:08:37.512805', 'Sepúlveda Tapia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (3, 'alvaro', 'taoanarkripta@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:37.520394', '2015-03-18 23:08:37.520394', 'prieto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (4, 'Marcelo', 'amplifica@gmail.com', NULL, 1, '2015-03-18 23:08:37.527620', '2015-03-18 23:08:37.527620', 'Fica')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (5, 'Isabel', 'arriagada.isabel@gmail.com', NULL, 1, '2015-03-18 23:08:37.534807', '2015-03-18 23:08:37.534807', 'Arriagada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (6, 'Alcides', 'alcidesperez2002@hotmail.com', NULL, 1, '2015-03-18 23:08:37.542301', '2015-03-18 23:08:37.542301', 'Perez Toledo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (7, 'Alex', 'aquinteros101@yahoo.com', NULL, 1, '2015-03-18 23:08:37.550419', '2015-03-18 23:08:37.550419', 'Quinteros')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (8, 'José', 'ahteum@gmail.com', NULL, 1, '2015-03-18 23:08:37.558090', '2015-03-18 23:08:37.558090', 'Guerrero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (9, 'patricio', 'psthandier@gmail.com', NULL, 1, '2015-03-18 23:08:37.565797', '2015-03-18 23:08:37.565797', 'sthandier')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (10, 'diego', 'diego.mz@gmail.com', NULL, 1, '2015-03-18 23:08:37.572497', '2015-03-18 23:08:37.572497', 'martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (11, 'María', 'mariazc@gmail.com', NULL, 1, '2015-03-18 23:08:37.580137', '2015-03-18 23:08:37.580137', 'Zegers')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (12, 'Juan', 'juan.mb1@gmail.com', NULL, 1, '2015-03-18 23:08:37.587181', '2015-03-18 23:08:37.587181', 'Martínez Bengoechea')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (13, 'jose', 'tiopico@gmail.com', NULL, 1, '2015-03-18 23:08:37.600211', '2015-03-18 23:08:37.600211', 'benmayor')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (14, 'Luis', 'luchohino@gmail.com', NULL, 1, '2015-03-18 23:08:37.607985', '2015-03-18 23:08:37.607985', 'Hinojosa Toledo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (15, 'Mirentxu', 'mgraur02@yahoo.es', NULL, 1, '2015-03-18 23:08:37.616062', '2015-03-18 23:08:37.616062', 'Grau')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (16, 'Clemente', 'delrio.clemente@gmail.com', NULL, 1, '2015-03-18 23:08:37.623623', '2015-03-18 23:08:37.623623', 'del Río')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (17, 'Nicolás', 'pernildeherodes@gmail.com', NULL, 1, '2015-03-18 23:08:37.631384', '2015-03-18 23:08:37.631384', 'Vargas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (18, 'sebastian', 'smaquieirao@hotmail.com', NULL, 1, '2015-03-18 23:08:37.638442', '2015-03-18 23:08:37.638442', 'maquieira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (19, 'Gabriel', 'gabrieldfbannen@hotmail.com', NULL, 1, '2015-03-18 23:08:37.649556', '2015-03-18 23:08:37.649556', 'Del Favero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (20, 'Florencia', 'florenciapozo@gmail.com', NULL, 1, '2015-03-18 23:08:37.656878', '2015-03-18 23:08:37.656878', 'Pozo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (21, 'Jojo', 'jojofuentes@yahoo.com', NULL, 1, '2015-03-18 23:08:37.664742', '2015-03-18 23:08:37.664742', 'Fuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (22, 'Gabriela', 'carmonagabriela.s@gmail.com', NULL, 1, '2015-03-18 23:08:37.672164', '2015-03-18 23:08:37.672164', 'Carmona')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (23, 'TAN', 'tanvargas@hotmail.com', NULL, 1, '2015-03-18 23:08:37.679272', '2015-03-18 23:08:37.679272', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (24, 'Carlos', 'apablazabaschmann@gmail.com', NULL, 1, '2015-03-18 23:08:37.687234', '2015-03-18 23:08:37.687234', 'Apablaza Baschmann')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (25, 'KAELAZO', 'kaelazo@gmail.com', NULL, 1, '2015-03-18 23:08:37.699522', '2015-03-18 23:08:37.699522', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (26, 'Consuelo', 'lacoonsu@gmail.com', NULL, 1, '2015-03-18 23:08:37.707052', '2015-03-18 23:08:37.707052', 'Cecilia Cortez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (27, 'Michael', 'greenmaik7@hotmail.com', NULL, 1, '2015-03-18 23:08:37.715332', '2015-03-18 23:08:37.715332', 'Eckman Llados')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (28, 'TERESA', 'pretereto@paranoia.cl', NULL, 1, '2015-03-18 23:08:37.722986', '2015-03-18 23:08:37.722986', 'larraguibel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (29, 'Diego', 'diegobianchi@ciudad.com.ar', NULL, 1, '2015-03-18 23:08:37.730222', '2015-03-18 23:08:37.730222', 'Bianchi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (30, 'victor', 'mnemenauta@yahoo.com', NULL, 1, '2015-03-18 23:08:37.748906', '2015-03-18 23:08:37.748906', 'manuel pavez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (31, 'Michael', 'mzelehoski@yahoo.com', NULL, 1, '2015-03-18 23:08:37.765971', '2015-03-18 23:08:37.765971', 'Zelehoski')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (32, 'catalina', 'catalina.rojas@vtr.net', NULL, 1, '2015-03-18 23:08:37.772920', '2015-03-18 23:08:37.772920', 'Rojas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (33, 'Carolina', 'carolinaschmidtp@gmail.com', NULL, 1, '2015-03-18 23:08:37.782258', '2015-03-18 23:08:37.782258', 'Schmidt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (34, 'sebastian', 'corderodediozz@yahoo.es', NULL, 1, '2015-03-18 23:08:37.789742', '2015-03-18 23:08:37.789742', 'palma')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (35, 'jose', 'jcarmona@dialectos.cl', NULL, 1, '2015-03-18 23:08:37.798063', '2015-03-18 23:08:37.798063', 'luis carmona')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (36, 'Claudia', 'carodriguezez@gmail.es', NULL, 1, '2015-03-18 23:08:37.816141', '2015-03-18 23:08:37.816141', 'Rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (37, 'luciana', 'lulamothe@gmail.com', NULL, 1, '2015-03-18 23:08:37.830789', '2015-03-18 23:08:37.830789', 'lamothe')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (38, 'EVA', 'evaporarte@hotmail.com', NULL, 1, '2015-03-18 23:08:37.838128', '2015-03-18 23:08:37.838128', 'CARRASCO SALDAÑA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (39, 'Claudia', 'fotografiaglomerada@gmail.com', NULL, 1, '2015-03-18 23:08:37.845297', '2015-03-18 23:08:37.845297', 'Araya López')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (40, 'Jose', 'joseoportot@hotmail.com', NULL, 1, '2015-03-18 23:08:37.852151', '2015-03-18 23:08:37.852151', 'OPORTOT')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (41, 'Dani', 'danizderich@gmail.com', NULL, 1, '2015-03-18 23:08:37.865434', '2015-03-18 23:08:37.865434', 'Gall Zder')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (42, 'Ricardo', 'ricardoparra_1@yahoo.es', NULL, 1, '2015-03-18 23:08:37.872330', '2015-03-18 23:08:37.872330', 'Parra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (43, 'Luis', 'guerranuclear@gmail.com', NULL, 1, '2015-03-18 23:08:37.881188', '2015-03-18 23:08:37.881188', 'Guerra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (44, 'Catalina', 'semilla@mi.cl', NULL, 1, '2015-03-18 23:08:37.888757', '2015-03-18 23:08:37.888757', 'Navarro Jones')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (45, 'Angie', 'angiesaiz@gmail.com', NULL, 1, '2015-03-18 23:08:37.897749', '2015-03-18 23:08:37.897749', 'Saiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (46, 'ELENA', 'elenaro@prodigy.net.mx', NULL, 1, '2015-03-18 23:08:37.924612', '2015-03-18 23:08:37.924612', 'RO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (47, 'Federico', 'federicoinfantelorca@gmail.com', NULL, 1, '2015-03-18 23:08:37.943198', '2015-03-18 23:08:37.943198', 'Infante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (48, 'EL', 'elalegrepintor@gmail.com', NULL, 1, '2015-03-18 23:08:37.974254', '2015-03-18 23:08:37.974254', 'ALEGRE PINTOR EL REY')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (49, 'Carlos', 'nakkao@hotmail.com', NULL, 1, '2015-03-18 23:08:37.986994', '2015-03-18 23:08:37.986994', 'Navarrete')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (50, 'aymara', 'aymarazegers@gmail.com', NULL, 1, '2015-03-18 23:08:38.013576', '2015-03-18 23:08:38.013576', 'zegers')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (51, 'Victor', 'esperbravo7@yahoo.es', NULL, 1, '2015-03-18 23:08:38.032308', '2015-03-18 23:08:38.032308', 'Hugo Bravo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (52, 'Juan', 'jcsistem@gmail.com', NULL, 1, '2015-03-18 23:08:38.056930', '2015-03-18 23:08:38.056930', 'Carlos Correa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (53, 'klaudia', 'klaudiakemper@gmail.com', NULL, 1, '2015-03-18 23:08:38.075732', '2015-03-18 23:08:38.075732', 'kemper')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (54, 'tomás', 'artesor@yahoo.es', NULL, 1, '2015-03-18 23:08:38.101986', '2015-03-18 23:08:38.101986', 'araya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (55, 'Amalia', 'amaliavaldes@gmail.com', NULL, 1, '2015-03-18 23:08:38.114359', '2015-03-18 23:08:38.114359', 'Valdes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (56, 'Marcelo', 'marcelo@apurolapiz.cl', NULL, 1, '2015-03-18 23:08:38.136173', '2015-03-18 23:08:38.136173', 'Espinoza Taibo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (57, 'HIRTH', 'yoistik@gmail.com', NULL, 1, '2015-03-18 23:08:38.149567', '2015-03-18 23:08:38.149567', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (58, 'eric', 'ericschiodtz7@hotmail.com', NULL, 1, '2015-03-18 23:08:38.185264', '2015-03-18 23:08:38.185264', 'schiodtz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (59, 'Barbara', 'barbara@gillmore.cl', NULL, 1, '2015-03-18 23:08:38.210055', '2015-03-18 23:08:38.210055', 'Gillmore')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (60, 'alvaro', 'izquierdo.v@gmail.com', NULL, 1, '2015-03-18 23:08:38.242865', '2015-03-18 23:08:38.242865', 'izquierdo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (61, 'YTO', 'ytoaranda@gmail.com', NULL, 1, '2015-03-18 23:08:38.264841', '2015-03-18 23:08:38.264841', 'CL')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (62, 'Michael', 'llaikelpaikel@gmail.com', NULL, 1, '2015-03-18 23:08:38.283350', '2015-03-18 23:08:38.283350', 'Edwards')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (63, 'hector', 'proyectoslaura@yahoo.es', NULL, 1, '2015-03-18 23:08:38.299126', '2015-03-18 23:08:38.299126', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (64, 'Maria', 'pazmb@hotmail.com', NULL, 1, '2015-03-18 23:08:38.313668', '2015-03-18 23:08:38.313668', 'Paz Martinez Bravo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (65, 'Cecilia', 'arte_fuego@hotmail.com', NULL, 1, '2015-03-18 23:08:38.327504', '2015-03-18 23:08:38.327504', 'Moreno Reyes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (66, 'tessiebujes', 'tessiebujes@gmail.com', NULL, 1, '2015-03-18 23:08:38.351538', '2015-03-18 23:08:38.351538', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (67, 'YISA', 'jocegza@gmail.com', NULL, 1, '2015-03-18 23:08:38.375770', '2015-03-18 23:08:38.375770', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (68, 'jimmy', 'ja_watt75@yahoo.es', NULL, 1, '2015-03-18 23:08:38.428227', '2015-03-18 23:08:38.428227', 'watt aka movildrone')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (69, 'Ignacio', 'natosalt@yahoo.es', NULL, 1, '2015-03-18 23:08:38.435788', '2015-03-18 23:08:38.435788', 'Escudero Carvajal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (70, 'Felipe', 'fgamboac@gmail.com', NULL, 1, '2015-03-18 23:08:38.443499', '2015-03-18 23:08:38.443499', 'Gamboa Caneo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (71, 'Alvaro', 'agablerp@gmail.com', NULL, 1, '2015-03-18 23:08:38.452382', '2015-03-18 23:08:38.452382', 'Gabler')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (72, 'Paula', 'paulagarrido@hotmail.com', NULL, 1, '2015-03-18 23:08:38.465386', '2015-03-18 23:08:38.465386', 'Garrido')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (73, 'Pablo', 'art210@latinmail.com', NULL, 1, '2015-03-18 23:08:38.486382', '2015-03-18 23:08:38.486382', 'Acuña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (74, 'Alan', 'pintoralan@gmail.com', NULL, 1, '2015-03-18 23:08:38.504062', '2015-03-18 23:08:38.504062', 'Alaniz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (75, 'Daniella', 'daniellaperbac@gmail.com', NULL, 1, '2015-03-18 23:08:38.521092', '2015-03-18 23:08:38.521092', 'Bacigalupo P')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (76, 'mara', 'maramar.mar@gmail.com', NULL, 1, '2015-03-18 23:08:38.530759', '2015-03-18 23:08:38.530759', 'santibáñez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (77, 'Francisco', 'francoescultor@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:38.556673', '2015-03-18 23:08:38.556673', 'Rios')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (78, 'Mariana', 'mariananajmanovich@gmail.com', NULL, 1, '2015-03-18 23:08:38.578352', '2015-03-18 23:08:38.578352', 'Najmanovich')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (79, 'María', 'schwarzenberg@mananaart.de', NULL, 1, '2015-03-18 23:08:38.599203', '2015-03-18 23:08:38.599203', 'Eliana Schwarzenberg')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (80, 'Camila', 'kamilitak@gmail.com', NULL, 1, '2015-03-18 23:08:38.619573', '2015-03-18 23:08:38.619573', 'López Jiménez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (81, 'Karina', 'pinkantoinette@gmail.com', NULL, 1, '2015-03-18 23:08:38.631876', '2015-03-18 23:08:38.631876', 'Quiroz O')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (82, 'cristobal', 'cristoallende@gmail.com', NULL, 1, '2015-03-18 23:08:38.653884', '2015-03-18 23:08:38.653884', 'allende')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (83, 'erico', 'erico_locuas@hotmail.com', NULL, 1, '2015-03-18 23:08:38.670917', '2015-03-18 23:08:38.670917', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (84, 'Sergio', 'lay.sergio@gmail.com', NULL, 1, '2015-03-18 23:08:38.682523', '2015-03-18 23:08:38.682523', 'Lay')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (85, 'Gabriel', 'artmourey@gmail.com', NULL, 1, '2015-03-18 23:08:38.694811', '2015-03-18 23:08:38.694811', 'Mourey')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (86, 'Ricardo', 'rikardopizarro@gmail.com', NULL, 1, '2015-03-18 23:08:38.706190', '2015-03-18 23:08:38.706190', 'Pizarro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (87, 'starsky', 'starskybrines@gmail.com', NULL, 1, '2015-03-18 23:08:38.718226', '2015-03-18 23:08:38.718226', 'brines')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (88, 'Coca', 'cocaburnier@hotmail.com', NULL, 1, '2015-03-18 23:08:38.743773', '2015-03-18 23:08:38.743773', 'Burnier')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (89, 'Miguel', 'natosalt@gmail.com', NULL, 1, '2015-03-18 23:08:38.754230', '2015-03-18 23:08:38.754230', 'Escudero Moll')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (90, 'Ricardo', 'centauro@manquehue.net', NULL, 1, '2015-03-18 23:08:38.765730', '2015-03-18 23:08:38.765730', 'Schmidt Ureta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (91, 'Ana', 'amr@galeriarte.cl', NULL, 1, '2015-03-18 23:08:38.780610', '2015-03-18 23:08:38.780610', 'María Romero Alarcón')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (92, 'AngelesGuzmánF', 'angelesguzmanf@gmail.com', NULL, 1, '2015-03-18 23:08:38.797982', '2015-03-18 23:08:38.797982', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (93, 'I', 'isaaraneda@hotmail.com', NULL, 1, '2015-03-18 23:08:38.818259', '2015-03-18 23:08:38.818259', 'S A B E L A R A N E D A')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (94, 'ADAN', 'adansat@hotmail.com', NULL, 1, '2015-03-18 23:08:38.831456', '2015-03-18 23:08:38.831456', 'MEDINA HINOJOSA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (95, 'Diego', 'dvergaralira@yahoo.es', NULL, 1, '2015-03-18 23:08:38.844530', '2015-03-18 23:08:38.844530', 'Vergara Lira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (96, 'jonathan', 'jonathansanguezag@gmail.com', NULL, 1, '2015-03-18 23:08:38.852855', '2015-03-18 23:08:38.852855', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (97, 'Muriel', 'muriel.gw@gmail.com', NULL, 1, '2015-03-18 23:08:38.864746', '2015-03-18 23:08:38.864746', 'Gallardo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (98, 'carolina', 'carolina.hermana@gmail.com', NULL, 1, '2015-03-18 23:08:38.880930', '2015-03-18 23:08:38.880930', 'lolas ahumada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (99, 'Isabel', 'carolinaolmedocarrasco@gmail.com', NULL, 1, '2015-03-18 23:08:38.888156', '2015-03-18 23:08:38.888156', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (100, 'Claudio', 'celizama@uach.cl', NULL, 1, '2015-03-18 23:08:38.897511', '2015-03-18 23:08:38.897511', 'Lizama Jerez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (101, 'Diego', 'dondiego@hotmail.com', NULL, 1, '2015-03-18 23:08:38.917747', '2015-03-18 23:08:38.917747', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (102, 'Rubén', 'serveralvarado@gmail.com', NULL, 1, '2015-03-18 23:08:38.930822', '2015-03-18 23:08:38.930822', 'Alvarado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (103, 'concepcion', 'tierradesombra@yahoo.es', NULL, 1, '2015-03-18 23:08:38.949426', '2015-03-18 23:08:38.949426', 'balmes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (104, 'Alex', 'alexchellewm@yahoo.com', NULL, 1, '2015-03-18 23:08:38.963944', '2015-03-18 23:08:38.963944', 'Chellew')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (105, 'carmen', 'carmvalle@gmail.com', NULL, 1, '2015-03-18 23:08:38.980091', '2015-03-18 23:08:38.980091', 'valle')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (106, 'Antonella', 'antonellagd@hotmail.com', NULL, 1, '2015-03-18 23:08:38.988913', '2015-03-18 23:08:38.988913', 'Gallegos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (107, 'CAROLINA', 'coltra@mi.cl', NULL, 1, '2015-03-18 23:08:38.998399', '2015-03-18 23:08:38.998399', 'OLTRA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (108, 'ENRIQUE', 'flores_bx@yahoo.es', NULL, 1, '2015-03-18 23:08:39.015186', '2015-03-18 23:08:39.015186', 'FLORES')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (109, 'Andrea', 'andreafortuita@gmail.com', NULL, 1, '2015-03-18 23:08:39.030716', '2015-03-18 23:08:39.030716', 'Echague')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (110, 'Esteban', 'esteban.echague@gmail.com', NULL, 1, '2015-03-18 23:08:39.044203', '2015-03-18 23:08:39.044203', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (111, 'Mauricio', 'bravocarreno@gmail.com', NULL, 1, '2015-03-18 23:08:39.053968', '2015-03-18 23:08:39.053968', 'Bravo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (112, 'Ana', 'superbabyfell@yahoo.es', NULL, 1, '2015-03-18 23:08:39.077109', '2015-03-18 23:08:39.077109', 'Maria Fell')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (113, 'ALEJANDRO', 'lecarosamaro@gmail.com', NULL, 1, '2015-03-18 23:08:39.095989', '2015-03-18 23:08:39.095989', 'LECAROS AMARO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (114, 'ANDREA', 'aa.casanova@gmail.com', NULL, 1, '2015-03-18 23:08:39.108779', '2015-03-18 23:08:39.108779', 'CASANOVA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (115, 'Carlos', 'carlossilvatroncoso@hotmail.com', NULL, 1, '2015-03-18 23:08:39.131474', '2015-03-18 23:08:39.131474', 'Silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (116, 'francisco', 'pajarovolante77@gmail.com', NULL, 1, '2015-03-18 23:08:39.143335', '2015-03-18 23:08:39.143335', 'huichaqueo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (117, 'Manuela', 'contacto@mvgallo.cl', NULL, 1, '2015-03-18 23:08:39.163250', '2015-03-18 23:08:39.163250', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (118, 'ignacio', 'igna_cl@hotmail.com', NULL, 1, '2015-03-18 23:08:39.180268', '2015-03-18 23:08:39.180268', 'ramirez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (119, 'Cristián', 'cvelascog@yahoo.com', NULL, 1, '2015-03-18 23:08:39.189387', '2015-03-18 23:08:39.189387', 'Velasco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (120, 'paula', 'pafa53@hotmail.com', NULL, 1, '2015-03-18 23:08:39.203753', '2015-03-18 23:08:39.203753', 'fuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (121, 'Oswaldo', 'tatevary@yahoo.com', NULL, 1, '2015-03-18 23:08:39.216770', '2015-03-18 23:08:39.216770', 'Vega')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (122, 'Carlos', 'carlitos_artes@hotmail.com', NULL, 1, '2015-03-18 23:08:39.231112', '2015-03-18 23:08:39.231112', 'Rodriguez Garcia')  (0.3ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (123, 'Oscar', 'mairysethvargas@gmail.com', NULL, 1, '2015-03-18 23:08:39.252489', '2015-03-18 23:08:39.252489', 'Ponce')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (124, 'Lorena', 'larayav@gmail.com', NULL, 1, '2015-03-18 23:08:39.263699', '2015-03-18 23:08:39.263699', 'Araya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (125, 'Cristal', 'cristal.ferret@gmail.com', NULL, 1, '2015-03-18 23:08:39.278551', '2015-03-18 23:08:39.278551', 'Ferret')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (126, 'carlos', 'clom99@yahoo.com', NULL, 1, '2015-03-18 23:08:39.287093', '2015-03-18 23:08:39.287093', 'osorio')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (127, 'Alejandra', 'alejandrabasualdo@gmail.com', NULL, 1, '2015-03-18 23:08:39.303795', '2015-03-18 23:08:39.303795', 'Basualdo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (128, 'Aviva', 'aviva@vtr.net', NULL, 1, '2015-03-18 23:08:39.312476', '2015-03-18 23:08:39.312476', 'Sawicki')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (129, 'Claudio', 'oyarce100@hotmail.com', NULL, 1, '2015-03-18 23:08:39.329630', '2015-03-18 23:08:39.329630', 'Andres Muñoz Oyarce')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (130, 'Juan', 'increado@hotmail.com', NULL, 1, '2015-03-18 23:08:39.337833', '2015-03-18 23:08:39.337833', 'Carrasco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (131, 'Luis', 'chegrarte@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:39.351421', '2015-03-18 23:08:39.351421', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (132, 'Barbara', 'bmodinger@hotmail.com', NULL, 1, '2015-03-18 23:08:39.406572', '2015-03-18 23:08:39.406572', 'Modinger')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (133, 'hugo', 'hugotripodi@yahoo.com', NULL, 1, '2015-03-18 23:08:39.414891', '2015-03-18 23:08:39.414891', 'tripodi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (134, 'Catalina', 'c.macan@gmail.com', NULL, 1, '2015-03-18 23:08:39.422898', '2015-03-18 23:08:39.422898', 'Macan')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (135, 'Camila', 'cali83@gmail.com', NULL, 1, '2015-03-18 23:08:39.431480', '2015-03-18 23:08:39.431480', 'Elisa Atria Alamos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (136, 'luis', 'luisengranajes@hotmail.com', NULL, 1, '2015-03-18 23:08:39.440245', '2015-03-18 23:08:39.440245', 'perez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (137, 'Rodrigo', 'ortegach@gmail.com', NULL, 1, '2015-03-18 23:08:39.522606', '2015-03-18 23:08:39.522606', 'Ortega')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (138, 'Paloma', 'paloma_iva@yahoo.com', NULL, 1, '2015-03-18 23:08:39.531878', '2015-03-18 23:08:39.531878', 'Idini')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (139, 'Daniel', 'fernandobruma@swissinfo.org', NULL, 1, '2015-03-18 23:08:39.539617', '2015-03-18 23:08:39.539617', 'Fernando Lopez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (140, 'Kriztoval', 'ira_el_bardo@hotmail.com', NULL, 1, '2015-03-18 23:08:39.547928', '2015-03-18 23:08:39.547928', 'Opazo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (141, 'Orlando', 'artebariquia@yahoo.es', NULL, 1, '2015-03-18 23:08:39.556548', '2015-03-18 23:08:39.556548', 'Salero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (142, 'claudia', 'claudia@claudiaolivos.com', NULL, 1, '2015-03-18 23:08:39.580047', '2015-03-18 23:08:39.580047', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (143, 'ana', 'anakarinavalecillos@gmail.com', NULL, 1, '2015-03-18 23:08:39.588900', '2015-03-18 23:08:39.588900', 'karina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (144, 'Deys', 'ansiarte@gmail.com', NULL, 1, '2015-03-18 23:08:39.597278', '2015-03-18 23:08:39.597278', 'Rocco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (145, 'Camila', 'correocamila@gmail.com', NULL, 1, '2015-03-18 23:08:39.606001', '2015-03-18 23:08:39.606001', 'Valenzuela Sepúlveda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (146, 'Paula', 'ralmistiblue@hotmail.com', NULL, 1, '2015-03-18 23:08:39.616481', '2015-03-18 23:08:39.616481', 'Bustos Flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (147, 'Gabriela', 'cicciolina3x@gmail.com', NULL, 1, '2015-03-18 23:08:39.628709', '2015-03-18 23:08:39.628709', 'Rivera Lucero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (148, 'camilo', 'camilo@camilovillanueva.com.ar', NULL, 1, '2015-03-18 23:08:39.636883', '2015-03-18 23:08:39.636883', 'villanueva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (149, 'Lucía', 'contacto@luciarodriguez.cl', NULL, 1, '2015-03-18 23:08:39.644205', '2015-03-18 23:08:39.644205', 'Rodríguez P')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (150, 'María', 'mariajosedurans@gmail.com', NULL, 1, '2015-03-18 23:08:39.651872', '2015-03-18 23:08:39.651872', 'José Durán Steinman')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (151, 'LAURA', 'lgamio@gmail.com', NULL, 1, '2015-03-18 23:08:39.659829', '2015-03-18 23:08:39.659829', 'GAMIO RALUY')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (152, 'alberto', 'lagos.alberto@gmail.com', NULL, 1, '2015-03-18 23:08:39.677594', '2015-03-18 23:08:39.677594', 'LAGOS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (153, 'HIDALGO', 'phespino@uc.cl', NULL, 1, '2015-03-18 23:08:39.686634', '2015-03-18 23:08:39.686634', 'Patricio Espinoza Hidalgo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (154, 'Raimundo', 'raimundoedwards@gmail.com', NULL, 1, '2015-03-18 23:08:39.694339', '2015-03-18 23:08:39.694339', 'Edwards Alonso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (155, 'Melf', 'melf_en_viena@yahoo.com', NULL, 1, '2015-03-18 23:08:39.702844', '2015-03-18 23:08:39.702844', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (156, 'Magdalena', 'maidacordero@gmail.com', NULL, 1, '2015-03-18 23:08:39.711124', '2015-03-18 23:08:39.711124', 'Cordero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (157, 'aldo', 'aldogarrido@hotmail.com', NULL, 1, '2015-03-18 23:08:39.729256', '2015-03-18 23:08:39.729256', 'garrido sanchez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (158, 'consuelo', 'consuelolewin@yahoo.com', NULL, 1, '2015-03-18 23:08:39.745282', '2015-03-18 23:08:39.745282', 'lewin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (159, 'Melania', 'melania_lynch@yahoo.es', NULL, 1, '2015-03-18 23:08:39.753879', '2015-03-18 23:08:39.753879', 'Lynch')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (160, 'Felipe', 'fcusicanqui@gmail.com', NULL, 1, '2015-03-18 23:08:39.762027', '2015-03-18 23:08:39.762027', 'Cusicanqui')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (161, 'nknk', 'nk@nk.nk', NULL, 1, '2015-03-18 23:08:39.777578', '2015-03-18 23:08:39.777578', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (162, 'Cristina', 'soberenda@hotmail.com', NULL, 1, '2015-03-18 23:08:39.789656', '2015-03-18 23:08:39.789656', 'Gonzalez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (163, 'Paula', 'anguitapaula@yahoo.com', NULL, 1, '2015-03-18 23:08:39.800534', '2015-03-18 23:08:39.800534', 'Anguita Solis de Ovando')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (164, 'Kamila', 'kamila_gavinci@hotmail.com', NULL, 1, '2015-03-18 23:08:39.819027', '2015-03-18 23:08:39.819027', 'Barrientos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (165, 'MARIANA', 'marianamarciana@hotmail.com', NULL, 1, '2015-03-18 23:08:39.829652', '2015-03-18 23:08:39.829652', 'GUZMAN MESINA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (166, 'Antonio', 'guzmanantonio@gmail.com', NULL, 1, '2015-03-18 23:08:39.849112', '2015-03-18 23:08:39.849112', 'Guzmán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (167, 'DESTROY', 'vandalis.arte@gmail.com', NULL, 1, '2015-03-18 23:08:39.863782', '2015-03-18 23:08:39.863782', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (168, 'javier', 'danceustedtambien@gmail.com', NULL, 1, '2015-03-18 23:08:39.877780', '2015-03-18 23:08:39.877780', 'mansilla calderón')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (169, 'PEPE', 'pepemoreno12@yahoo.es', NULL, 1, '2015-03-18 23:08:39.900852', '2015-03-18 23:08:39.900852', 'MORENO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (170, 'W', 'sintitulo33@hotmail.com', NULL, 1, '2015-03-18 23:08:39.930781', '2015-03-18 23:08:39.930781', 'Villar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (171, 'senoritaugarte', 'senoritaugarte@gmail.com', NULL, 1, '2015-03-18 23:08:39.942989', '2015-03-18 23:08:39.942989', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (172, 'Bruno', 'bruriadnis@hotmail.com', NULL, 1, '2015-03-18 23:08:39.960505', '2015-03-18 23:08:39.960505', 'Garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (173, 'Consuelo', 'mcpolanc@uc.cl', NULL, 1, '2015-03-18 23:08:39.977019', '2015-03-18 23:08:39.977019', 'Polanco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (174, 'MARIA', 'aliciaurrea@yahoo.com', NULL, 1, '2015-03-18 23:08:39.992735', '2015-03-18 23:08:39.992735', 'ALICIA URREA CARVALLO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (175, 'paula', 'phsolimano@gmail.com', NULL, 1, '2015-03-18 23:08:40.007787', '2015-03-18 23:08:40.007787', 'hernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (176, 'Daniel', 'daniel@sourlight.net', NULL, 1, '2015-03-18 23:08:40.036445', '2015-03-18 23:08:40.036445', 'González')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (177, 'epee', 'diasnublados_82@hotmail.com', NULL, 1, '2015-03-18 23:08:40.061289', '2015-03-18 23:08:40.061289', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (178, 'jaime', 'jaimevial@gmail.com', NULL, 1, '2015-03-18 23:08:40.077663', '2015-03-18 23:08:40.077663', 'vial')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (179, 'verena', 'verenaurrutia@gmail.com', NULL, 1, '2015-03-18 23:08:40.101906', '2015-03-18 23:08:40.101906', 'urrutia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (180, 'Rocío', 'rsrrchio@gmail.com', NULL, 1, '2015-03-18 23:08:40.120389', '2015-03-18 23:08:40.120389', 'Román')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (181, 'Cecilia', 'ceciliaarayaleon@gmail.com', NULL, 1, '2015-03-18 23:08:40.141043', '2015-03-18 23:08:40.141043', 'Araya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (182, 'Andrea', 'anazztacia@gmail.com', NULL, 1, '2015-03-18 23:08:40.176928', '2015-03-18 23:08:40.176928', 'Urra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (183, 'Elisa', 'elisaghs@gmail.com', NULL, 1, '2015-03-18 23:08:40.241517', '2015-03-18 23:08:40.241517', 'Garcia de la Huerta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (184, 'Magali', 'contacto@magalipolverino.com', NULL, 1, '2015-03-18 23:08:40.309145', '2015-03-18 23:08:40.309145', 'Polverino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (185, 'FABRIZZIO', 'fabodangelo@hotmail.com', NULL, 1, '2015-03-18 23:08:40.354141', '2015-03-18 23:08:40.354141', 'D ANGELO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (186, 'Enzo', 'info@arrisi.cl', NULL, 1, '2015-03-18 23:08:40.382296', '2015-03-18 23:08:40.382296', 'Arrisi Mercado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (187, 'rodolfo', 'info@rodolfoedwards.com', NULL, 1, '2015-03-18 23:08:40.421218', '2015-03-18 23:08:40.421218', 'edwards')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (188, 'maria', 'arenitademar21@hotmail.com', NULL, 1, '2015-03-18 23:08:40.511000', '2015-03-18 23:08:40.511000', 'jose valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (189, 'Esteban', 'estcordova@gmail.com', NULL, 1, '2015-03-18 23:08:40.536115', '2015-03-18 23:08:40.536115', 'Córdova')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (190, 'Menru', 'lechecita@gmail.com', NULL, 1, '2015-03-18 23:08:40.564175', '2015-03-18 23:08:40.564175', 'SA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (191, 'Yorky', 'yorkymencia@correosdecuba.cu', NULL, 1, '2015-03-18 23:08:40.585881', '2015-03-18 23:08:40.585881', 'Mencia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (192, 'Grace', 'gracieweinrib@gmail.com', NULL, 1, '2015-03-18 23:08:40.598956', '2015-03-18 23:08:40.598956', 'Weinrib')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (193, 'Sebastián', 'sebastianescalona@gmail.com', NULL, 1, '2015-03-18 23:08:40.620363', '2015-03-18 23:08:40.620363', 'Escalona')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (194, 'Consuelo', 'consuelo.rodriguez.d@gmail.com', NULL, 1, '2015-03-18 23:08:40.632640', '2015-03-18 23:08:40.632640', 'Rodríguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (195, 'José', 'joc1483@gmail.com', NULL, 1, '2015-03-18 23:08:40.644073', '2015-03-18 23:08:40.644073', 'Cortés')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (196, 'Oscar', 'sedicereiby@gmail.com', NULL, 1, '2015-03-18 23:08:40.720640', '2015-03-18 23:08:40.720640', 'Raby')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (197, 'Andrés', 'andrestorresf@gmail.com', NULL, 1, '2015-03-18 23:08:40.745289', '2015-03-18 23:08:40.745289', 'Torres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (198, 'Susana', '-----@------------', NULL, 1, '2015-03-18 23:08:40.761631', '2015-03-18 23:08:40.761631', 'Vallejos Sagredo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (199, 'FELIPE', 'felipe.rencoret@hotmail.com', NULL, 1, '2015-03-18 23:08:40.775843', '2015-03-18 23:08:40.775843', 'GUSTAVO RENCORET')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (200, 'Sandra', 'princesahallulla@gmail.com', NULL, 1, '2015-03-18 23:08:40.843300', '2015-03-18 23:08:40.843300', 'Martínez Fuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (201, 'Pablo', 'yonosoysmo@gmail.com', NULL, 1, '2015-03-18 23:08:40.859570', '2015-03-18 23:08:40.859570', 'Saavedra Arévalo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (202, 'Colectivo', 'bruno_s_z@yahoo.com', NULL, 1, '2015-03-18 23:08:40.870407', '2015-03-18 23:08:40.870407', 'de Accion Inmadura')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (203, 'Ricardo', 'rdovillarroel@gmail.com', NULL, 1, '2015-03-18 23:08:40.895175', '2015-03-18 23:08:40.895175', 'Villarroel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (204, 'pau', 'pau_rubio_e@hotmail.com', NULL, 1, '2015-03-18 23:08:40.908858', '2015-03-18 23:08:40.908858', 'rubio eberhardt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (205, 'natalia', 'natix14@gmail.com', NULL, 1, '2015-03-18 23:08:40.916995', '2015-03-18 23:08:40.916995', 'andreani')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (206, 'FLORENCIA', 'florencia.onetto@gmail.com', NULL, 1, '2015-03-18 23:08:40.924651', '2015-03-18 23:08:40.924651', 'ONETTO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (207, 'Germán', 'noanswernoname@gmail.com', NULL, 1, '2015-03-18 23:08:40.942249', '2015-03-18 23:08:40.942249', 'Villalobos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (208, 'Isabel', 'rosemblart@gmail.com', NULL, 1, '2015-03-18 23:08:40.958705', '2015-03-18 23:08:40.958705', 'Rosemblatt Bono')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (209, 'Constanza', 'constanzageisse@mi.cl', NULL, 1, '2015-03-18 23:08:40.966597', '2015-03-18 23:08:40.966597', 'Geisse')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (210, 'Luz', 'luzmpz@gmail.com', NULL, 1, '2015-03-18 23:08:40.975251', '2015-03-18 23:08:40.975251', 'María Pedreros')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (211, 'Paco', 'leonpaco@gmail.com', NULL, 1, '2015-03-18 23:08:40.986442', '2015-03-18 23:08:40.986442', 'Leon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (212, 'CRISTOBAL', 'lologuzman@hotmail.com', NULL, 1, '2015-03-18 23:08:41.004131', '2015-03-18 23:08:41.004131', 'GUZMAN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (213, 'DIEGO', 'aprendeapintar@gmail.com', NULL, 1, '2015-03-18 23:08:41.013990', '2015-03-18 23:08:41.013990', 'HERNANDEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (214, 'ANAMARIA', 'anamariaschmidt@yahoo.com', NULL, 1, '2015-03-18 23:08:41.022900', '2015-03-18 23:08:41.022900', 'SCHMIDT')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (215, 'Marina', 'mpiracés@yahoo.es', NULL, 1, '2015-03-18 23:08:41.031620', '2015-03-18 23:08:41.031620', 'Piracés')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (216, 'Sergio', 'sergiorequena@gmail.com', NULL, 1, '2015-03-18 23:08:41.055737', '2015-03-18 23:08:41.055737', 'Requena G.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (217, 'Luis', 'fotoluisnavarro@gmail.com', NULL, 1, '2015-03-18 23:08:41.072260', '2015-03-18 23:08:41.072260', 'Navarro Figueroa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (218, 'Boris', 'boris.cofre@gmail.com', NULL, 1, '2015-03-18 23:08:41.082122', '2015-03-18 23:08:41.082122', 'Cofré')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (219, 'MACARENA', 'cebra.mbl@gmail.com', NULL, 1, '2015-03-18 23:08:41.092223', '2015-03-18 23:08:41.092223', 'BERNAL LAMONACA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (220, 'Flor', 'cafloresv@hotmail.com', NULL, 1, '2015-03-18 23:08:41.109332', '2015-03-18 23:08:41.109332', 'Flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (221, 'yorky', 'yorkymencia@correodecuba.cu', NULL, 1, '2015-03-18 23:08:41.127814', '2015-03-18 23:08:41.127814', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (222, 'pamela', 'cantillana.pamela@gmail.com', NULL, 1, '2015-03-18 23:08:41.198666', '2015-03-18 23:08:41.198666', 'cantillana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (223, 'francisco', 'pancholillo_1@hotmail.com', NULL, 1, '2015-03-18 23:08:41.221208', '2015-03-18 23:08:41.221208', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (224, 'mauricio', 'info@mauricioconcha.cl', NULL, 1, '2015-03-18 23:08:41.242828', '2015-03-18 23:08:41.242828', 'concha')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (225, 'Patricia', 'patiurquieta@yahoo.es', NULL, 1, '2015-03-18 23:08:41.260072', '2015-03-18 23:08:41.260072', 'Urquieta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (226, 'Francisco', 'francisco@cintolesi.cl', NULL, 1, '2015-03-18 23:08:41.283910', '2015-03-18 23:08:41.283910', 'Cintolesi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (227, 'Paz', 'maria_pakia@hotmail.com', NULL, 1, '2015-03-18 23:08:41.293822', '2015-03-18 23:08:41.293822', 'Camposano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (228, 'hector', 'ampdist@hotmail.com', NULL, 1, '2015-03-18 23:08:41.308495', '2015-03-18 23:08:41.308495', 'llanquín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (229, 'fernando', 'fernandoloustalot@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:41.327991', '2015-03-18 23:08:41.327991', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (230, 'Paulina', 'paulibunster@gmail.com', NULL, 1, '2015-03-18 23:08:41.342661', '2015-03-18 23:08:41.342661', 'Bunster')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (231, 'Ernesto', 'neus_ra@hotmail.com', NULL, 1, '2015-03-18 23:08:41.360019', '2015-03-18 23:08:41.360019', 'Parada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (232, 'andres', 'anmoral29@hotmail.com', NULL, 1, '2015-03-18 23:08:41.376237', '2015-03-18 23:08:41.376237', 'morales saldivia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (233, 'Carla', 'carla_fernandez_4@hotmail.com', NULL, 1, '2015-03-18 23:08:41.393752', '2015-03-18 23:08:41.393752', 'Fernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (234, 'raimundo', 'raimundolarenas@gmail.com', NULL, 1, '2015-03-18 23:08:41.407882', '2015-03-18 23:08:41.407882', 'larenas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (235, 'ISRAEL', 'isra1205@gmail.com', NULL, 1, '2015-03-18 23:08:41.416932', '2015-03-18 23:08:41.416932', 'Hernandez Ruiz Velasco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (236, 'Cynthia', 'cynthiajacksonzam@gmail.com', NULL, 1, '2015-03-18 23:08:41.433623', '2015-03-18 23:08:41.433623', 'Jackson')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (237, 'alvaro', 'alvaromegaherz@hotmail.com', NULL, 1, '2015-03-18 23:08:41.794348', '2015-03-18 23:08:41.794348', 'mega herz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (238, 'ines', 'ineslazzaro@hotmail.com', NULL, 1, '2015-03-18 23:08:41.806923', '2015-03-18 23:08:41.806923', 'lazzaro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (239, 'Ines', ' felisajuancolor@hotmail.com', NULL, 1, '2015-03-18 23:08:41.814832', '2015-03-18 23:08:41.814832', 'Lazzaro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (240, 'MARIANA', 'mavoun@gmail.com', NULL, 1, '2015-03-18 23:08:41.823141', '2015-03-18 23:08:41.823141', 'VODANOVIC U')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (241, 'Francisca', 'nifaze@gmail.com', NULL, 1, '2015-03-18 23:08:41.831526', '2015-03-18 23:08:41.831526', 'Silva de la Cerda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (242, 'INES', 'felisajuancolor@hotmail.com', NULL, 1, '2015-03-18 23:08:41.839976', '2015-03-18 23:08:41.839976', 'LAZZARO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (243, 'GUILLERMINA', 'lallilli@hotmail.com', NULL, 1, '2015-03-18 23:08:41.856521', '2015-03-18 23:08:41.856521', 'PEREZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (244, 'FRAN', 'franset@hotmail.com', NULL, 1, '2015-03-18 23:08:41.873434', '2015-03-18 23:08:41.873434', 'SETZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (245, 'Berta', 'belainne@gmail.com', NULL, 1, '2015-03-18 23:08:41.881413', '2015-03-18 23:08:41.881413', 'Borquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (246, 'LUVIER', 'luvier@gmail.com', NULL, 1, '2015-03-18 23:08:41.889349', '2015-03-18 23:08:41.889349', 'CASALI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (247, 'unknown', 'unknown@unknown.com', NULL, 1, '2015-03-18 23:08:41.898166', '2015-03-18 23:08:41.898166', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (248, 'Cristián', 'soyyo@cristiangallegos.com', NULL, 1, '2015-03-18 23:08:41.906646', '2015-03-18 23:08:41.906646', 'Gallegos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (249, 'Alonso', 'alonso@prenuclear.cl', NULL, 1, '2015-03-18 23:08:41.923886', '2015-03-18 23:08:41.923886', 'Duarte')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (250, 'Carolina', 'caro_parrague@yahoo.com', NULL, 1, '2015-03-18 23:08:41.931993', '2015-03-18 23:08:41.931993', 'Parragué')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (251, 'Javiera', 'callella@hotmail.com', NULL, 1, '2015-03-18 23:08:41.945123', '2015-03-18 23:08:41.945123', 'Girón Bórquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (252, 'Patriccia', 'patilein@gmail.com', NULL, 1, '2015-03-18 23:08:41.958187', '2015-03-18 23:08:41.958187', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (253, 'Lucero', 'jazmin_lucero@hotmail.com', NULL, 1, '2015-03-18 23:08:41.972521', '2015-03-18 23:08:41.972521', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (254, 'MARCELA', 'marcelap40@yahoo.es', NULL, 1, '2015-03-18 23:08:41.980608', '2015-03-18 23:08:41.980608', 'A PEDROSA R')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (255, 'fabiola', 'fabiholapaz@gmail.com', NULL, 1, '2015-03-18 23:08:41.988982', '2015-03-18 23:08:41.988982', 'paz hernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (256, 'María', 'nachamaturana@gmail.com', NULL, 1, '2015-03-18 23:08:41.996921', '2015-03-18 23:08:41.996921', 'Ignacia Maturana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (257, 'Camila', 'leoncamil@gmail.com', NULL, 1, '2015-03-18 23:08:42.006638', '2015-03-18 23:08:42.006638', 'Leon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (258, 'Angela', 'avigilc@yahoo.com', NULL, 1, '2015-03-18 23:08:42.024021', '2015-03-18 23:08:42.024021', 'Vigil')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (259, 'Claudia', 'claudiamarinjara@hotmail.com', NULL, 1, '2015-03-18 23:08:42.033416', '2015-03-18 23:08:42.033416', 'Marín Jara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (260, 'vitto', 'juegocontiza@gmail.com', NULL, 1, '2015-03-18 23:08:42.086591', '2015-03-18 23:08:42.086591', 'meschi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (261, 'CHAVEZ', 'joseomarchavezluna@hotmail.com', NULL, 1, '2015-03-18 23:08:42.093825', '2015-03-18 23:08:42.093825', 'LUNA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (262, 'Daniel', 'danielgcampos@gmail.com', NULL, 1, '2015-03-18 23:08:42.100979', '2015-03-18 23:08:42.100979', 'Campos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (263, 'Francisco', 'fbrunaster@gmail.com', NULL, 1, '2015-03-18 23:08:42.109098', '2015-03-18 23:08:42.109098', 'Bruna Zalvidea')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (264, 'cuenta', 'rodrigovw@hotmail.com', NULL, 1, '2015-03-18 23:08:42.119877', '2015-03-18 23:08:42.119877', 'inactiva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (265, 'mane', 'manemoragam@yahoo.com', NULL, 1, '2015-03-18 23:08:42.139037', '2015-03-18 23:08:42.139037', ' moraga mollenhauer')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (266, 'Margarita', 'margaritadittborn@hotmail.com', NULL, 1, '2015-03-18 23:08:42.149397', '2015-03-18 23:08:42.149397', 'Dittborn Valle')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (267, 'Maria', 'mimart98@yahoo.com', NULL, 1, '2015-03-18 23:08:42.174082', '2015-03-18 23:08:42.174082', 'Idilia Martins')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (268, 'oo', 'lectordemanjar@gmail.com', NULL, 1, '2015-03-18 23:08:42.188915', '2015-03-18 23:08:42.188915', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (269, 'Rodrigo', 'sopulimonreal@hotmail.com', NULL, 1, '2015-03-18 23:08:42.208869', '2015-03-18 23:08:42.208869', 'MONREAL Chandía')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (270, 'DIEGO', 'diegodeaduriz@yahoo.com', NULL, 1, '2015-03-18 23:08:42.217137', '2015-03-18 23:08:42.217137', 'DE ADURIZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (271, 'DANIELA', 'dfabres@gmail.com', NULL, 1, '2015-03-18 23:08:42.231817', '2015-03-18 23:08:42.231817', 'FABRES BARAHONA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (272, 'Matías', 'matiasbiggs@gmail.com', NULL, 1, '2015-03-18 23:08:42.253744', '2015-03-18 23:08:42.253744', 'Oñate Biggs')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (273, 'Mauro', 'maurobalzarotti@gmail.com', NULL, 1, '2015-03-18 23:08:42.271790', '2015-03-18 23:08:42.271790', 'Balzarotti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (274, 'barbara', 'barbarella.o@gmail.com', NULL, 1, '2015-03-18 23:08:42.288757', '2015-03-18 23:08:42.288757', 'oettinger searle')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (275, 'David', 'jovensalo@yahoo.es', NULL, 1, '2015-03-18 23:08:42.309338', '2015-03-18 23:08:42.309338', 'Salomon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (276, 'josebalmaceda', 'josebalmaceda@hotmail.com', NULL, 1, '2015-03-18 23:08:42.339166', '2015-03-18 23:08:42.339166', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (277, 'Cristhian', 'cquijadaa@gmail.com', NULL, 1, '2015-03-18 23:08:42.353695', '2015-03-18 23:08:42.353695', 'Quijada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (278, 'Fernanda', 'loleandola@gmail.com', NULL, 1, '2015-03-18 23:08:42.372356', '2015-03-18 23:08:42.372356', 'Cordero Hansen')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (279, 'María', 'mjpedric@gmail.com', NULL, 1, '2015-03-18 23:08:42.389108', '2015-03-18 23:08:42.389108', 'José Pedraza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (280, 'Jenny', 'ramosajen@yahoo.co.uk', NULL, 1, '2015-03-18 23:08:42.397509', '2015-03-18 23:08:42.397509', 'Ramos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (281, 'Alvaro', 'delpozoysilva@gmail.com', NULL, 1, '2015-03-18 23:08:42.405339', '2015-03-18 23:08:42.405339', 'F POZO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (282, 'Paula', 'politajimenez@hotmail.com', NULL, 1, '2015-03-18 23:08:42.416109', '2015-03-18 23:08:42.416109', 'Jiménez Barranco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (283, 'Betania', 'malandanza@hotmail.com', NULL, 1, '2015-03-18 23:08:42.430277', '2015-03-18 23:08:42.430277', 'Alvarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (284, 'Ramiro', 'maestrosiux@gmail.com', NULL, 1, '2015-03-18 23:08:42.450412', '2015-03-18 23:08:42.450412', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (285, 'DAVID', 'davidhorz@gmail.com', NULL, 1, '2015-03-18 23:08:42.465911', '2015-03-18 23:08:42.465911', 'HORMAZABAL')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (286, 'FRANVEGA', 'kiskavega@hotmail.com', NULL, 1, '2015-03-18 23:08:42.479758', '2015-03-18 23:08:42.479758', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (287, 'Francisca', 'ataxika@hotmail.com', NULL, 1, '2015-03-18 23:08:42.488775', '2015-03-18 23:08:42.488775', 'Leyton Gárate')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (288, 'MalvarisKa', 'malvariska@yahoo.com', NULL, 1, '2015-03-18 23:08:42.497588', '2015-03-18 23:08:42.497588', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (289, 'Cynthia', 'cintipas@hotmail.com', NULL, 1, '2015-03-18 23:08:42.514222', '2015-03-18 23:08:42.514222', 'Passow')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (290, 'Paulette', 'ppaiyee@gmail.com', NULL, 1, '2015-03-18 23:08:42.581922', '2015-03-18 23:08:42.581922', 'Paiyee')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (291, 'Tania', 'tlrobled@uc.cl', NULL, 1, '2015-03-18 23:08:42.589815', '2015-03-18 23:08:42.589815', 'Lenina Robledo Leiva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (292, 'MIROSLAVA', 'myros84@gmail.com', NULL, 1, '2015-03-18 23:08:42.598754', '2015-03-18 23:08:42.598754', 'CASTILLO SNEBERGER')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (293, 'JAVIERA', 'marambio.javiera@gmail.com', NULL, 1, '2015-03-18 23:08:42.606902', '2015-03-18 23:08:42.606902', 'MARAMBIO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (294, 'magdalena', 'mai_aguirre@hotmail.com', NULL, 1, '2015-03-18 23:08:42.614970', '2015-03-18 23:08:42.614970', 'aguirre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (295, 'felipe', 'felipez007@gmail.com', NULL, 1, '2015-03-18 23:08:42.639028', '2015-03-18 23:08:42.639028', 'contreras')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (296, 'Ignacia', 'ignacia.saavedra@gmail.com', NULL, 1, '2015-03-18 23:08:42.648136', '2015-03-18 23:08:42.648136', 'Saavedra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (297, 'Rokat', 'buhovomitando@gmail.com', NULL, 1, '2015-03-18 23:08:42.656452', '2015-03-18 23:08:42.656452', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (298, 'Antonella', 'amaleones@hotmail.com', NULL, 1, '2015-03-18 23:08:42.664383', '2015-03-18 23:08:42.664383', 'Mellibosky')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (299, 'sofia', 'dominguez.sofia@gmail.com', NULL, 1, '2015-03-18 23:08:42.675335', '2015-03-18 23:08:42.675335', 'Dominguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (300, 'Arturo', 'arturovalderas@gmail.com', NULL, 1, '2015-03-18 23:08:42.693398', '2015-03-18 23:08:42.693398', 'Valderas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (301, 'camiki', 'camikibazar@gmail.com', NULL, 1, '2015-03-18 23:08:42.708126', '2015-03-18 23:08:42.708126', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (302, 'GABRIEL', 'guamarin@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:42.719557', '2015-03-18 23:08:42.719557', 'DI MARCO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (303, 'Bernardita', 'bernhadita@hotmail.com', NULL, 1, '2015-03-18 23:08:42.738083', '2015-03-18 23:08:42.738083', 'Schulz Santelices')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (304, 'Tatiana', 'tativuka@gmail.com', NULL, 1, '2015-03-18 23:08:42.753156', '2015-03-18 23:08:42.753156', 'Vukasovic')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (305, 'Constanza', 'conita663@gmail.com', NULL, 1, '2015-03-18 23:08:42.765135', '2015-03-18 23:08:42.765135', 'Tagini')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (306, 'María', 'pascunan@yahoo.com', NULL, 1, '2015-03-18 23:08:42.777016', '2015-03-18 23:08:42.777016', 'Paz Bascuñán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (307, 'Ricardo', 'ricardomandujano@hotmail.com', NULL, 1, '2015-03-18 23:08:42.787894', '2015-03-18 23:08:42.787894', 'Mandujano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (308, 'Jose', 'djjousse2000@yahoo.es', NULL, 1, '2015-03-18 23:08:42.802586', '2015-03-18 23:08:42.802586', 'Luis Nuñez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (309, 'Tomás', 'tomasfernandezdiaz@hotmail.com', NULL, 1, '2015-03-18 23:08:42.810351', '2015-03-18 23:08:42.810351', 'Fernández Díaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (310, 'Cecilia', 'flaten@flaten.cl', NULL, 1, '2015-03-18 23:08:42.818967', '2015-03-18 23:08:42.818967', 'Flaten')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (311, 'Danilo', 'dgarcia@genesisgrafica.cl', NULL, 1, '2015-03-18 23:08:42.837500', '2015-03-18 23:08:42.837500', 'Garcia Medrano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (312, 'Ricardo', 'baeza.ricardo@hotmail.com', NULL, 1, '2015-03-18 23:08:42.852086', '2015-03-18 23:08:42.852086', 'Baeza Muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (313, 'Christian', 'movimientobohemia@hotmail.com', NULL, 1, '2015-03-18 23:08:42.860516', '2015-03-18 23:08:42.860516', 'Andre Pelaez Vidal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (314, 'Cristobal', 'cristobalbarrientos@gmail.com', NULL, 1, '2015-03-18 23:08:42.868278', '2015-03-18 23:08:42.868278', 'Barrientos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (315, 'Estrella', 'eolivares60@yahoo.es', NULL, 1, '2015-03-18 23:08:42.876966', '2015-03-18 23:08:42.876966', 'Olivares')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (316, 'MIKE', 'mikehasick@yahoo.com', NULL, 1, '2015-03-18 23:08:42.887570', '2015-03-18 23:08:42.887570', 'HASICK')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (317, 'Gerardo', 'gpalma@inform.dk', NULL, 1, '2015-03-18 23:08:42.900184', '2015-03-18 23:08:42.900184', 'Palma')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (318, 'TRINI', 'woodstocky88@hotmail.com', NULL, 1, '2015-03-18 23:08:42.908399', '2015-03-18 23:08:42.908399', 'RIOS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (319, 'Constanza', 'qotiqox@gmail.com', NULL, 1, '2015-03-18 23:08:42.916873', '2015-03-18 23:08:42.916873', 'Cox')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (320, 'JoTa', 'jotacarloza@gmail.com', NULL, 1, '2015-03-18 23:08:42.924656', '2015-03-18 23:08:42.924656', 'Carloza')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (321, 'Isidora', 'galvez.alfageme@gmail.com', NULL, 1, '2015-03-18 23:08:42.938085', '2015-03-18 23:08:42.938085', 'Gálvez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (322, 'mariel', 'marielsahue@gmail.com', NULL, 1, '2015-03-18 23:08:42.952721', '2015-03-18 23:08:42.952721', 'sanhueza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (323, 'Viviana', 'vivilopezg@yahoo.com', NULL, 1, '2015-03-18 23:08:42.972632', '2015-03-18 23:08:42.972632', 'López')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (324, 'Misao', 'nilarron@uc.cl', NULL, 1, '2015-03-18 23:08:42.988190', '2015-03-18 23:08:42.988190', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (325, 'Camila', 'camilmontero@hotmail.com', NULL, 1, '2015-03-18 23:08:43.002612', '2015-03-18 23:08:43.002612', 'Montero Neira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (326, 'PaBlina', 'pablinacastillo@gmail.com', NULL, 1, '2015-03-18 23:08:43.011407', '2015-03-18 23:08:43.011407', 'Castillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (327, 'claudio', 'centopeia@csmtelecom.com.br', NULL, 1, '2015-03-18 23:08:43.030720', '2015-03-18 23:08:43.030720', 'trindade')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (328, 'Santiago', 'santiago.ascui@gmail.com', NULL, 1, '2015-03-18 23:08:43.049924', '2015-03-18 23:08:43.049924', 'Ascui')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (329, 'vicente', 'vjcocina@gmail.com', NULL, 1, '2015-03-18 23:08:43.059477', '2015-03-18 23:08:43.059477', 'josé cociña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (330, 'María', 'm.jesus.seguel@gmail.com', NULL, 1, '2015-03-18 23:08:43.076430', '2015-03-18 23:08:43.076430', 'Jesus Seguel T')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (331, 'Gonzalo', 'gonzalo.salinasc@gmail.com', NULL, 1, '2015-03-18 23:08:43.089901', '2015-03-18 23:08:43.089901', 'Salinas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (332, 'Jorge', 'jomanei@yahoo,com', NULL, 1, '2015-03-18 23:08:43.098486', '2015-03-18 23:08:43.098486', 'Maneiro Quesada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (333, 'christian', 'cferradasoto@gmail.com', NULL, 1, '2015-03-18 23:08:43.120471', '2015-03-18 23:08:43.120471', 'ferrada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (334, 'Rosa', 'rosaapablaza@yahoo.es', NULL, 1, '2015-03-18 23:08:43.137220', '2015-03-18 23:08:43.137220', 'Apablaza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (335, 'Cristian', 'cristianoliva@catapilco.cl', NULL, 1, '2015-03-18 23:08:43.146029', '2015-03-18 23:08:43.146029', 'Oliva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (336, 'pablo', 'pabloxcourten@yahoo.com', NULL, 1, '2015-03-18 23:08:43.154471', '2015-03-18 23:08:43.154471', 'courten')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (337, 'Catalina', 'catalinavaras@gmail.com', NULL, 1, '2015-03-18 23:08:43.176036', '2015-03-18 23:08:43.176036', 'Varas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (338, 'Nicolas', 'arquisentidos@gmail.com', NULL, 1, '2015-03-18 23:08:43.190523', '2015-03-18 23:08:43.190523', 'JB')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (339, 'irene', 'ireneperezperez@yahoo.es', NULL, 1, '2015-03-18 23:08:43.208616', '2015-03-18 23:08:43.208616', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (340, 'Colectivo', 'info@lasnaves.org', NULL, 1, '2015-03-18 23:08:43.221225', '2015-03-18 23:08:43.221225', 'Naves')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (341, 'Claudia', 'claudia_godoy_o@hotmail.com', NULL, 1, '2015-03-18 23:08:43.236588', '2015-03-18 23:08:43.236588', 'Godoy')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (342, 'Rodrigo', 'rsgarciapalma@gmail.com', NULL, 1, '2015-03-18 23:08:43.244571', '2015-03-18 23:08:43.244571', 'García Palma')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (343, 'lautaro', 'velosianismo@gmail.com', NULL, 1, '2015-03-18 23:08:43.254953', '2015-03-18 23:08:43.254953', 'veloso tormen')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (344, 'mendes', 'paulomendesfaria@terra.com.br', NULL, 1, '2015-03-18 23:08:43.275775', '2015-03-18 23:08:43.275775', 'faria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (345, 'marcelo', 'winnim@gmail.com', NULL, 1, '2015-03-18 23:08:43.288674', '2015-03-18 23:08:43.288674', 'winniczuk')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (346, 'Leandro', 'leandriono@hotmail.com', NULL, 1, '2015-03-18 23:08:43.309449', '2015-03-18 23:08:43.309449', 'Prado Garcés')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (347, 'Miguel', 'miguelgaetec@gmail.com', NULL, 1, '2015-03-18 23:08:43.332072', '2015-03-18 23:08:43.332072', 'Angel Gaete Cáceres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (348, 'Miguel', 'cmiguelbetan@yahoo.com', NULL, 1, '2015-03-18 23:08:43.389796', '2015-03-18 23:08:43.389796', 'Betancourt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (349, 'Josefina', 'josefinagonzale@gmail.com', NULL, 1, '2015-03-18 23:08:43.398502', '2015-03-18 23:08:43.398502', 'González')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (350, 'Oscar', 'oscarpoliotto@powervt.com.ar', NULL, 1, '2015-03-18 23:08:43.407011', '2015-03-18 23:08:43.407011', 'Poliotto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (351, 'joshua', 'joshswalker@yahoo.com', NULL, 1, '2015-03-18 23:08:43.414920', '2015-03-18 23:08:43.414920', 'walker')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (352, 'Francisca', 'francgaune@hotmail.com', NULL, 1, '2015-03-18 23:08:43.423058', '2015-03-18 23:08:43.423058', 'Gaune Corradi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (353, 'valentina', 'valentinacont@hotmail.com', NULL, 1, '2015-03-18 23:08:43.435741', '2015-03-18 23:08:43.435741', 'varela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (354, 'SEBASTIAN', 'sebastiansilva_p@hotmail.com', NULL, 1, '2015-03-18 23:08:43.444172', '2015-03-18 23:08:43.444172', 'SILVA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (355, 'Carolina', 'wangulem_@hotmail.com', NULL, 1, '2015-03-18 23:08:43.452751', '2015-03-18 23:08:43.452751', 'Zelada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (356, 'HILACHENTO', 'gpm.grafik@gmail.com', NULL, 1, '2015-03-18 23:08:43.461381', '2015-03-18 23:08:43.461381', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (357, 'Armando', 'armandoruiz8@hotmail.com', NULL, 1, '2015-03-18 23:08:43.469855', '2015-03-18 23:08:43.469855', 'Ruiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (358, 'Felipe', 'hilvanado@gmail.com', NULL, 1, '2015-03-18 23:08:43.486514', '2015-03-18 23:08:43.486514', 'Santander')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (359, 'Pilar', 'angepil_@hotmail.com', NULL, 1, '2015-03-18 23:08:43.494225', '2015-03-18 23:08:43.494225', 'de los Angeles Godoy Cortez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (360, 'Eduardo', 'ef@mamchiloe.cl', NULL, 1, '2015-03-18 23:08:43.502629', '2015-03-18 23:08:43.502629', 'Feuerhake')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (361, 'ANDREA', 'andreaugarte@gmail.com', NULL, 1, '2015-03-18 23:08:43.521866', '2015-03-18 23:08:43.521866', 'UGARTE')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (362, 'Catalina', 'catatuca@yahoo.com', NULL, 1, '2015-03-18 23:08:43.542972', '2015-03-18 23:08:43.542972', 'Tuca')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (363, 'NORBERTO', 'tobernorberto@yahoo.com.mx', NULL, 1, '2015-03-18 23:08:43.565951', '2015-03-18 23:08:43.565951', 'RODRIGUEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (364, 'Alvaro', 'alvaropaz21@gmail.com', NULL, 1, '2015-03-18 23:08:43.587225', '2015-03-18 23:08:43.587225', 'Paz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (365, 'Felipe', 'carrionfelipe@yahoo.com', NULL, 1, '2015-03-18 23:08:43.610900', '2015-03-18 23:08:43.610900', 'Carrión Rojas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (366, 'matias', 'matiasantamaria@hotmail.com', NULL, 1, '2015-03-18 23:08:43.634042', '2015-03-18 23:08:43.634042', 'santa maria cea')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (367, 'ilustraciones', 'albordedelborde@hotmail.com', NULL, 1, '2015-03-18 23:08:43.654847', '2015-03-18 23:08:43.654847', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (368, 'Jonathan', 'profesorjleyton@yahoo.es', NULL, 1, '2015-03-18 23:08:43.676231', '2015-03-18 23:08:43.676231', 'Leyton')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (369, 'PAULO', 'emperor@phenomena.cl', NULL, 1, '2015-03-18 23:08:43.699438', '2015-03-18 23:08:43.699438', 'FERNANDEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (370, 'domenico', 'dsthandier@gmail.com', NULL, 1, '2015-03-18 23:08:43.715136', '2015-03-18 23:08:43.715136', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (371, 'ESCAFFI', 'escaffi0@gmail.com', NULL, 1, '2015-03-18 23:08:43.723642', '2015-03-18 23:08:43.723642', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (372, 'Igor', 'igor_barrenechea@hotmail.com', NULL, 1, '2015-03-18 23:08:43.736267', '2015-03-18 23:08:43.736267', 'Barrenechea Buzeta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (373, 'Carolina', 'antitodozine@gmail.com', NULL, 1, '2015-03-18 23:08:43.761114', '2015-03-18 23:08:43.761114', 'Evelyn Guajardo Briones')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (374, 'Martina', 'martina.asenjo@gmail.com', NULL, 1, '2015-03-18 23:08:43.770899', '2015-03-18 23:08:43.770899', 'Asenjo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (375, 'ximena', 'piturasxgeisse@hotmail.com', NULL, 1, '2015-03-18 23:08:43.785163', '2015-03-18 23:08:43.785163', 'geisse')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (376, 'Rosario', 'rosanagh85@hotmail.com', NULL, 1, '2015-03-18 23:08:43.792792', '2015-03-18 23:08:43.792792', 'García Huidobro Munita')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (377, 'Ignacio', 'ignacio@factor-d.cl', NULL, 1, '2015-03-18 23:08:43.802399', '2015-03-18 23:08:43.802399', 'Peña y Lillo Herrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (378, 'Joaquín', 'joaquinc@gmail.com', NULL, 1, '2015-03-18 23:08:43.811323', '2015-03-18 23:08:43.811323', 'Cociña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (379, 'Paula', 'paulaporpaula@gmail.com', NULL, 1, '2015-03-18 23:08:43.819824', '2015-03-18 23:08:43.819824', 'Rodríguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (380, 'Cote', 'coteleonlopez@gmail.com', NULL, 1, '2015-03-18 23:08:43.835134', '2015-03-18 23:08:43.835134', 'Leon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (381, 'ignacio', 'indice1980@gmail.com', NULL, 1, '2015-03-18 23:08:43.842901', '2015-03-18 23:08:43.842901', 'muñoz vicuña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (382, 'ROSARIO', 'castellano.rosario@gmail.com', NULL, 1, '2015-03-18 23:08:43.852272', '2015-03-18 23:08:43.852272', 'CASTELLANO GAZITUA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (383, 'Elisa', 'elisitab@gmail.com', NULL, 1, '2015-03-18 23:08:43.862384', '2015-03-18 23:08:43.862384', 'Balmaceda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (384, 'Juan', 'jpcorreadigital@gmail.com', NULL, 1, '2015-03-18 23:08:43.877099', '2015-03-18 23:08:43.877099', 'Pablo Correa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (385, 'Paulina', 'plutonexiliado@yahoo.es', NULL, 1, '2015-03-18 23:08:43.890291', '2015-03-18 23:08:43.890291', 'Reyes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (386, 'zulay', 'zulaypina@yahoo.es', NULL, 1, '2015-03-18 23:08:43.909986', '2015-03-18 23:08:43.909986', 'piña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (387, 'marcos', 'marcosvillacorta@yahoo.com', NULL, 1, '2015-03-18 23:08:43.927078', '2015-03-18 23:08:43.927078', 'tocino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (388, 'Andrea', 'andreasilvaguzman@hotmail.com', NULL, 1, '2015-03-18 23:08:43.936857', '2015-03-18 23:08:43.936857', 'Silva Guzmán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (389, 'Jose', 'villover@hotmail.com', NULL, 1, '2015-03-18 23:08:43.945587', '2015-03-18 23:08:43.945587', 'Maria Macaya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (390, 'Trafixxx', 'mr.trafic@gmail.com', NULL, 1, '2015-03-18 23:08:43.954194', '2015-03-18 23:08:43.954194', 'del bosque')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (391, 'MANE', 'mane_adaro@yahoo.es', NULL, 1, '2015-03-18 23:08:43.964358', '2015-03-18 23:08:43.964358', 'ADARO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (392, 'CATALINA', 'catalinaschliebener@buuuu.com', NULL, 1, '2015-03-18 23:08:43.982730', '2015-03-18 23:08:43.982730', 'SCHLIEBENER')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (393, 'valentina', 'valecostabal@gmail.com', NULL, 1, '2015-03-18 23:08:43.991824', '2015-03-18 23:08:43.991824', 'costabal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (394, 'Sergio', 'peerro@gmail.com', NULL, 1, '2015-03-18 23:08:44.000378', '2015-03-18 23:08:44.000378', 'Lantadilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (395, 'Camila', 'camilaletelier@hotmail.com', NULL, 1, '2015-03-18 23:08:44.010138', '2015-03-18 23:08:44.010138', 'Letelier')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (396, '[:::LYNC:::]', 'evelyn.cautivo@gmail.com', NULL, 1, '2015-03-18 23:08:44.018814', '2015-03-18 23:08:44.018814', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (397, 'lourdes', 'yuyiazpiri@hotmail.com', NULL, 1, '2015-03-18 23:08:44.034644', '2015-03-18 23:08:44.034644', 'azpiri')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (398, 'Mauricio', 'mazzzuco@gmail.com', NULL, 1, '2015-03-18 23:08:44.053917', '2015-03-18 23:08:44.053917', 'Zúñiga Copello')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (399, 'Catalina', 'colibreja@hotmail.com', NULL, 1, '2015-03-18 23:08:44.065749', '2015-03-18 23:08:44.065749', 'Silva Guzmán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (400, 'ariel', 'mauro.longa@gmail.com', NULL, 1, '2015-03-18 23:08:44.084778', '2015-03-18 23:08:44.084778', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (401, 'magdalena', 'manefla@gmail.com', NULL, 1, '2015-03-18 23:08:44.093958', '2015-03-18 23:08:44.093958', 'valdes fleischli')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (402, 'Sofia', 'sofiavergar@gmail.com', NULL, 1, '2015-03-18 23:08:44.150306', '2015-03-18 23:08:44.150306', 'Vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (403, 'Andrea', 'amontanea@gmail.com', NULL, 1, '2015-03-18 23:08:44.159168', '2015-03-18 23:08:44.159168', 'Montané Anwandter')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (404, 'Nicolas', 'nquintano@yahoo.com', NULL, 1, '2015-03-18 23:08:44.167642', '2015-03-18 23:08:44.167642', 'Quintano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (405, 'Soledad', 'sol_blas@hotmail.com', NULL, 1, '2015-03-18 23:08:44.176905', '2015-03-18 23:08:44.176905', 'Benavides')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (406, 'Ismaela', 'ismaelav@gmail.com blueberrybird18@hotmail.com', NULL, 1, '2015-03-18 23:08:44.184561', '2015-03-18 23:08:44.184561', 'Vidal Matteau')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (407, 'Maria', 'maria_jose_gas@hotmail.com', NULL, 1, '2015-03-18 23:08:44.192521', '2015-03-18 23:08:44.192521', 'Jose Gasmuri')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (408, 'Leonardo', 'invunchearte@gmail.com', NULL, 1, '2015-03-18 23:08:44.204419', '2015-03-18 23:08:44.204419', 'Casella')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (409, 'MARIA', 'majobarros@yahoo.com', NULL, 1, '2015-03-18 23:08:44.212767', '2015-03-18 23:08:44.212767', 'JOSE Barros Ugarte')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (410, 'RORIGO', 'rodrigofigueroa@arquitas.cl', NULL, 1, '2015-03-18 23:08:44.231754', '2015-03-18 23:08:44.231754', 'FIGUEROA PALACIOS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (411, 'Alecks', 'herz89@hotmail.com', NULL, 1, '2015-03-18 23:08:44.252999', '2015-03-18 23:08:44.252999', 'HERZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (412, 'adrian', 'adrian.gouet@gmail.com', NULL, 1, '2015-03-18 23:08:44.264347', '2015-03-18 23:08:44.264347', 'gouet hiriart')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (413, 'Gonzalo', 'Pinorra80@yahoo.es', NULL, 1, '2015-03-18 23:08:44.280831', '2015-03-18 23:08:44.280831', 'Aguirre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (414, 'Patricio', 'pekind@gmail.com', NULL, 1, '2015-03-18 23:08:44.300056', '2015-03-18 23:08:44.300056', 'Kind')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (415, 'johan', 'paulgalue@hotmail.com', NULL, 1, '2015-03-18 23:08:44.321547', '2015-03-18 23:08:44.321547', 'paul galue')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (416, 'Claudia', 'xlaomelo@hotmail.com', NULL, 1, '2015-03-18 23:08:44.343110', '2015-03-18 23:08:44.343110', 'Sofía Melo Cabello')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (417, 'Pablo', 'pabloandresmontt@gmail.com', NULL, 1, '2015-03-18 23:08:44.365974', '2015-03-18 23:08:44.365974', 'Andres Montt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (418, 'sara', 'saraoblisar@yahoo.es', NULL, 1, '2015-03-18 23:08:44.388096', '2015-03-18 23:08:44.388096', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (419, 'CAROLA', 'carolasep@gmail.com', NULL, 1, '2015-03-18 23:08:44.410974', '2015-03-18 23:08:44.410974', 'SEPULVEDA FUENTES')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (420, 'Cristobal', 'punto.clava@hotmail.com', NULL, 1, '2015-03-18 23:08:44.432730', '2015-03-18 23:08:44.432730', 'Valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (421, 'Antonio', 'antogagliano@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:44.454159', '2015-03-18 23:08:44.454159', 'Gagliano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (422, 'Carol', 'carolv9@gmail.com', NULL, 1, '2015-03-18 23:08:44.477465', '2015-03-18 23:08:44.477465', 'Vargas Bastias')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (423, 'PATRICIO', 'patricio.fc@gmail.com', NULL, 1, '2015-03-18 23:08:44.499608', '2015-03-18 23:08:44.499608', 'FERNÁNDEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (424, 'cristal', 'crystalships@hotmail.com', NULL, 1, '2015-03-18 23:08:44.521523', '2015-03-18 23:08:44.521523', 'm')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (425, 'Soledad', 'solerusso@gmail.com', NULL, 1, '2015-03-18 23:08:44.543644', '2015-03-18 23:08:44.543644', 'Russo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (426, 'ROSITA', 'rosabeas5@hotmail.com', NULL, 1, '2015-03-18 23:08:44.567957', '2015-03-18 23:08:44.567957', 'BEAS CAPLLONCH')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (427, 'Joaquín', 'joaquin.r.u@gmail.com', NULL, 1, '2015-03-18 23:08:44.588892', '2015-03-18 23:08:44.588892', 'Reyes Urrutia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (428, 'Rodrigo', 'primate1@gmail.com', NULL, 1, '2015-03-18 23:08:44.613147', '2015-03-18 23:08:44.613147', 'Meza Piñones')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (429, 'OCUPAS', 'ocupasocupas@gmail.com', NULL, 1, '2015-03-18 23:08:44.625067', '2015-03-18 23:08:44.625067', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (430, 'Graciela', 'gquercia@gmail.com', NULL, 1, '2015-03-18 23:08:44.634179', '2015-03-18 23:08:44.634179', 'Quercia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (431, 'BuildingtheK', 'buildingthek@gmail.com', NULL, 1, '2015-03-18 23:08:44.649704', '2015-03-18 23:08:44.649704', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (432, 'isidora', 'isidoraira@gmail.com', NULL, 1, '2015-03-18 23:08:44.658035', '2015-03-18 23:08:44.658035', 'irarrazaval')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (433, 'pia', 'bella_eternidad@hotmail.com', NULL, 1, '2015-03-18 23:08:44.666947', '2015-03-18 23:08:44.666947', 'inzunza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (434, 'Nicolas', 'nicolaspmelo@hotmail.com', NULL, 1, '2015-03-18 23:08:44.675810', '2015-03-18 23:08:44.675810', 'Parrao Melo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (435, 'Jon', 'artificisanimal@hotmail.com', NULL, 1, '2015-03-18 23:08:44.684240', '2015-03-18 23:08:44.684240', 'Juanma Illescas Martínez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (436, 'francisca', 'fran.ahlers@gmail.com', NULL, 1, '2015-03-18 23:08:44.699977', '2015-03-18 23:08:44.699977', 'Ahlers')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (437, 'Cristóbal', 'gajardopinta@yahoo.es', NULL, 1, '2015-03-18 23:08:44.708755', '2015-03-18 23:08:44.708755', 'Gajardo Rodríguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (438, 'Ivo', 'losolteros@hotmail.com', NULL, 1, '2015-03-18 23:08:44.719826', '2015-03-18 23:08:44.719826', 'Vidal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (439, 'GONZALO', 'ZANGOLAS@HOTMAIL.COM', NULL, 1, '2015-03-18 23:08:44.737637', '2015-03-18 23:08:44.737637', 'ESPINOSA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (440, 'María', 'mariaignaciadiazv@hotmail.com', NULL, 1, '2015-03-18 23:08:44.754256', '2015-03-18 23:08:44.754256', 'Ignacia Díaz von der Hundt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (441, 'Darlin', 'isgilians@gmail.com', NULL, 1, '2015-03-18 23:08:44.771950', '2015-03-18 23:08:44.771950', 'Peña Torres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (442, 'Misstresenoritas', 'misstresenoritas@gmail.com', NULL, 1, '2015-03-18 23:08:44.850724', '2015-03-18 23:08:44.850724', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (443, 'juan', 'juanignacio.cl@gmail.com', NULL, 1, '2015-03-18 23:08:44.866388', '2015-03-18 23:08:44.866388', 'ignacio herrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (444, 'esre', 'oij oi@jn.cl', NULL, 1, '2015-03-18 23:08:44.874606', '2015-03-18 23:08:44.874606', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (445, 'x', 'hematie_x@hotmail.com', NULL, 1, '2015-03-18 23:08:44.882537', '2015-03-18 23:08:44.882537', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (446, 'Cecilia', 'ceciliaavendanio@hotmail.com', NULL, 1, '2015-03-18 23:08:44.890884', '2015-03-18 23:08:44.890884', 'Avendaño Bobillier')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (447, 'carola', 'cstrmelj@gmail.com', NULL, 1, '2015-03-18 23:08:44.899802', '2015-03-18 23:08:44.899802', 'strmelj')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (448, 'Beatriz', 'beatrizasofia@hotmail.com', NULL, 1, '2015-03-18 23:08:44.915897', '2015-03-18 23:08:44.915897', 'Acevedo Cabello')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (449, 'MAURICIO', 'mauriciovalenciacardenas@gmail.com', NULL, 1, '2015-03-18 23:08:44.924962', '2015-03-18 23:08:44.924962', 'VALENCIA CARDENAS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (450, 'Germán', 'evangelisti@gmx.net', NULL, 1, '2015-03-18 23:08:44.933105', '2015-03-18 23:08:44.933105', 'Evangelisti Muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (451, 'Jorge', 'jisilva1@uc.cl', NULL, 1, '2015-03-18 23:08:44.941277', '2015-03-18 23:08:44.941277', 'Silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (452, 'Astrid', 'alluantu@gmail.com', NULL, 1, '2015-03-18 23:08:44.949674', '2015-03-18 23:08:44.949674', 'Stocker')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (453, 'Matías', 'matiaslab@yahoo.com', NULL, 1, '2015-03-18 23:08:44.965808', '2015-03-18 23:08:44.965808', 'Labbé')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (454, 'CATALINA', 'catalina.delacruz@gmail.com', NULL, 1, '2015-03-18 23:08:44.974898', '2015-03-18 23:08:44.974898', 'DE LA CRUZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (455, 'enrique', 'errejemex@hotmail.com', NULL, 1, '2015-03-18 23:08:44.982958', '2015-03-18 23:08:44.982958', 'rivera r')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (456, 'Iván', 'ivan.javis@gmail.com', NULL, 1, '2015-03-18 23:08:44.991911', '2015-03-18 23:08:44.991911', 'Palmarola')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (457, 'Cristian', 'cristianvega@hotmail.com', NULL, 1, '2015-03-18 23:08:45.014878', '2015-03-18 23:08:45.014878', 'Vega Rojo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (458, 'Macarena', 'macajarpa@gmail.com', NULL, 1, '2015-03-18 23:08:45.023685', '2015-03-18 23:08:45.023685', 'Jarpa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (459, 'Juan', 'jpgreingardt@hotmail.com', NULL, 1, '2015-03-18 23:08:45.032743', '2015-03-18 23:08:45.032743', 'Pablo Garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (460, 'J', 'josefinastorga@gmail.com', NULL, 1, '2015-03-18 23:08:45.040578', '2015-03-18 23:08:45.040578', 'O S E F I N A S T O R G A')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (461, 'mimi', 'miguelmichelson@2iopjfji.cl', NULL, 1, '2015-03-18 23:08:45.049607', '2015-03-18 23:08:45.049607', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (462, 'Zaida', 'zaidagr77@yahoo.es', NULL, 1, '2015-03-18 23:08:45.065518', '2015-03-18 23:08:45.065518', 'González Ríos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (463, 'Adelaida', 'atlarrai@uc.cl', NULL, 1, '2015-03-18 23:08:45.073989', '2015-03-18 23:08:45.073989', 'Larraín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (464, 'Victória', 'lilithvoncarter@gmail.com', NULL, 1, '2015-03-18 23:08:45.082102', '2015-03-18 23:08:45.082102', 'Aisswort')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (465, 'Hector', 'e7online@gmail.com', NULL, 1, '2015-03-18 23:08:45.090751', '2015-03-18 23:08:45.090751', 'Labrin F.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (466, 'loreto', 'loretin.metalera@gmail.com', NULL, 1, '2015-03-18 23:08:45.099993', '2015-03-18 23:08:45.099993', 'contreras')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (467, 'Cecilia', 'cecilia.albertina@gmail.com', NULL, 1, '2015-03-18 23:08:45.115874', '2015-03-18 23:08:45.115874', 'Flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (468, 'HIDALGO', 'hidalgobastien1@hotmail.com', NULL, 1, '2015-03-18 23:08:45.124277', '2015-03-18 23:08:45.124277', 'BASTIEN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (469, 'Jorge', 'jorgeovandos@gmail.com', NULL, 1, '2015-03-18 23:08:45.132964', '2015-03-18 23:08:45.132964', 'Ovando')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (470, 'Consuelo', 'mchernandezj@wanadoo.es', NULL, 1, '2015-03-18 23:08:45.141794', '2015-03-18 23:08:45.141794', 'Hernández')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (471, 'Patricia', 'pattygh@gmail.com', NULL, 1, '2015-03-18 23:08:45.153103', '2015-03-18 23:08:45.153103', 'Gómez Hidalgo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (472, 'laladiablo', 'muere@gmail.com', NULL, 1, '2015-03-18 23:08:45.170837', '2015-03-18 23:08:45.170837', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (473, 'ANDRES', 'morapepo@yahoo.es', NULL, 1, '2015-03-18 23:08:45.188170', '2015-03-18 23:08:45.188170', 'MORA SALVI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (474, 'alejandro', 'alejandrobalbontin@manquehue.net', NULL, 1, '2015-03-18 23:08:45.198720', '2015-03-18 23:08:45.198720', 'balbontin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (475, 'gabriel', 'g.lazoq@gmail.com', NULL, 1, '2015-03-18 23:08:45.214823', '2015-03-18 23:08:45.214823', 'lazo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (476, 'Ariel', 'ariel_maluenda@hotmail.com', NULL, 1, '2015-03-18 23:08:45.574862', '2015-03-18 23:08:45.574862', 'Maluenda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (477, 'miguel', 'super_miguelin@msn.com', NULL, 1, '2015-03-18 23:08:45.584504', '2015-03-18 23:08:45.584504', 'ivan')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (478, 'RANO', 'satanicnerd@hotmail.com', NULL, 1, '2015-03-18 23:08:45.593048', '2015-03-18 23:08:45.593048', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (479, 'Bernardita', 'bernigoycoolea@gmail.com', NULL, 1, '2015-03-18 23:08:45.600893', '2015-03-18 23:08:45.600893', 'Goycoolea')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (480, 'LISAMALLA', 'Lisamalla@yahoo.es', NULL, 1, '2015-03-18 23:08:45.609103', '2015-03-18 23:08:45.609103', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (481, 'Cristian', 'cristianoliva@yahoo.com', NULL, 1, '2015-03-18 23:08:45.631786', '2015-03-18 23:08:45.631786', 'Oliva Vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (482, 'Polla', 'pollatrujillo@gmail.com', NULL, 1, '2015-03-18 23:08:45.641053', '2015-03-18 23:08:45.641053', 'Trujillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (483, 'diana', 'dianalakatira@hotmail.com', NULL, 1, '2015-03-18 23:08:45.648484', '2015-03-18 23:08:45.648484', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (484, 'J', 'jnpbloo@gmail.com', NULL, 1, '2015-03-18 23:08:45.656340', '2015-03-18 23:08:45.656340', 'Pablo Díaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (485, 'Eliseo', 'adrenaliniik0@gmail.com', NULL, 1, '2015-03-18 23:08:45.665194', '2015-03-18 23:08:45.665194', 'Fica')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (486, 'HubeSalamanca', 'hubearts@gmail.com', NULL, 1, '2015-03-18 23:08:45.681980', '2015-03-18 23:08:45.681980', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (487, 'nayem', 'rouge.lona@gmail.com', NULL, 1, '2015-03-18 23:08:45.690166', '2015-03-18 23:08:45.690166', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (488, 'lola', 'lolamorenos@hotmail.com', NULL, 1, '2015-03-18 23:08:45.697919', '2015-03-18 23:08:45.697919', 'moreno')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (489, 'hejary', 'hejary@yahoo.com', NULL, 1, '2015-03-18 23:08:45.706344', '2015-03-18 23:08:45.706344', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (490, 'JAVIER', 'javierchorbadjian@gmail.com', NULL, 1, '2015-03-18 23:08:45.714327', '2015-03-18 23:08:45.714327', 'CHORBADJIAN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (491, 'J', 'jgarridomarin@hotmail.com', NULL, 1, '2015-03-18 23:08:45.730872', '2015-03-18 23:08:45.730872', 'GARRIDO MARIN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (492, 'Macarena', 'mrta000@gmail.com', NULL, 1, '2015-03-18 23:08:45.739692', '2015-03-18 23:08:45.739692', 'Ruiz-Tagle')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (493, 'gricelle', 'shelita_22@hotmail.com', NULL, 1, '2015-03-18 23:08:45.761114', '2015-03-18 23:08:45.761114', 'alvarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (494, 'Waldo', 'bravo@waldobravo.com.br', NULL, 1, '2015-03-18 23:08:45.781870', '2015-03-18 23:08:45.781870', 'Bravo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (495, 'Mirta', 'mirtabenavente@gmail.com', NULL, 1, '2015-03-18 23:08:45.838851', '2015-03-18 23:08:45.838851', 'Benavente')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (496, 'fu', 'fupablo@gmail.com', NULL, 1, '2015-03-18 23:08:45.848078', '2015-03-18 23:08:45.848078', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (497, 'ricardo', 'rbarrose@gmail.com', NULL, 1, '2015-03-18 23:08:45.855647', '2015-03-18 23:08:45.855647', 'barros echeverria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (498, 'Kohen', 'artes_kohen@yahoo.es', NULL, 1, '2015-03-18 23:08:45.864866', '2015-03-18 23:08:45.864866', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (499, 'javier', 'molinarte@gmail.com', NULL, 1, '2015-03-18 23:08:45.874325', '2015-03-18 23:08:45.874325', 'molina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (500, 'ABC', 'chapinakaire@yahoo.com', NULL, 1, '2015-03-18 23:08:45.897574', '2015-03-18 23:08:45.897574', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (501, 'Nicole', 'segunda.piiel@gmail.com', NULL, 1, '2015-03-18 23:08:45.921715', '2015-03-18 23:08:45.921715', 'González.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (502, 'Quehaceres', 'quehaceres_domesticos@yahoo.com', NULL, 1, '2015-03-18 23:08:45.930682', '2015-03-18 23:08:45.930682', 'Domesticos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (503, 'Carolina', 'lacaro360@hotmail.com', NULL, 1, '2015-03-18 23:08:45.946948', '2015-03-18 23:08:45.946948', 'Aguilar Martorell')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (504, 'pablo', 'pabloalbustos@gmail.com', NULL, 1, '2015-03-18 23:08:45.955288', '2015-03-18 23:08:45.955288', 'bustos castillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (505, 'José', 'jpgodoy@uc.cl', NULL, 1, '2015-03-18 23:08:45.963166', '2015-03-18 23:08:45.963166', 'Pedro Godoy')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (506, 'Alfonso', 'pinturas@alfonsofernandez.cl', NULL, 1, '2015-03-18 23:08:45.972072', '2015-03-18 23:08:45.972072', 'Fernández Acevedo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (507, 'COTE', 'cote@cotesantana.com', NULL, 1, '2015-03-18 23:08:45.980526', '2015-03-18 23:08:45.980526', 'SANTANA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (508, 'GABRIEL', 'gacanale@hotmail.com', NULL, 1, '2015-03-18 23:08:45.996377', '2015-03-18 23:08:45.996377', 'canales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (509, 'Francisca', 'franuyeah@gmail.com', NULL, 1, '2015-03-18 23:08:46.005813', '2015-03-18 23:08:46.005813', 'Ulloa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (510, 'MICHELLE', 'cemimi@hotmail.com', NULL, 1, '2015-03-18 23:08:46.013366', '2015-03-18 23:08:46.013366', 'NIELSEN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (511, 'richard', 'pataghom@gmail.com', NULL, 1, '2015-03-18 23:08:46.022705', '2015-03-18 23:08:46.022705', 'carvajal flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (512, 'Alvaro', 'alvaromegaherz@gmail.com', NULL, 1, '2015-03-18 23:08:46.030524', '2015-03-18 23:08:46.030524', 'Herz Serrano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (513, 'Diana', 'diana.navarrete@gmail.com', NULL, 1, '2015-03-18 23:08:46.046590', '2015-03-18 23:08:46.046590', 'Navarrete Astroza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (514, 'Karla', 'xkarlix@gmail.com', NULL, 1, '2015-03-18 23:08:46.054783', '2015-03-18 23:08:46.054783', 'Peña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (515, 'José', 'jlgacitua@gmail.com', NULL, 1, '2015-03-18 23:08:46.063050', '2015-03-18 23:08:46.063050', 'Luis Gacitúa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (516, 'KATHACLIXMO', 'mujergallinaempollando@hotmail.com', NULL, 1, '2015-03-18 23:08:46.071685', '2015-03-18 23:08:46.071685', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (517, 'Francisca', 'panxitavidela@gmail.com', NULL, 1, '2015-03-18 23:08:46.080368', '2015-03-18 23:08:46.080368', 'Videla Lopez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (518, 'sioux', 'clonsioux@yahoo.com', NULL, 1, '2015-03-18 23:08:46.098553', '2015-03-18 23:08:46.098553', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (519, 'Obreque', 'jjobreque@gmail.com', NULL, 1, '2015-03-18 23:08:46.112227', '2015-03-18 23:08:46.112227', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (520, 'Paulo', 'toledospencer@gmail.com', NULL, 1, '2015-03-18 23:08:46.121345', '2015-03-18 23:08:46.121345', 'Toledo Spencer')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (521, 'Manuel', 'mperis_clases@hotmail.com', NULL, 1, '2015-03-18 23:08:46.129678', '2015-03-18 23:08:46.129678', 'Peris')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (522, 'felipe', 'n@mi.cl', NULL, 1, '2015-03-18 23:08:46.148210', '2015-03-18 23:08:46.148210', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (523, 'fran', 'francisca.wink@hotmail.com', NULL, 1, '2015-03-18 23:08:46.157083', '2015-03-18 23:08:46.157083', 'winkyta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (524, 'Daniela', 'siempreprimitabs@gmail.com', NULL, 1, '2015-03-18 23:08:46.176918', '2015-03-18 23:08:46.176918', 'Quiroz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (525, 'Pablo', 'pablo.montealegre@gmail.com', NULL, 1, '2015-03-18 23:08:46.195480', '2015-03-18 23:08:46.195480', 'Montealegre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (526, 'boomsta', 'boomsta_csa@hotmail.com', NULL, 1, '2015-03-18 23:08:46.210812', '2015-03-18 23:08:46.210812', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (527, 'Ignacio', 'iwong85@hotmail.com', NULL, 1, '2015-03-18 23:08:46.221619', '2015-03-18 23:08:46.221619', 'Wong')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (528, 'Amanda', 'amandinga07@hotmail.com', NULL, 1, '2015-03-18 23:08:46.244115', '2015-03-18 23:08:46.244115', 'Rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (529, 'KareM', 'pratena@gmail.com', NULL, 1, '2015-03-18 23:08:46.260749', '2015-03-18 23:08:46.260749', 'TorreS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (530, 'Constanza', 'constanzavergarac@gmail.com', NULL, 1, '2015-03-18 23:08:46.273470', '2015-03-18 23:08:46.273470', 'Vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (531, 'Sabrina', 'salore_4@hotmail.com', NULL, 1, '2015-03-18 23:08:46.293743', '2015-03-18 23:08:46.293743', 'Catalano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (532, 'animal', '123456789@giuhmail.com', NULL, 1, '2015-03-18 23:08:46.302256', '2015-03-18 23:08:46.302256', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (533, 'Nadia', 'nadiamaldonado@udec.cl', NULL, 1, '2015-03-18 23:08:46.311714', '2015-03-18 23:08:46.311714', 'Maldonado Benavides')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (534, 'julio', 'kintun@vtr.net', NULL, 1, '2015-03-18 23:08:46.320339', '2015-03-18 23:08:46.320339', 'espinoza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (535, 'vonpfeiler', 'piliqv@hotmail.com', NULL, 1, '2015-03-18 23:08:46.328806', '2015-03-18 23:08:46.328806', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (536, 'hernan', 'hernan@rinfm.com', NULL, 1, '2015-03-18 23:08:46.345957', '2015-03-18 23:08:46.345957', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (537, 'Sergio', 'amnesiac15@hotmail.com', NULL, 1, '2015-03-18 23:08:46.355238', '2015-03-18 23:08:46.355238', 'Nuñez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (538, 'Pilar', 'pilimack@gmail.com', NULL, 1, '2015-03-18 23:08:46.364462', '2015-03-18 23:08:46.364462', 'Mackenna')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (539, 'Pablo', 'pabloserralepo@hotmail.com', NULL, 1, '2015-03-18 23:08:46.376778', '2015-03-18 23:08:46.376778', 'Serra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (540, 'Paloma', 'paloma.rodriguez.s@gmail.com', NULL, 1, '2015-03-18 23:08:46.396019', '2015-03-18 23:08:46.396019', 'Rodríguez Sánchez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (541, 'Paulina', 'paulina.narvaez.o@gmail.com', NULL, 1, '2015-03-18 23:08:46.405198', '2015-03-18 23:08:46.405198', 'Narváez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (542, 'Viviana', 'vivianacorvalan@gmail.com', NULL, 1, '2015-03-18 23:08:46.413751', '2015-03-18 23:08:46.413751', 'Corvalán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (543, 'Pía', 'mariapia.vasquez@gmail.com', NULL, 1, '2015-03-18 23:08:46.423197', '2015-03-18 23:08:46.423197', 'Vasquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (544, 'Claudio', 'cortesclaudio@yahoo.es', NULL, 1, '2015-03-18 23:08:46.433215', '2015-03-18 23:08:46.433215', 'Cortés Fernández')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (545, 'Pablo', 'solisdalencon@gmail.com', NULL, 1, '2015-03-18 23:08:46.493494', '2015-03-18 23:08:46.493494', 'Daniel Solís DAlencon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (546, 'RAUL', 'rulonunez@gmail.com', NULL, 1, '2015-03-18 23:08:46.501250', '2015-03-18 23:08:46.501250', 'NUÑEZ BARRIENTOS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (547, 'Daniel', 'sandavey@hotmail.com', NULL, 1, '2015-03-18 23:08:46.509789', '2015-03-18 23:08:46.509789', 'Sanchez Davey')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (548, 'Franco', 'francolden@gmail.com', NULL, 1, '2015-03-18 23:08:46.517777', '2015-03-18 23:08:46.517777', 'Colden')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (549, 'Karen', 'karengutmont@gmail.com', NULL, 1, '2015-03-18 23:08:46.526066', '2015-03-18 23:08:46.526066', 'Gutiérrez Dumont')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (550, 'AZBE', 'ricardodiparodi@gmail.com', NULL, 1, '2015-03-18 23:08:46.534193', '2015-03-18 23:08:46.534193', 'ROWA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (551, 'ampolletas', 'ampolletas@hotmail.com', NULL, 1, '2015-03-18 23:08:46.553184', '2015-03-18 23:08:46.553184', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (552, 'alvarovalenzuela', 'alvaro.vt@hotmail.com', NULL, 1, '2015-03-18 23:08:46.562698', '2015-03-18 23:08:46.562698', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (553, 'ANDRES', 'andreshermosilla@andreshermosilla.cl', NULL, 1, '2015-03-18 23:08:46.575494', '2015-03-18 23:08:46.575494', 'HERMOSILLA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (554, 'Camila', 'pinogay@hotmail.com', NULL, 1, '2015-03-18 23:08:46.596019', '2015-03-18 23:08:46.596019', 'Pino Gay')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (555, 'Constanza', 'constanzagreend@gmail.com', NULL, 1, '2015-03-18 23:08:46.605601', '2015-03-18 23:08:46.605601', 'Green Durán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (556, 'Bárbara', 'bjerezc@gmail.com', NULL, 1, '2015-03-18 23:08:46.613665', '2015-03-18 23:08:46.613665', 'Jerez Campos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (557, 'pancho', 'pintor@panchoalvarezflores.cl', NULL, 1, '2015-03-18 23:08:46.625647', '2015-03-18 23:08:46.625647', 'alvarez flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (558, 'Rodrigo', 'rsotovic@gmail.com', NULL, 1, '2015-03-18 23:08:46.647835', '2015-03-18 23:08:46.647835', 'Soto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (559, 'nicolas', 'nicolaswormull@gmail.com', NULL, 1, '2015-03-18 23:08:46.661798', '2015-03-18 23:08:46.661798', 'wormull')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (560, 'Jocelyne', 'jrdroguett@gmail.com', NULL, 1, '2015-03-18 23:08:46.670549', '2015-03-18 23:08:46.670549', 'Rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (561, 'javiera', 'javi.viaje@gmail.com', NULL, 1, '2015-03-18 23:08:46.694286', '2015-03-18 23:08:46.694286', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (562, 'pascuala', 'pascuala.lira@gmail.com', NULL, 1, '2015-03-18 23:08:46.753698', '2015-03-18 23:08:46.753698', 'lira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (563, 'Ruby', 'ruby.lizana@gmail.com', NULL, 1, '2015-03-18 23:08:46.763721', '2015-03-18 23:08:46.763721', 'Perez Lizana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (564, 'Ignacia', 'ignaciamesa@gmail.com', NULL, 1, '2015-03-18 23:08:46.773161', '2015-03-18 23:08:46.773161', 'Mesa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (565, 'jose', 'maderajose@hotmail.com', NULL, 1, '2015-03-18 23:08:46.781726', '2015-03-18 23:08:46.781726', 'madera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (566, 'Dartinella', 'dartinella.toselli@gmail.com', NULL, 1, '2015-03-18 23:08:46.789992', '2015-03-18 23:08:46.789992', 'Toselli')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (567, 'María', 'euge@akel.cl', NULL, 1, '2015-03-18 23:08:46.798269', '2015-03-18 23:08:46.798269', 'Eugenia Akel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (568, 'olga', 'olgawon@gmail.com', NULL, 1, '2015-03-18 23:08:46.812109', '2015-03-18 23:08:46.812109', 'won')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (569, 'Tamara', 'tamarapope@gmail.com', NULL, 1, '2015-03-18 23:08:46.825888', '2015-03-18 23:08:46.825888', 'Poblete Perines')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (570, 'ALEJANDRA', 'alefuenzalida2@gmail.com', NULL, 1, '2015-03-18 23:08:46.834584', '2015-03-18 23:08:46.834584', 'FUENZALIDA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (571, 'francisco', 'papasfritas52@hotmail.com', NULL, 1, '2015-03-18 23:08:46.843308', '2015-03-18 23:08:46.843308', 'papas frita')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (572, 'Bernardita', 'ruciadelica@gmail.com', NULL, 1, '2015-03-18 23:08:46.863669', '2015-03-18 23:08:46.863669', 'Bennett')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (573, 'Cecilia', 'csidiseno@gmail.com', NULL, 1, '2015-03-18 23:08:46.876134', '2015-03-18 23:08:46.876134', 'Gonzalez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (574, 'Icha', 'ichavizcarra@alfonsofernandez.cl', NULL, 1, '2015-03-18 23:08:46.884764', '2015-03-18 23:08:46.884764', 'Vizcarra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (575, 'Inviernogris', 'joana@telesurf.com.py', NULL, 1, '2015-03-18 23:08:46.897420', '2015-03-18 23:08:46.897420', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (576, 'SERGIO', 'sirredo@hotmail.com', NULL, 1, '2015-03-18 23:08:46.912073', '2015-03-18 23:08:46.912073', 'DIEGO COSTA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (577, 'Pamela', 'pamelavergara.o@gmail.com', NULL, 1, '2015-03-18 23:08:46.921170', '2015-03-18 23:08:46.921170', 'Vergara Ortiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (578, 'Barbara', 'barbara.dlj@gmail.com', NULL, 1, '2015-03-18 23:08:46.929462', '2015-03-18 23:08:46.929462', 'De la Jara More')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (579, 'M', 'marylinpardo@gmail.com', NULL, 1, '2015-03-18 23:08:46.938216', '2015-03-18 23:08:46.938216', 'A R I A N A P A R D O')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (580, 'ignacio', 'ignacio540@hotmail.com', NULL, 1, '2015-03-18 23:08:46.957647', '2015-03-18 23:08:46.957647', 'matias Sierra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (581, 'gaston', 'gaston_bertrand@hotmail.com', NULL, 1, '2015-03-18 23:08:46.976966', '2015-03-18 23:08:46.976966', 'bertrand garreton')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (582, 'Matias', 'matiasacunaramirez@gmail.com', NULL, 1, '2015-03-18 23:08:46.986119', '2015-03-18 23:08:46.986119', 'Acuña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (583, 'Daniel', 'lorenzodelbosque@gmail.com', NULL, 1, '2015-03-18 23:08:47.003059', '2015-03-18 23:08:47.003059', 'Otero Gleisner')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (584, 'BENJAMIN', 'ultraretro@chile.com', NULL, 1, '2015-03-18 23:08:47.021960', '2015-03-18 23:08:47.021960', 'RODRIGUEZ PENA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (585, 'Carlos', 'charlesbronson2000@hotmail.com', NULL, 1, '2015-03-18 23:08:47.037309', '2015-03-18 23:08:47.037309', 'Vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (586, 'gabriel', '000greyes@gmail.com', NULL, 1, '2015-03-18 23:08:47.060401', '2015-03-18 23:08:47.060401', 'reyes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (587, 'PRAVAZ', 'pravazflorencia@gmail.com', NULL, 1, '2015-03-18 23:08:47.070509', '2015-03-18 23:08:47.070509', 'Florencia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (588, 'GOMEZ', 'gomezbalbontin@hotmail.com', NULL, 1, '2015-03-18 23:08:47.079575', '2015-03-18 23:08:47.079575', 'BALBONTIN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (589, 'Antonio', 'nephilim3@wanadoo.es', NULL, 1, '2015-03-18 23:08:47.088199', '2015-03-18 23:08:47.088199', 'Jose Jimena')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (590, 'Fredy', 'elgrandemiurgo@hotmail.com', NULL, 1, '2015-03-18 23:08:47.098407', '2015-03-18 23:08:47.098407', 'Caballero Bernabé')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (591, 'Mario', 'mario-kexiste@hotmail.com', NULL, 1, '2015-03-18 23:08:47.113522', '2015-03-18 23:08:47.113522', 'Carrasco Guerra')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (592, '2004403349l4r2t4', 'laurentum_@hotmail.com', NULL, 1, '2015-03-18 23:08:47.122452', '2015-03-18 23:08:47.122452', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (593, 'Rosa', 'roxalux@gawab.com', NULL, 1, '2015-03-18 23:08:47.131489', '2015-03-18 23:08:47.131489', 'Paulina Arancibia Moya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (594, 'Matias', 'tansolounsermas@hotmail.com', NULL, 1, '2015-03-18 23:08:47.139924', '2015-03-18 23:08:47.139924', 'Sinigoi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (595, 'Daniela', 'kthrina@hotmail.com', NULL, 1, '2015-03-18 23:08:47.224313', '2015-03-18 23:08:47.224313', 'Valentini')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (596, 'belgica', 'belgi_ca@hotmail.com', NULL, 1, '2015-03-18 23:08:47.234041', '2015-03-18 23:08:47.234041', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (597, 'Daniela', 'danielahermosillaz@gmail.com', NULL, 1, '2015-03-18 23:08:47.242746', '2015-03-18 23:08:47.242746', 'Hermosilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (598, 'wenchuman', 'info@wenchuman.com', NULL, 1, '2015-03-18 23:08:47.250984', '2015-03-18 23:08:47.250984', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (599, 'ANA', 'anadeorbegoso@mac.com', NULL, 1, '2015-03-18 23:08:47.259577', '2015-03-18 23:08:47.259577', 'DE ORBEGOSO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (600, 'Pámela', 'pameq2@yahoo.com', NULL, 1, '2015-03-18 23:08:47.278181', '2015-03-18 23:08:47.278181', 'Marinkovic')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (601, 'Nelson', 'taller@taller56.cl', NULL, 1, '2015-03-18 23:08:47.289720', '2015-03-18 23:08:47.289720', 'Maglio Olate Figueroa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (602, 'Davis', 'davis@davislisboa.com', NULL, 1, '2015-03-18 23:08:47.299070', '2015-03-18 23:08:47.299070', 'Lisboa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (603, 'cynthia', 'abcynthie@gmail.com', NULL, 1, '2015-03-18 23:08:47.307821', '2015-03-18 23:08:47.307821', 'conrads')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (604, 'Oscar', 'om@oscar-morales.com', NULL, 1, '2015-03-18 23:08:47.315996', '2015-03-18 23:08:47.315996', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (605, 'Jimena', 'jimenatp@gmail.com', NULL, 1, '2015-03-18 23:08:47.327201', '2015-03-18 23:08:47.327201', 'Tapia Peña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (606, 'CELESTE', 'celeste_a14@hotmail.com', NULL, 1, '2015-03-18 23:08:47.336275', '2015-03-18 23:08:47.336275', 'NUÑEZ BASCUÑAN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (607, 'Nelson', 'guahunelson@hotmail.com', NULL, 1, '2015-03-18 23:08:47.344585', '2015-03-18 23:08:47.344585', 'Javier')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (608, 'gracia', 'castlegreis@hotmail.com', NULL, 1, '2015-03-18 23:08:47.355087', '2015-03-18 23:08:47.355087', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (609, 'lucho', 'luis@hotmail.com', NULL, 1, '2015-03-18 23:08:47.394460', '2015-03-18 23:08:47.394460', 'jara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (610, 'Maricarmen', 'zabeliz@gmail.com', NULL, 1, '2015-03-18 23:08:47.432467', '2015-03-18 23:08:47.432467', 'Zabaleta Elizondo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (611, 'Claudio', 'claudio.castel@gmail.com', NULL, 1, '2015-03-18 23:08:47.443810', '2015-03-18 23:08:47.443810', 'Castel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (612, 'lein', 'di.l.e.i.n@gmail.com', NULL, 1, '2015-03-18 23:08:47.466487', '2015-03-18 23:08:47.466487', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (613, 'B', 'pezoat113@hotmail.com', NULL, 1, '2015-03-18 23:08:47.481237', '2015-03-18 23:08:47.481237', 'o r i s P e z o a')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (614, 'Marisol', 'kichiemoka@gmail.com', NULL, 1, '2015-03-18 23:08:47.504208', '2015-03-18 23:08:47.504208', 'Carmona Sámano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (615, 'POLA', 'raimbow1979@hotmail.com', NULL, 1, '2015-03-18 23:08:47.519071', '2015-03-18 23:08:47.519071', 'MOULIAN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (616, 'Javiera', 'javiera_maria@yahoo.com', NULL, 1, '2015-03-18 23:08:47.527843', '2015-03-18 23:08:47.527843', 'del Campo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (617, 'nicolas', 'nicolasrico@latinmail.com', NULL, 1, '2015-03-18 23:08:47.544038', '2015-03-18 23:08:47.544038', 'rico N I C O L A S R I C O')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (618, 'lela', 'lela_sanchez@hotmail.com', NULL, 1, '2015-03-18 23:08:47.554914', '2015-03-18 23:08:47.554914', 'sanches')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (619, 'Esteban', 'estebanorellana1@gmail.com', NULL, 1, '2015-03-18 23:08:47.565215', '2015-03-18 23:08:47.565215', 'Orellana A')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (620, 'CAMILAOPAZO', 'camilaopazo@gmail.com', NULL, 1, '2015-03-18 23:08:47.574024', '2015-03-18 23:08:47.574024', '')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (621, 'PA', 'paulinaurzuag@hotmail.com', NULL, 1, '2015-03-18 23:08:47.592152', '2015-03-18 23:08:47.592152', 'U L I N A U R Z U A')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (622, 'Trinidad', 'trinidad.bezanilla@gmail.com', NULL, 1, '2015-03-18 23:08:47.600697', '2015-03-18 23:08:47.600697', 'Bezanilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (623, 'Geredia', 'Geredia@yahoo.es', NULL, 1, '2015-03-18 23:08:47.608966', '2015-03-18 23:08:47.608966', 'Collao')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (624, 'luisa', 'info@galeriartesteladelvalle.cl', NULL, 1, '2015-03-18 23:08:47.618400', '2015-03-18 23:08:47.618400', 'estela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (625, 'Dieko', 'dieko.dieko@hotmail.com', NULL, 1, '2015-03-18 23:08:47.627107', '2015-03-18 23:08:47.627107', 'Cortés M')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (626, 'claudia', 'bitranclaudia@hotmail.com', NULL, 1, '2015-03-18 23:08:47.643088', '2015-03-18 23:08:47.643088', 'bitran')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (627, 'Jorge', 'grupofoto@terra.cl', NULL, 1, '2015-03-18 23:08:47.651862', '2015-03-18 23:08:47.651862', 'Alegría Schoppe')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (628, 'Gust', 'gustazali@hotmail.com', NULL, 1, '2015-03-18 23:08:47.660119', '2015-03-18 23:08:47.660119', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (629, 'IULIANA', 'iulianagh@gmail.com', NULL, 1, '2015-03-18 23:08:47.668999', '2015-03-18 23:08:47.668999', 'GHEORGHE')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (630, 'Mariana', 'ovalle.mariana@gmail.com', NULL, 1, '2015-03-18 23:08:47.678133', '2015-03-18 23:08:47.678133', 'Ovalle')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (631, 'Giovanni', 'fraygino@yahoo.es', NULL, 1, '2015-03-18 23:08:47.692062', '2015-03-18 23:08:47.692062', 'Gellona')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (632, 'Nuria', 'nusof.gonzalez@gmail.com', NULL, 1, '2015-03-18 23:08:47.703548', '2015-03-18 23:08:47.703548', 'Sofía')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (633, 'nagluck', 'pulga_supersonic@hotmail.com', NULL, 1, '2015-03-18 23:08:47.717074', '2015-03-18 23:08:47.717074', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (634, 'Sara', 'saraoliviaf@gmail.com', NULL, 1, '2015-03-18 23:08:47.726135', '2015-03-18 23:08:47.726135', 'Olivia Fuentes Hernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (635, 'Nebs', 'nebspereira@gmail.com', NULL, 1, '2015-03-18 23:08:47.744227', '2015-03-18 23:08:47.744227', 'Pereira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (636, 'mario', 'patekong@gmail.com', NULL, 1, '2015-03-18 23:08:47.758365', '2015-03-18 23:08:47.758365', 'ibarra catalán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (637, 'Héctor', 'hh@hecherrod.com', NULL, 1, '2015-03-18 23:08:47.777242', '2015-03-18 23:08:47.777242', 'Herrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (638, 'carla', 'karlindacl@yahoo.es', NULL, 1, '2015-03-18 23:08:47.847766', '2015-03-18 23:08:47.847766', 'vaccaro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (639, 'Carmen', 'frivoholic@hotmail.com', NULL, 1, '2015-03-18 23:08:47.865751', '2015-03-18 23:08:47.865751', 'Gloria Faundez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (640, 'DIEGO', 'diecroid@hotmail.com', NULL, 1, '2015-03-18 23:08:47.883079', '2015-03-18 23:08:47.883079', 'JURADO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (641, 'Daniel', 'nackatack@gmail.com', NULL, 1, '2015-03-18 23:08:47.909614', '2015-03-18 23:08:47.909614', 'Serrano')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (642, 'migue', 'doncuatico@yahoo.com', NULL, 1, '2015-03-18 23:08:47.921505', '2015-03-18 23:08:47.921505', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (643, 'Karen', 'karenopolis@hotmail.com', NULL, 1, '2015-03-18 23:08:47.944363', '2015-03-18 23:08:47.944363', 'Riquelme')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (644, 'C', 'borkowsky.c@gmail.com', NULL, 1, '2015-03-18 23:08:47.962050', '2015-03-18 23:08:47.962050', 'a m i l a F r a n c i s c a R o m e')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (645, 'Carlos', 'silla-piramide@hotmail.com', NULL, 1, '2015-03-18 23:08:47.981161', '2015-03-18 23:08:47.981161', 'Marín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (646, 'MACA', 'maquitaaa@gmail.com', NULL, 1, '2015-03-18 23:08:48.010647', '2015-03-18 23:08:48.010647', 'SPNZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (647, 'Lylibeth', 'lylingalls@gmail.com', NULL, 1, '2015-03-18 23:08:48.020131', '2015-03-18 23:08:48.020131', 'Saavedra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (648, 'Ana', 'anaalenso@gmail.com', NULL, 1, '2015-03-18 23:08:48.029214', '2015-03-18 23:08:48.029214', 'Alenso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (649, 'afornickx', 'afornickx@hotmail.com', NULL, 1, '2015-03-18 23:08:48.048601', '2015-03-18 23:08:48.048601', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (650, 'indie', 'darksidehacker@hotmail.com', NULL, 1, '2015-03-18 23:08:48.077443', '2015-03-18 23:08:48.077443', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (651, 'Daniela', 'openclown@gmail.com', NULL, 1, '2015-03-18 23:08:48.093363', '2015-03-18 23:08:48.093363', 'Schwarzenberg')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (652, 'Javiera', 'javieraovallesazie@gmail.com', NULL, 1, '2015-03-18 23:08:48.119857', '2015-03-18 23:08:48.119857', 'Ovalle Sazie')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (653, 'Fernanda', 'fllamazalesa@gmail.com', NULL, 1, '2015-03-18 23:08:48.132910', '2015-03-18 23:08:48.132910', 'Llamazales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (654, 'nicole', 'nicoletijoux@yahoo.com', NULL, 1, '2015-03-18 23:08:48.147737', '2015-03-18 23:08:48.147737', 'tijoux')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (655, 'Daniela', 'lenkalaya@gmail.com', NULL, 1, '2015-03-18 23:08:48.160978', '2015-03-18 23:08:48.160978', 'Laya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (656, 'sebastian', 'sebastian.silvat@gmail.com', NULL, 1, '2015-03-18 23:08:48.177726', '2015-03-18 23:08:48.177726', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (657, 'Beatriz', 'beatriz.alarconh@hotmail.com', NULL, 1, '2015-03-18 23:08:48.199257', '2015-03-18 23:08:48.199257', 'Alarcon Hardy')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (658, 'rock', 'carola_dz@yahoo.es', NULL, 1, '2015-03-18 23:08:48.215705', '2015-03-18 23:08:48.215705', 'art roll')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (659, 'Gastón', 'bpitch.plop@gmail.com', NULL, 1, '2015-03-18 23:08:48.242739', '2015-03-18 23:08:48.242739', 'Vejar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (660, 'a', 'contacto@alejandraswett.cl', NULL, 1, '2015-03-18 23:08:48.257860', '2015-03-18 23:08:48.257860', 'L e j a n d r a S w e T T')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (661, 'christian', 'perezbach@gmail.com', NULL, 1, '2015-03-18 23:08:48.266835', '2015-03-18 23:08:48.266835', 'perez bachmann')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (662, 'r', 'rosajuana@hotmail.com', NULL, 1, '2015-03-18 23:08:48.277334', '2015-03-18 23:08:48.277334', 'o s a r i o r i v e r a')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (663, 'Thomas', 'Thomasschatte@gmail.com', NULL, 1, '2015-03-18 23:08:48.288688', '2015-03-18 23:08:48.288688', 'Schatte')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (664, 'fco', 'fcotorres9@gmail.com', NULL, 1, '2015-03-18 23:08:48.308787', '2015-03-18 23:08:48.308787', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (665, 'carolina', 'cguzman_12@hotmail.com', NULL, 1, '2015-03-18 23:08:48.324450', '2015-03-18 23:08:48.324450', 'guzman')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (666, 'Daniela', 'daniela-sh@hotmail.com', NULL, 1, '2015-03-18 23:08:48.333944', '2015-03-18 23:08:48.333944', 'Santelices')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (667, 'cristián', 'tatanjocker@hotmail.com', NULL, 1, '2015-03-18 23:08:48.347857', '2015-03-18 23:08:48.347857', 'pinet')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (668, 'Salvador', 'sastavros@yahoo.es', NULL, 1, '2015-03-18 23:08:48.365467', '2015-03-18 23:08:48.365467', 'Stabros Reyes Coloma')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (669, 'valentina', 'pucca_lynch@hotmail.com', NULL, 1, '2015-03-18 23:08:48.374328', '2015-03-18 23:08:48.374328', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (670, 'Orlando', 'artelauri@hotmail.com', NULL, 1, '2015-03-18 23:08:48.382961', '2015-03-18 23:08:48.382961', 'Díaz H')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (671, 'Paula', 'paulapinturas@yahoo.com', NULL, 1, '2015-03-18 23:08:48.398660', '2015-03-18 23:08:48.398660', 'Aguirre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (672, 'basco', 'bascovazko@gmail.com', NULL, 1, '2015-03-18 23:08:48.421953', '2015-03-18 23:08:48.421953', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (673, 'Nicolas', 'entrelaspiedras@gmail.com', NULL, 1, '2015-03-18 23:08:48.432408', '2015-03-18 23:08:48.432408', 'Sanchez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (674, 'Alexa', 'alilayu@gmail.com', NULL, 1, '2015-03-18 23:08:48.442087', '2015-03-18 23:08:48.442087', 'Lilayú')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (675, 'Romina', 'romriquelm@yahoo.es', NULL, 1, '2015-03-18 23:08:48.458490', '2015-03-18 23:08:48.458490', 'Riquelme')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (676, 'francisco', 'franciscoolivoslallave@gmail.com', NULL, 1, '2015-03-18 23:08:48.467218', '2015-03-18 23:08:48.467218', 'lallave')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (677, 'Nibaldo', 'betinomail@gmail.com', NULL, 1, '2015-03-18 23:08:48.476840', '2015-03-18 23:08:48.476840', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (678, 'Alison', 'notiene@hotmai.com', NULL, 1, '2015-03-18 23:08:48.499066', '2015-03-18 23:08:48.499066', 'Haltenhof')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (679, 'Max', 'lamantiz@gmail.com', NULL, 1, '2015-03-18 23:08:48.509486', '2015-03-18 23:08:48.509486', 'Rosenthal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (680, 'Lorena', 'lostilos@gmail.com', NULL, 1, '2015-03-18 23:08:48.518062', '2015-03-18 23:08:48.518062', 'Muñoz Bahamondes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (681, 'Valeria', 'vvjarami@uc.cl', NULL, 1, '2015-03-18 23:08:48.526236', '2015-03-18 23:08:48.526236', 'Jaramillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (682, 'Alejandro', 'unodelgado@gmail.com', NULL, 1, '2015-03-18 23:08:48.548162', '2015-03-18 23:08:48.548162', 'Delgado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (683, 'Veronica', 'veroterrazas@yahoo.com', NULL, 1, '2015-03-18 23:08:48.565913', '2015-03-18 23:08:48.565913', 'Terrazas G')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (684, 'the', 'trineos@gmail.com', NULL, 1, '2015-03-18 23:08:48.588306', '2015-03-18 23:08:48.588306', 'pasto island')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (685, 'Eduardo', 'kradiopictures@hotmail.com', NULL, 1, '2015-03-18 23:08:48.610574', '2015-03-18 23:08:48.610574', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (686, 'Andrés', 'prensa@norteamericano.cl', NULL, 1, '2015-03-18 23:08:48.625796', '2015-03-18 23:08:48.625796', 'Bermúdez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (687, 'Diego', 'diegomille@gmail.com', NULL, 1, '2015-03-18 23:08:48.660658', '2015-03-18 23:08:48.660658', 'Mille Notario')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (688, 'Loreto', 'loretoriverosf@gmail.com', NULL, 1, '2015-03-18 23:08:48.677513', '2015-03-18 23:08:48.677513', 'Riveros Fraser')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (689, 'Héctor', 'clamp_pcx@hotmail.com', NULL, 1, '2015-03-18 23:08:48.692442', '2015-03-18 23:08:48.692442', 'Matamala Jara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (690, 'Macrodosis', 'macrodosis@yahoo.es', NULL, 1, '2015-03-18 23:08:48.727827', '2015-03-18 23:08:48.727827', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (691, 'Ronny', 'muertearonny@hotmail.com', NULL, 1, '2015-03-18 23:08:48.756674', '2015-03-18 23:08:48.756674', 'Venegas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (692, 'Cecilia', 'cega@vtr.net', NULL, 1, '2015-03-18 23:08:48.773435', '2015-03-18 23:08:48.773435', 'Galleguillos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (693, 'Roxana', 'no_confies_n_nadie@hotmail.com', NULL, 1, '2015-03-18 23:08:48.781351', '2015-03-18 23:08:48.781351', 'Olmos Zavala')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (694, 'Tatiana', 'tatianasarda@gmail.com', NULL, 1, '2015-03-18 23:08:48.790357', '2015-03-18 23:08:48.790357', 'Sardá')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (695, 'jose', 'pintorflores@hotmail.com', NULL, 1, '2015-03-18 23:08:48.807832', '2015-03-18 23:08:48.807832', 'tomas bastias')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (696, 'LA', 'ladoenda@gmail.com', NULL, 1, '2015-03-18 23:08:48.831324', '2015-03-18 23:08:48.831324', 'DOENDA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (697, 'Atelier', 'sutulov@vtr.net', NULL, 1, '2015-03-18 23:08:48.841143', '2015-03-18 23:08:48.841143', 'Alexander Sutulov')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (698, 'Pedro', 'PEDROJASBON@YAHOO.ES', NULL, 1, '2015-03-18 23:08:48.856592', '2015-03-18 23:08:48.856592', 'José Ibañez Torres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (699, 'Monica', 'elmataone@material.cl, gonzamatamala@gmail.com', NULL, 1, '2015-03-18 23:08:48.865913', '2015-03-18 23:08:48.865913', 'Ortiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (700, 'Radoslav', 'cinecirco@hotmail.com', NULL, 1, '2015-03-18 23:08:48.875404', '2015-03-18 23:08:48.875404', 'Rakela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (701, 'Gonzalo', 'geraldo.gonzalo@gmail.com', NULL, 1, '2015-03-18 23:08:48.884220', '2015-03-18 23:08:48.884220', 'Geraldo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (702, 'Fabián', 'lumosidad@hotmail.com', NULL, 1, '2015-03-18 23:08:48.921565', '2015-03-18 23:08:48.921565', 'Mora')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (703, 'Francisca', 'franciscarobles@gmail.com', NULL, 1, '2015-03-18 23:08:48.948936', '2015-03-18 23:08:48.948936', 'Robles')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (704, 'hola', 'vbrichett@yahoo.com', NULL, 1, '2015-03-18 23:08:48.958762', '2015-03-18 23:08:48.958762', 'hola')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (705, 'FUNDACION', 'info@fundacioncarpetania.com', NULL, 1, '2015-03-18 23:08:48.973353', '2015-03-18 23:08:48.973353', 'CARPETANIA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (706, 'Rodrigo', 'rodrigocien@gmail.com', NULL, 1, '2015-03-18 23:08:48.993602', '2015-03-18 23:08:48.993602', 'Cienfuegos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (707, 'Pamela', 'panemaa@gmail.com', NULL, 1, '2015-03-18 23:08:49.021801', '2015-03-18 23:08:49.021801', 'Alvarado Álvarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (708, 'María', 'mignaciam7@hotmail.com', NULL, 1, '2015-03-18 23:08:49.065419', '2015-03-18 23:08:49.065419', 'Ignacia Muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (709, 'César', 'encuadre.x@gmail.com', NULL, 1, '2015-03-18 23:08:49.093727', '2015-03-18 23:08:49.093727', 'Vargas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (710, 'Jessica', 'jaskask.zeth@gmail.com', NULL, 1, '2015-03-18 23:08:49.116362', '2015-03-18 23:08:49.116362', 'Parra Nowajewski')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (711, 'Laporte', 'la_porte_@hotmail.com', NULL, 1, '2015-03-18 23:08:49.138991', '2015-03-18 23:08:49.138991', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (712, 'plantaverde', 'tooatafune@hotmail.com', NULL, 1, '2015-03-18 23:08:49.160680', '2015-03-18 23:08:49.160680', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (713, 'serafin', 'serafico0216@yohoo.com', NULL, 1, '2015-03-18 23:08:49.177475', '2015-03-18 23:08:49.177475', 'romero wbake')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (714, 'Camila', 'ca_mi86@hotmail.com', NULL, 1, '2015-03-18 23:08:49.186141', '2015-03-18 23:08:49.186141', 'Cafatti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (715, 'Pilar', 'pilar.castro.e@gmail.com', NULL, 1, '2015-03-18 23:08:49.210229', '2015-03-18 23:08:49.210229', 'Castro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (716, 'Felipe', 'felipemuhr@gmail.com', NULL, 1, '2015-03-18 23:08:49.484619', '2015-03-18 23:08:49.484619', 'Muhr')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (717, 'marcela', 'dark.chancellor@yahoo.com', NULL, 1, '2015-03-18 23:08:49.494788', '2015-03-18 23:08:49.494788', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (718, 'Isidora', 'insistidora@gmail.com', NULL, 1, '2015-03-18 23:08:49.503202', '2015-03-18 23:08:49.503202', 'Martínez Calvin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (719, 'Francisca', 'francisca.onetto@gmail.com', NULL, 1, '2015-03-18 23:08:49.511368', '2015-03-18 23:08:49.511368', 'Onetto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (720, 'Daniel', 'portishead_92@hotmail.com', NULL, 1, '2015-03-18 23:08:49.519118', '2015-03-18 23:08:49.519118', 'Quevedo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (721, 'Paulina', 'larepauli@gmail.com', NULL, 1, '2015-03-18 23:08:49.538415', '2015-03-18 23:08:49.538415', 'Altamirano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (722, 'cristian', 'cristianguionbajocero@gmail.com', NULL, 1, '2015-03-18 23:08:49.546764', '2015-03-18 23:08:49.546764', 'salinas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (723, 'julio', 'peper@yahoo.com', NULL, 1, '2015-03-18 23:08:49.555042', '2015-03-18 23:08:49.555042', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (724, 'hernan', 'uvty03@latinmail.com', NULL, 1, '2015-03-18 23:08:49.563719', '2015-03-18 23:08:49.563719', 'droguett')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (725, 'Leandro', 'leandrogp13@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:49.572180', '2015-03-18 23:08:49.572180', 'Garcia Pimentel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (726, 'paloma', 'animaerea@hotmail.com', NULL, 1, '2015-03-18 23:08:49.587761', '2015-03-18 23:08:49.587761', 'palomino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (727, 'CLAUDIA', 'fotografa_clausan@yahoo.es', NULL, 1, '2015-03-18 23:08:49.596422', '2015-03-18 23:08:49.596422', 'SANCHEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (728, 'Elias', 'eliasesuninventodeelias@gmail.com', NULL, 1, '2015-03-18 23:08:49.604236', '2015-03-18 23:08:49.604236', 'Santis')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (729, 'Anna', 'spagnuoloart@tiscali.it', NULL, 1, '2015-03-18 23:08:49.612578', '2015-03-18 23:08:49.612578', 'Teresa Spagnuolo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (730, 'jekar', 'jekar.edge@hotmail.com', NULL, 1, '2015-03-18 23:08:49.621446', '2015-03-18 23:08:49.621446', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (731, 'Constanza', 'kalogatia@gmail.com', NULL, 1, '2015-03-18 23:08:49.637903', '2015-03-18 23:08:49.637903', 'Figueroa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (732, 'EL', 'matiasolar@gmail.com', NULL, 1, '2015-03-18 23:08:49.646070', '2015-03-18 23:08:49.646070', 'MATO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (733, 'José', 'guajirovero@hotmail.com', NULL, 1, '2015-03-18 23:08:49.654680', '2015-03-18 23:08:49.654680', 'Juan Mora')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (734, 'nelson', 'jahmekia@gmail.com', NULL, 1, '2015-03-18 23:08:49.663192', '2015-03-18 23:08:49.663192', 'moya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (735, 'SEBASTIAN', 'sagito13@gmail.com', NULL, 1, '2015-03-18 23:08:49.672221', '2015-03-18 23:08:49.672221', 'GEELL')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (736, 'colectivo', 'colectivoartisticotoma@gmail.com', NULL, 1, '2015-03-18 23:08:49.687736', '2015-03-18 23:08:49.687736', 'artistico TOMA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (737, '.', 'emilita.mundt@gmail.com', NULL, 1, '2015-03-18 23:08:49.696211', '2015-03-18 23:08:49.696211', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (738, 'siroco', 'alejandro_diazperez@hotmail.com', NULL, 1, '2015-03-18 23:08:49.704831', '2015-03-18 23:08:49.704831', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (739, 'Hugo', 'leonellon@gmail.com', NULL, 1, '2015-03-18 23:08:49.712448', '2015-03-18 23:08:49.712448', 'Leonello Núñez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (740, 'Alejandro', 'mentejano@yahoo.es', NULL, 1, '2015-03-18 23:08:49.721700', '2015-03-18 23:08:49.721700', 'JANO Ríos A')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (741, 'Karen', 'karenpazan@gmail.com', NULL, 1, '2015-03-18 23:08:49.737741', '2015-03-18 23:08:49.737741', 'Pazan Valencia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (742, 'alma', 'imagenmortal@mail.com', NULL, 1, '2015-03-18 23:08:49.745580', '2015-03-18 23:08:49.745580', 'paz riquelme')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (743, 'claudio', 'chacografix@gmail.com', NULL, 1, '2015-03-18 23:08:49.754250', '2015-03-18 23:08:49.754250', 'ovando')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (744, 'CvL', 'goghsgirl@gmail.com', NULL, 1, '2015-03-18 23:08:49.762457', '2015-03-18 23:08:49.762457', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (745, 'Jessica', 'jrodriguezenglish@gmail.com', NULL, 1, '2015-03-18 23:08:49.771813', '2015-03-18 23:08:49.771813', 'Rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (746, 'Santiago', 'smuruagc@yahoo.com', NULL, 1, '2015-03-18 23:08:49.787844', '2015-03-18 23:08:49.787844', 'Muruaga Carrere')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (747, 'Alma', 'imagenmortal@gmail.com', NULL, 1, '2015-03-18 23:08:49.873808', '2015-03-18 23:08:49.873808', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (748, 'xtra', 'z6qjvm4rxn9pc8h@golfilla.info', NULL, 1, '2015-03-18 23:08:49.887202', '2015-03-18 23:08:49.887202', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (749, 'heinekt', 'nebul_art@hotmail.com', NULL, 1, '2015-03-18 23:08:49.896246', '2015-03-18 23:08:49.896246', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (750, 'Macarena', 'videomaca@gmail.com', NULL, 1, '2015-03-18 23:08:49.904550', '2015-03-18 23:08:49.904550', 'Molina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (751, 'Rodrigo', 'anguita.rodrigo@gmail.com', NULL, 1, '2015-03-18 23:08:49.913025', '2015-03-18 23:08:49.913025', 'Anguita')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (752, 'Rodrigo', 'rodcasanova@vtr.net', NULL, 1, '2015-03-18 23:08:49.921782', '2015-03-18 23:08:49.921782', 'Casanova')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (753, 'maya', 'mayaescobar@gmail.com', NULL, 1, '2015-03-18 23:08:49.936887', '2015-03-18 23:08:49.936887', 'escobar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (754, 'Laura', 'laualtimir@hotmail.com', NULL, 1, '2015-03-18 23:08:49.945188', '2015-03-18 23:08:49.945188', 'Altimir Colao')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (755, 'mono', 'ren134@hotmail.com', NULL, 1, '2015-03-18 23:08:49.954022', '2015-03-18 23:08:49.954022', 'rata matamala')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (756, 'Carolina', 'caro_domo_@hotmail.com', NULL, 1, '2015-03-18 23:08:49.962710', '2015-03-18 23:08:49.962710', 'Moreno Bustamante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (757, 'Gabriela', 'vanalase@gmail.com', NULL, 1, '2015-03-18 23:08:49.971196', '2015-03-18 23:08:49.971196', 'Solís')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (758, 'F.W.DISEL', 'peliculachilena@yahoo.es', NULL, 1, '2015-03-18 23:08:49.987010', '2015-03-18 23:08:49.987010', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (759, 'Claudia', 'clula14@hotmail.com', NULL, 1, '2015-03-18 23:08:49.995429', '2015-03-18 23:08:49.995429', 'Abeliuk')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (760, 'consuelo', 'consueloca_stillo@hotmail.com', NULL, 1, '2015-03-18 23:08:50.003734', '2015-03-18 23:08:50.003734', 'castillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (761, 'FABIOLA', 'fabiolaalarcon@live.cl', NULL, 1, '2015-03-18 23:08:50.013039', '2015-03-18 23:08:50.013039', 'ALARCON')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (762, 'Juanpa', 'juanpa_gospel@hotmail.com', NULL, 1, '2015-03-18 23:08:50.021717', '2015-03-18 23:08:50.021717', 'Gomez Garzon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (763, 'Jimena', 'jimenacastrov@vtr.net', NULL, 1, '2015-03-18 23:08:50.036935', '2015-03-18 23:08:50.036935', 'Castro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (764, 'Valeria', 'avacolores@hotmail.com', NULL, 1, '2015-03-18 23:08:50.045440', '2015-03-18 23:08:50.045440', 'Mendoza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (765, 'Jose', 'rivasfreire@gmail.com', NULL, 1, '2015-03-18 23:08:50.054350', '2015-03-18 23:08:50.054350', 'Luis Rivas freire')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (766, 'Abraham', 'Jackson@yahoo.com', NULL, 1, '2015-03-18 23:08:50.062987', '2015-03-18 23:08:50.062987', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (767, 'rodrigo', 'gh.rodrigo@gmail.com', NULL, 1, '2015-03-18 23:08:50.071396', '2015-03-18 23:08:50.071396', 'mancilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (768, 'maite', 'maitemaria06@yahoo.com', NULL, 1, '2015-03-18 23:08:50.087370', '2015-03-18 23:08:50.087370', 'zabala')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (769, 'Ricardo', 'Ricardo@gmail.com', NULL, 1, '2015-03-18 23:08:50.095877', '2015-03-18 23:08:50.095877', 'Goebbles')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (770, 'claudio', 'landejavu@gmail.com', NULL, 1, '2015-03-18 23:08:50.103610', '2015-03-18 23:08:50.103610', 'olmos alegria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (771, 'CARHUM', 'carhum007@hotmail.com', NULL, 1, '2015-03-18 23:08:50.111467', '2015-03-18 23:08:50.111467', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (772, 'Héctor', 'hector.menendez@gmail.com', NULL, 1, '2015-03-18 23:08:50.119750', '2015-03-18 23:08:50.119750', 'Menéndez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (773, 'pascual', 'musicapez@gmail.com', NULL, 1, '2015-03-18 23:08:50.138541', '2015-03-18 23:08:50.138541', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (774, 'Scrab', 'scrabscrey@gmail.com', NULL, 1, '2015-03-18 23:08:50.147907', '2015-03-18 23:08:50.147907', 'Screy')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (775, 'Pablo', 'dieztoros@gmail.com', NULL, 1, '2015-03-18 23:08:50.156609', '2015-03-18 23:08:50.156609', 'Jim')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (776, 'HUGO', 'fugonavaz@gmail.com', NULL, 1, '2015-03-18 23:08:50.165235', '2015-03-18 23:08:50.165235', 'NAVARRO ZUÑIGA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (777, 'Kathy', 'kathydunker@esfera.cl', NULL, 1, '2015-03-18 23:08:50.173693', '2015-03-18 23:08:50.173693', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (778, 'Jorge', 'catoniart@gmail.com', NULL, 1, '2015-03-18 23:08:50.187190', '2015-03-18 23:08:50.187190', 'Catoni')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (779, 'Marina', 'oseamarilyn@hotmail.com', NULL, 1, '2015-03-18 23:08:50.195114', '2015-03-18 23:08:50.195114', 'Muñoz García')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (780, 'Marcos', 'marcos8328@hotmail.com', NULL, 1, '2015-03-18 23:08:50.203520', '2015-03-18 23:08:50.203520', 'Martinez Perez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (781, 'KM42', 'corredorkm42@gmail.com', NULL, 1, '2015-03-18 23:08:50.212085', '2015-03-18 23:08:50.212085', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (782, 'Habacuc', 'habacuc.habacuc@gmail.com', NULL, 1, '2015-03-18 23:08:50.220987', '2015-03-18 23:08:50.220987', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (783, 'gabriela', 'gabyf6x_x@hotmail.com', NULL, 1, '2015-03-18 23:08:50.237043', '2015-03-18 23:08:50.237043', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (784, 'iria', 'iriachousar@hotmail.com', NULL, 1, '2015-03-18 23:08:50.245811', '2015-03-18 23:08:50.245811', 'chousa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (785, 'Ricardo', 'okt8pus@gmail.com', NULL, 1, '2015-03-18 23:08:50.253844', '2015-03-18 23:08:50.253844', 'Tapia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (786, 'CUERPO', 'cuerpomanoseado@gmail.com', NULL, 1, '2015-03-18 23:08:50.262674', '2015-03-18 23:08:50.262674', 'MANOSEADO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (787, 'andres', 'heinsenandres@hotmail.com', NULL, 1, '2015-03-18 23:08:50.271712', '2015-03-18 23:08:50.271712', 'heinsen planella')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (788, 'catalina', 'catamuda@hotmail.com', NULL, 1, '2015-03-18 23:08:50.286718', '2015-03-18 23:08:50.286718', 'bustos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (789, 'vincent', 'glassfetus@hotmail.com', NULL, 1, '2015-03-18 23:08:50.295587', '2015-03-18 23:08:50.295587', 'didier')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (790, 'Vicente', 'vicentemarti101@hotmail.com', NULL, 1, '2015-03-18 23:08:50.316970', '2015-03-18 23:08:50.316970', 'Marti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (791, 'yair', 'yair_lepra_2003@hotmail.com', NULL, 1, '2015-03-18 23:08:50.330460', '2015-03-18 23:08:50.330460', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (792, 'Aquiles', 'convencionalmente@gmail.com', NULL, 1, '2015-03-18 23:08:50.341657', '2015-03-18 23:08:50.341657', 'Boyd')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (793, 'antoniacruz', 'antoniacruzs@hotmail.com', NULL, 1, '2015-03-18 23:08:50.349684', '2015-03-18 23:08:50.349684', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (794, 'Konstanza', 'capilla648@gmail.com', NULL, 1, '2015-03-18 23:08:50.410621', '2015-03-18 23:08:50.410621', 'Scheihing')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (795, 'james', 'james.colleman@gmail.com', NULL, 1, '2015-03-18 23:08:50.429712', '2015-03-18 23:08:50.429712', 'colleman')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (796, 'cesar', 'cesargaetea@gmail.com', NULL, 1, '2015-03-18 23:08:50.439209', '2015-03-18 23:08:50.439209', 'alonso gaete')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (797, 'Fernando', 'ppaannttoojjaa@yahoo.es', NULL, 1, '2015-03-18 23:08:50.450417', '2015-03-18 23:08:50.450417', 'Franco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (798, 'ignacio', 'i_gatica71@hotmail.com', NULL, 1, '2015-03-18 23:08:50.470442', '2015-03-18 23:08:50.470442', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (799, 'Ighor', 'ighor.alarcon@gmail.com', NULL, 1, '2015-03-18 23:08:50.479383', '2015-03-18 23:08:50.479383', 'Alarcón')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (800, 'Pamela', 'panemaa@yahoo.com', NULL, 1, '2015-03-18 23:08:50.487929', '2015-03-18 23:08:50.487929', 'A, A')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (801, 'Pamela', 'panemaa@hotmail.com', NULL, 1, '2015-03-18 23:08:50.496514', '2015-03-18 23:08:50.496514', 'a. a')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (802, 'CAMPANA', 'elcantodelasplantas@gmail.com', NULL, 1, '2015-03-18 23:08:50.507082', '2015-03-18 23:08:50.507082', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (803, 'Cristóbal', 'cristobal@cristobalcea.net', NULL, 1, '2015-03-18 23:08:50.519438', '2015-03-18 23:08:50.519438', 'Cea Sánchez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (804, 'Jorge', 'rosensvaigpintor@gmail.com', NULL, 1, '2015-03-18 23:08:50.543458', '2015-03-18 23:08:50.543458', 'Rosensvaig')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (805, 'MJESUS', 'arte.sonado@hotmail.com', NULL, 1, '2015-03-18 23:08:50.554120', '2015-03-18 23:08:50.554120', 'HERNANDEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (806, 'Manuel', 'ossan73@hotmail.com', NULL, 1, '2015-03-18 23:08:50.568869', '2015-03-18 23:08:50.568869', 'Ossandón')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (807, 'Karin', 'kwehrhahn@gmail.com', NULL, 1, '2015-03-18 23:08:50.577852', '2015-03-18 23:08:50.577852', 'Wehrhahn')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (808, 'jesus', 'jebusacido@hotmail.com', NULL, 1, '2015-03-18 23:08:50.586114', '2015-03-18 23:08:50.586114', 'ivan ortega suckel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (809, 'Cristian', 'chiriubses@gmail.com', NULL, 1, '2015-03-18 23:08:50.594635', '2015-03-18 23:08:50.594635', 'Elizalde')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (810, 'Fredo', 'phantom_mg42@hotmail.com', NULL, 1, '2015-03-18 23:08:50.603169', '2015-03-18 23:08:50.603169', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (811, 'francisca', 'francisca_lastra_07_2007@yahoo.es', NULL, 1, '2015-03-18 23:08:50.619764', '2015-03-18 23:08:50.619764', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (812, 'Fabiola', 'yuyito345@hotmail.com', NULL, 1, '2015-03-18 23:08:50.627816', '2015-03-18 23:08:50.627816', 'Caro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (813, 'Mariano', 'shinkawa_master@hotmail.com', NULL, 1, '2015-03-18 23:08:50.636150', '2015-03-18 23:08:50.636150', 'Bilyk')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (814, 'jaime', 'xiomaraltda@tutopia.com', NULL, 1, '2015-03-18 23:08:50.644777', '2015-03-18 23:08:50.644777', 'huerta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (815, 'Belen', 'belenb_16@hotmail.com', NULL, 1, '2015-03-18 23:08:50.653880', '2015-03-18 23:08:50.653880', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (816, 'Francisca', 'fran.vilches@gmail.com', NULL, 1, '2015-03-18 23:08:50.668420', '2015-03-18 23:08:50.668420', 'Vilches')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (817, 'Animita', 'sombrasyluces@gmail.com', NULL, 1, '2015-03-18 23:08:50.677948', '2015-03-18 23:08:50.677948', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (818, 'veronica', 'vaicyber@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:50.685950', '2015-03-18 23:08:50.685950', 'astorga inostroza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (819, 'Luna', 'unravelheart@msn.com', NULL, 1, '2015-03-18 23:08:50.695019', '2015-03-18 23:08:50.695019', 'Diaz Segovia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (820, 'Pedro', 'pedrofodich13@gmail.com', NULL, 1, '2015-03-18 23:08:50.703592', '2015-03-18 23:08:50.703592', 'Fodich')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (821, 'trinidad', 'trinitronia@hotmail.com', NULL, 1, '2015-03-18 23:08:50.718745', '2015-03-18 23:08:50.718745', 'pacheco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (822, 'nestor', 'gatostar777@hotmail.com', NULL, 1, '2015-03-18 23:08:50.727688', '2015-03-18 23:08:50.727688', 'ayala')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (823, 'ALEJANDRO', 'alejandrocabeza1@gmail.com', NULL, 1, '2015-03-18 23:08:50.736762', '2015-03-18 23:08:50.736762', 'CABEZA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (824, 'alvaro', 'intrsuo1978@hotmail.com', NULL, 1, '2015-03-18 23:08:50.796161', '2015-03-18 23:08:50.796161', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (825, 'Verónica', 'vsilvabruce@gmail.com', NULL, 1, '2015-03-18 23:08:50.805770', '2015-03-18 23:08:50.805770', 'Silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (826, 'Patricia', 'patriciacarvajal@yahoo.es', NULL, 1, '2015-03-18 23:08:50.815516', '2015-03-18 23:08:50.815516', 'Carvajal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (827, 'SEBASTIAN', 'olivarisantana@hotmail.com', NULL, 1, '2015-03-18 23:08:50.834883', '2015-03-18 23:08:50.834883', 'OLIVARI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (828, 'LEONARDO', 'lscalquin@yahoo.es', NULL, 1, '2015-03-18 23:08:50.851564', '2015-03-18 23:08:50.851564', 'SOTO CALQUIN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (829, 'El', 'blankstarter@gmail.com', NULL, 1, '2015-03-18 23:08:50.860945', '2015-03-18 23:08:50.860945', 'Peace Revolucion')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (830, 'Alika', 'annah8a@hotmail.com', NULL, 1, '2015-03-18 23:08:50.876425', '2015-03-18 23:08:50.876425', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (831, 'Matias', 'norfolko@hotmail.com', NULL, 1, '2015-03-18 23:08:50.886236', '2015-03-18 23:08:50.886236', 'Gonzalez Cornejo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (832, 'Manuel', 'elihudiaz@gmail.com', NULL, 1, '2015-03-18 23:08:50.901894', '2015-03-18 23:08:50.901894', 'Elihú Díaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (833, 'Chelin', 'correo@chelinsanjuan.info', NULL, 1, '2015-03-18 23:08:50.911193', '2015-03-18 23:08:50.911193', 'Sanjuan')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (834, 'Carolina', 'carolina_ibarrac@yahoo.es', NULL, 1, '2015-03-18 23:08:50.920590', '2015-03-18 23:08:50.920590', 'Ibarra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (835, 'valentinavarela', 'valentinacont@gmail.com', NULL, 1, '2015-03-18 23:08:50.929931', '2015-03-18 23:08:50.929931', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (836, 'constanza', 'constanzaferrada@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:50.988799', '2015-03-18 23:08:50.988799', 'ferrada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (837, 'Luis', 'eleborquez@vtr.net', NULL, 1, '2015-03-18 23:08:50.999616', '2015-03-18 23:08:50.999616', 'Bórquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (838, 'angela', 'angelascavo@gmail.com', NULL, 1, '2015-03-18 23:08:51.034983', '2015-03-18 23:08:51.034983', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (839, 'Cata', 'is.cata.gzz@gmail.com', NULL, 1, '2015-03-18 23:08:51.044438', '2015-03-18 23:08:51.044438', 'González')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (840, 'juan', 'juanmartinezproducciones@yahoo.com', NULL, 1, '2015-03-18 23:08:51.053106', '2015-03-18 23:08:51.053106', 'martínez guirado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (841, 'iuhikj', 'iuhiu@kjhkj.cl', NULL, 1, '2015-03-18 23:08:51.061419', '2015-03-18 23:08:51.061419', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (842, 'Cesar', 'chidalgo@nd.edu', NULL, 1, '2015-03-18 23:08:51.132825', '2015-03-18 23:08:51.132825', 'Hidalgo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (843, 'Raúl', 'bonzo.bz@gmail.com', NULL, 1, '2015-03-18 23:08:51.159979', '2015-03-18 23:08:51.159979', 'Ciudad')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (844, 'asdf', 'asd@hotmail.com', NULL, 1, '2015-03-18 23:08:51.171824', '2015-03-18 23:08:51.171824', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (845, 'mimimoi', 'miguel.michelson@oxus.cl', NULL, 1, '2015-03-18 23:08:51.184861', '2015-03-18 23:08:51.184861', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (846, 'carola', 'wangulem@gmail.com', NULL, 1, '2015-03-18 23:08:51.206793', '2015-03-18 23:08:51.206793', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (847, 'Tamara', 'taquilpa@puc.cl', NULL, 1, '2015-03-18 23:08:51.216600', '2015-03-18 23:08:51.216600', 'Quilpatay')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (848, 'maurobasaez.cl.tf', 'maurobasaez@yahoo.es', NULL, 1, '2015-03-18 23:08:51.244406', '2015-03-18 23:08:51.244406', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (849, 'andrea', 'andluk_22@hotmail.com', NULL, 1, '2015-03-18 23:08:51.272511', '2015-03-18 23:08:51.272511', 'fuentealba elizalde')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (850, 'Adolfo', 'martinezabarca@gmail.com', NULL, 1, '2015-03-18 23:08:51.298472', '2015-03-18 23:08:51.298472', 'Martínez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (851, 'Elisa', 'elisamenabar@gmail.com', NULL, 1, '2015-03-18 23:08:51.307010', '2015-03-18 23:08:51.307010', 'Amenabar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (852, 'Daniela', 'danielasantacruzvergara@yahoo.com.mx', NULL, 1, '2015-03-18 23:08:51.315670', '2015-03-18 23:08:51.315670', 'Santa Cruz Vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (853, 'alvaro', 'subgenio@gmail.com', NULL, 1, '2015-03-18 23:08:51.334235', '2015-03-18 23:08:51.334235', 'balcazar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (854, 'Ariztopapelo', '7films@gmail.com', NULL, 1, '2015-03-18 23:08:51.343741', '2015-03-18 23:08:51.343741', 'en coma')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (855, 'mario', 'azur200@hotmail.com', NULL, 1, '2015-03-18 23:08:51.351897', '2015-03-18 23:08:51.351897', 'sanchez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (856, 'Lila', 'findiulas@gmail.com', NULL, 1, '2015-03-18 23:08:51.360707', '2015-03-18 23:08:51.360707', 'Mejias')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (857, 'Victor', 'Victor.Araya@live.cl', NULL, 1, '2015-03-18 23:08:51.384122', '2015-03-18 23:08:51.384122', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (858, 'franklin', 'nova_era_@hotmail.com', NULL, 1, '2015-03-18 23:08:51.395012', '2015-03-18 23:08:51.395012', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (859, 'Pilar', 'raga96@gmail.com', NULL, 1, '2015-03-18 23:08:51.417317', '2015-03-18 23:08:51.417317', 'Pozzo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (860, 'cristina', 'cristilup77@gmail.com', NULL, 1, '2015-03-18 23:08:51.436618', '2015-03-18 23:08:51.436618', 'nunez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (861, 'javiera', 'perezjaviera@gmail.com', NULL, 1, '2015-03-18 23:08:51.445288', '2015-03-18 23:08:51.445288', 'perez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (862, 'Beatriz', 'beatrizacevedocabello@hotmail.com', NULL, 1, '2015-03-18 23:08:51.453957', '2015-03-18 23:08:51.453957', 'Sofía Acevedo Cabello')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (863, 'Lorena', 'lcalderon@graficauno.com', NULL, 1, '2015-03-18 23:08:51.462493', '2015-03-18 23:08:51.462493', 'Calderón')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (864, 'kiltronauta', 'Kiltronauta@gmail.com', NULL, 1, '2015-03-18 23:08:51.471050', '2015-03-18 23:08:51.471050', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (865, 'Rodrigo', 'kraken_279@yahoo.es', NULL, 1, '2015-03-18 23:08:51.483793', '2015-03-18 23:08:51.483793', 'Alejandro Rojas Sandoval')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (866, 'Alejandra', 'alejandra.valenzuelal@gmail.com', NULL, 1, '2015-03-18 23:08:51.495143', '2015-03-18 23:08:51.495143', 'Valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (867, 'Enrique', 'arteespinola@hotmail.com', NULL, 1, '2015-03-18 23:08:51.514563', '2015-03-18 23:08:51.514563', 'Espinola')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (868, 'Alberto', 'albertomarincastro@gmail.com', NULL, 1, '2015-03-18 23:08:51.533725', '2015-03-18 23:08:51.533725', 'Marin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (869, 'Cristián', 'ncristianrojasroman@gmail.com', NULL, 1, '2015-03-18 23:08:51.549957', '2015-03-18 23:08:51.549957', 'Rojas Román')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (870, 'Paula', 'zuldeka@hotmail.com', NULL, 1, '2015-03-18 23:08:51.574472', '2015-03-18 23:08:51.574472', 'Riquelme Peña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (871, 'f', 'frana.sarina@hotmail.com', NULL, 1, '2015-03-18 23:08:51.599379', '2015-03-18 23:08:51.599379', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (872, 'Lazaro', 'lazaro.naranjo@gmail.com', NULL, 1, '2015-03-18 23:08:51.609796', '2015-03-18 23:08:51.609796', 'Naranjo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (873, 'Mercurio', 'mauricio@anaya.cl', NULL, 1, '2015-03-18 23:08:51.618665', '2015-03-18 23:08:51.618665', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (874, 'Mi', 'm.m.a.s.m@hotmail.com', NULL, 1, '2015-03-18 23:08:51.632958', '2015-03-18 23:08:51.632958', 'mejor amiga se murió')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (875, 'claudio', 'cromo@udec.cl', NULL, 1, '2015-03-18 23:08:51.649494', '2015-03-18 23:08:51.649494', 'romo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (876, 'ESRA', 'esramuhurcu@gmail.com', NULL, 1, '2015-03-18 23:08:51.677564', '2015-03-18 23:08:51.677564', 'MUHURCU')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (877, 'Cristian', 'imaginamac@gmail.com', NULL, 1, '2015-03-18 23:08:51.694342', '2015-03-18 23:08:51.694342', 'Morales Ordenes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (878, 'Valentina', 'vmendiburo@gmail.com', NULL, 1, '2015-03-18 23:08:51.703490', '2015-03-18 23:08:51.703490', 'Mendiburo Seguel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (879, 'BARBARA', 'barbarafernandez.f@gmail.com', NULL, 1, '2015-03-18 23:08:51.711519', '2015-03-18 23:08:51.711519', 'FERNANDEZ F')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (880, 'Inessa', 'iness1221@yahoo.com', NULL, 1, '2015-03-18 23:08:51.719995', '2015-03-18 23:08:51.719995', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (881, 'Macarena', 'yomac.arquitec@gmail.com', NULL, 1, '2015-03-18 23:08:51.744073', '2015-03-18 23:08:51.744073', 'López')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (882, 'maria', 'arte_fran@yahoo.com', NULL, 1, '2015-03-18 23:08:51.755876', '2015-03-18 23:08:51.755876', 'francisca mendoza cabalá')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (883, 'jenny', 'gocasantana@gmail.com', NULL, 1, '2015-03-18 23:08:51.766597', '2015-03-18 23:08:51.766597', 'Santana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (884, 'Estefani', 'estefistan@gmail.com', NULL, 1, '2015-03-18 23:08:51.783780', '2015-03-18 23:08:51.783780', 'Stansfield')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (885, 'Gonzalo', 'pataguan@gmail.com', NULL, 1, '2015-03-18 23:08:51.799054', '2015-03-18 23:08:51.799054', 'Cueto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (886, 'juanillo', 'juanillo', NULL, 1, '2015-03-18 23:08:51.808159', '2015-03-18 23:08:51.808159', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (887, 'Felipe', 'foylland@hotmail.com', NULL, 1, '2015-03-18 23:08:51.816394', '2015-03-18 23:08:51.816394', 'Ureta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (888, 'Belen', 'bebita_@msn.com', NULL, 1, '2015-03-18 23:08:51.832422', '2015-03-18 23:08:51.832422', 'Cereceda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (889, 'pablo', 'ceballoshoy@gmail.com', NULL, 1, '2015-03-18 23:08:51.847327', '2015-03-18 23:08:51.847327', 'ceballos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (890, 'norka', 'norka_haruko7@hotmail.cl', NULL, 1, '2015-03-18 23:08:51.856616', '2015-03-18 23:08:51.856616', 'alvarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (891, 'maria', 'acromatica000@yahoo.es', NULL, 1, '2015-03-18 23:08:51.865232', '2015-03-18 23:08:51.865232', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (892, 'Javier', 'javierpz5@hotmail.com', NULL, 1, '2015-03-18 23:08:51.882516', '2015-03-18 23:08:51.882516', 'Pavez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (893, 'Claudio', 'bernal64@gmail.com', NULL, 1, '2015-03-18 23:08:51.897950', '2015-03-18 23:08:51.897950', 'Bernal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (894, 'fillkun', 'fillkunfu@gmail.com', NULL, 1, '2015-03-18 23:08:51.907115', '2015-03-18 23:08:51.907115', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (895, 'felipe', 'smides9@hotmail.com', NULL, 1, '2015-03-18 23:08:51.931343', '2015-03-18 23:08:51.931343', 'smides')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (896, 'Valeria', 'valeriamazo@gmail.com', NULL, 1, '2015-03-18 23:08:51.941521', '2015-03-18 23:08:51.941521', 'Mazo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (897, 'Claudia', 'claudiaadriazola@hotmail.com', NULL, 1, '2015-03-18 23:08:51.950387', '2015-03-18 23:08:51.950387', 'Adriazola')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (898, 'Roberto', 'rveloso@yahoo.com', NULL, 1, '2015-03-18 23:08:51.959199', '2015-03-18 23:08:51.959199', 'Velozo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (899, 'VIRGINIA', 'vguilisasti@gmail.com', NULL, 1, '2015-03-18 23:08:51.967787', '2015-03-18 23:08:51.967787', 'GUILISASTI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (900, 'Jorge', 'jorgemeza65@gmail.com', NULL, 1, '2015-03-18 23:08:52.053539', '2015-03-18 23:08:52.053539', 'Meza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (901, 'Raul', 'rvfrance@gmail.com', NULL, 1, '2015-03-18 23:08:52.062183', '2015-03-18 23:08:52.062183', 'Vasquez France')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (902, 'Marco Antonio', 'desdibujos@gmail.com', NULL, 1, '2015-03-18 23:08:52.070606', '2015-03-18 23:08:52.070606', 'Sepúlveda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (903, 'nea', 'neamc3@yahoo.com', NULL, 1, '2015-03-18 23:08:52.078897', '2015-03-18 23:08:52.078897', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (904, 'Ricardo', 'ricardosilveira1@yahoo.com', NULL, 1, '2015-03-18 23:08:52.088645', '2015-03-18 23:08:52.088645', 'G Silveira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (905, 'Agim', 'agim@hotmail.es', NULL, 1, '2015-03-18 23:08:52.098896', '2015-03-18 23:08:52.098896', 'Meta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (906, 'Antonia', 'alabadia@uc.cl', NULL, 1, '2015-03-18 23:08:52.108299', '2015-03-18 23:08:52.108299', 'Labadía')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (907, 'Tomas', 'tbrinck@uc.cl', NULL, 1, '2015-03-18 23:08:52.117396', '2015-03-18 23:08:52.117396', 'Brinck')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (908, 'ivonne', 'proyectorgroup@yahoo.com', NULL, 1, '2015-03-18 23:08:52.126723', '2015-03-18 23:08:52.126723', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (909, 'CLAUDIA', 'ARTEMULLER@GMAIL.COM', NULL, 1, '2015-03-18 23:08:52.135458', '2015-03-18 23:08:52.135458', 'MÜLLER MONTES')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (910, 'Luisa', 'kelpiecilla@hotmail.com', NULL, 1, '2015-03-18 23:08:52.148836', '2015-03-18 23:08:52.148836', 'Rivera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (911, 'Ricardo', 'ceodos@gmail.com', NULL, 1, '2015-03-18 23:08:52.157400', '2015-03-18 23:08:52.157400', 'Donoso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (912, 'Erick', 'erick.strange@gmail.com', NULL, 1, '2015-03-18 23:08:52.166397', '2015-03-18 23:08:52.166397', 'Strange')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (913, 'Otterleo', 'silent.telescope@hotmail.com', NULL, 1, '2015-03-18 23:08:52.175455', '2015-03-18 23:08:52.175455', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (914, 'Eduardo', 'aravena.edo@gmail.com', NULL, 1, '2015-03-18 23:08:52.185104', '2015-03-18 23:08:52.185104', 'Aravena Delgado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (915, 'armando', 'afro_tagger@hotmail.com', NULL, 1, '2015-03-18 23:08:52.198996', '2015-03-18 23:08:52.198996', 'rosales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (916, 'Constanza', 'conita_07@hotmail.com', NULL, 1, '2015-03-18 23:08:52.207811', '2015-03-18 23:08:52.207811', 'Arancibia Valdivia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (917, 'Gabriela', 'gabrielaisabelgabriela@hotmail.com', NULL, 1, '2015-03-18 23:08:52.216517', '2015-03-18 23:08:52.216517', 'González Bernales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (918, 'LA', 'lacz2@hotmail.com', NULL, 1, '2015-03-18 23:08:52.225842', '2015-03-18 23:08:52.225842', 'Cáceres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (919, 'julio', 'mthscnc@gmail.com', NULL, 1, '2015-03-18 23:08:52.234092', '2015-03-18 23:08:52.234092', 'narbona')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (920, 'Carlos', 'piguillem@gmail.com', NULL, 1, '2015-03-18 23:08:52.248469', '2015-03-18 23:08:52.248469', 'Piguillem')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (921, 'Victoria', 'victoria.achurra@gmail.com', NULL, 1, '2015-03-18 23:08:52.257318', '2015-03-18 23:08:52.257318', 'Achurra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (922, 'Willis', 'willisvega18@yahoo.com', NULL, 1, '2015-03-18 23:08:52.272736', '2015-03-18 23:08:52.272736', 'Vega')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (923, 'Sebastián', 'reyeslaborie@gmail.com', NULL, 1, '2015-03-18 23:08:52.289845', '2015-03-18 23:08:52.289845', 'Reyes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (924, 'el', 'dadadirt@yahoo.com', NULL, 1, '2015-03-18 23:08:52.300102', '2015-03-18 23:08:52.300102', 'brujo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (925, 'Ramón', 'artecubiles@hotmail.com', NULL, 1, '2015-03-18 23:08:52.310672', '2015-03-18 23:08:52.310672', 'Cubiles Robles')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (926, 'Rosario', 'rosarioantonia@hotmail.com', NULL, 1, '2015-03-18 23:08:52.321456', '2015-03-18 23:08:52.321456', 'Carmona Yost')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (927, 'Carlos', 'the_silbone@hotmail.com', NULL, 1, '2015-03-18 23:08:52.343879', '2015-03-18 23:08:52.343879', 'Luis Sanchez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (928, 'Miguelángel', 'eterno_fulgor@yahoo.com', NULL, 1, '2015-03-18 23:08:52.353919', '2015-03-18 23:08:52.353919', 'Lander')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (929, 'Didier', 'didieroberti@gmail.com', NULL, 1, '2015-03-18 23:08:52.362173', '2015-03-18 23:08:52.362173', 'Roberti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (930, 'francisca', 'valdesfrancisca@gmail.com', NULL, 1, '2015-03-18 23:08:52.371418', '2015-03-18 23:08:52.371418', 'valdes bulnes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (931, 'angel', 'golden_boy611@hotmail.com', NULL, 1, '2015-03-18 23:08:52.380737', '2015-03-18 23:08:52.380737', 'caro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (932, 'caglez', 'caglezro@gmail.com', NULL, 1, '2015-03-18 23:08:52.398670', '2015-03-18 23:08:52.398670', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (933, 'Catalina', 'akatalim@gmail.com', NULL, 1, '2015-03-18 23:08:52.407457', '2015-03-18 23:08:52.407457', 'Isidora Limardo Rebolledo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (934, 'Francisca', 'famenabar@hotmail.com', NULL, 1, '2015-03-18 23:08:52.416844', '2015-03-18 23:08:52.416844', 'Amenábar Chimenti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (935, 'carola', 'bella.creacion@hotmail.com', NULL, 1, '2015-03-18 23:08:52.434921', '2015-03-18 23:08:52.434921', 'muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (936, 'FRANCISCO', 'uzabeagavalle@hotmail.com', NULL, 1, '2015-03-18 23:08:52.449075', '2015-03-18 23:08:52.449075', 'UZABEAGA VALLE')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (937, 'joel', 'joeldtw@tutopia.com', NULL, 1, '2015-03-18 23:08:52.457711', '2015-03-18 23:08:52.457711', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (938, 'daniel', 'danielserrano@gmail.com', NULL, 1, '2015-03-18 23:08:52.467000', '2015-03-18 23:08:52.467000', 'Serrano Diaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (939, 'omar', 'corre_forest_@hotmail.com', NULL, 1, '2015-03-18 23:08:52.488539', '2015-03-18 23:08:52.488539', 'gonzalez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (940, 'Paula', 'paula.arnal@gmail.com', NULL, 1, '2015-03-18 23:08:52.503727', '2015-03-18 23:08:52.503727', 'Arnal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (941, 'saho', 'inniura@hotmail.com', NULL, 1, '2015-03-18 23:08:52.512253', '2015-03-18 23:08:52.512253', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (942, 'Jorge', 'blauart@hotmail.con', NULL, 1, '2015-03-18 23:08:52.521294', '2015-03-18 23:08:52.521294', 'Blau Astraín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (943, 'Carla', 'carlamckaym@hotmail.com', NULL, 1, '2015-03-18 23:08:52.535715', '2015-03-18 23:08:52.535715', 'McKay')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (944, 'Diego', 'info@diegosantos.com.ar', NULL, 1, '2015-03-18 23:08:52.561186', '2015-03-18 23:08:52.561186', 'Santos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (945, 'Carolina', 'Carolinalvarezcarcamo@gmail.com', NULL, 1, '2015-03-18 23:08:52.570960', '2015-03-18 23:08:52.570960', 'Alvarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (946, 'CEVADO', 'suspensionado@gmail.com', NULL, 1, '2015-03-18 23:08:52.581523', '2015-03-18 23:08:52.581523', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (947, 'Claudia', 'clau.verdejo@gmail.com', NULL, 1, '2015-03-18 23:08:52.599181', '2015-03-18 23:08:52.599181', 'Verdejo Fredes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (948, 'Nicole', 'nikure@gmail.com', NULL, 1, '2015-03-18 23:08:52.628224', '2015-03-18 23:08:52.628224', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (949, 'Christopher', 'potrofer@gmail.com', NULL, 1, '2015-03-18 23:08:52.637093', '2015-03-18 23:08:52.637093', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (950, 'Rodrigo', 'rodrigo@pintoh.com', NULL, 1, '2015-03-18 23:08:52.656330', '2015-03-18 23:08:52.656330', 'Pinto Hoffmann')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (951, 'Ingo', 'sanhuezakuschel@gmail.com', NULL, 1, '2015-03-18 23:08:52.668228', '2015-03-18 23:08:52.668228', 'Sanhueza Kuschel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (952, 'Andrés', 'andresvildosola@gmail.com', NULL, 1, '2015-03-18 23:08:52.733154', '2015-03-18 23:08:52.733154', 'Castillo Vildósola')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (953, 'Matias', 'matiasnoguerra@gmail.com', NULL, 1, '2015-03-18 23:08:52.761927', '2015-03-18 23:08:52.761927', 'Noguera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (954, 'TOMAS', 'arte@tomascastano.com', NULL, 1, '2015-03-18 23:08:52.779404', '2015-03-18 23:08:52.779404', 'CASTAÑO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (955, 'Viviana', 'vivitarock@gmail.com', NULL, 1, '2015-03-18 23:08:53.496267', '2015-03-18 23:08:53.496267', 'Silva Flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (956, 'Alexis', 'alexisdvalle@gmail.com', NULL, 1, '2015-03-18 23:08:53.505841', '2015-03-18 23:08:53.505841', 'Díaz Valle')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (957, 'carolina', 'grabadoscgh@yahoo.com', NULL, 1, '2015-03-18 23:08:53.514004', '2015-03-18 23:08:53.514004', 'garcía huidobro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (958, 'Gonzalo', 'gonzalostecher@yahoo.com', NULL, 1, '2015-03-18 23:08:53.522122', '2015-03-18 23:08:53.522122', 'Stecher')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (959, 'bernardita', 'bernarditalynch@gmail.com', NULL, 1, '2015-03-18 23:08:53.532081', '2015-03-18 23:08:53.532081', 'lynch sanchez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (960, 'gruporipper', 'grupo.ripper@gmail.com', NULL, 1, '2015-03-18 23:08:53.545315', '2015-03-18 23:08:53.545315', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (961, 'Rebeca', 'rebecape@hotmail.com', NULL, 1, '2015-03-18 23:08:53.566907', '2015-03-18 23:08:53.566907', 'Peña')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (962, 'Rodrigo', 'dizzlecciko@gmail.com', NULL, 1, '2015-03-18 23:08:53.578306', '2015-03-18 23:08:53.578306', 'Balladares Muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (963, 'Macarena', 'macarenariv@gmail.com', NULL, 1, '2015-03-18 23:08:53.595310', '2015-03-18 23:08:53.595310', 'Rivera De la Maza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (964, 'CAROLINA', 'carolhen58@yahoo.com', NULL, 1, '2015-03-18 23:08:53.604673', '2015-03-18 23:08:53.604673', 'HENRIQUEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (965, 'SoniaGonzalez', 'sonik222@gmail.com', NULL, 1, '2015-03-18 23:08:53.613095', '2015-03-18 23:08:53.613095', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (966, 'sandra', 'princesa_hallulla@yahoo.es', NULL, 1, '2015-03-18 23:08:53.621690', '2015-03-18 23:08:53.621690', 'yessenia martinez fuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (967, 'Cristián', 'cgomezz@uc.cl', NULL, 1, '2015-03-18 23:08:53.630201', '2015-03-18 23:08:53.630201', 'Gómez Zaccarelli')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (968, 'camila', 'mafalda_foxy2@hotmail.com', NULL, 1, '2015-03-18 23:08:53.644783', '2015-03-18 23:08:53.644783', 'pizarro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (969, 'francisca', 'franterrazas@hotmail.com', NULL, 1, '2015-03-18 23:08:53.652728', '2015-03-18 23:08:53.652728', 'terrazas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (970, 'Diego', 'dieguetexxx@gmail.com', NULL, 1, '2015-03-18 23:08:53.661185', '2015-03-18 23:08:53.661185', 'ACorvalan')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (971, 'Cristian', 'voltajemarciano@hotmail.com', NULL, 1, '2015-03-18 23:08:53.669525', '2015-03-18 23:08:53.669525', 'Rojas Cifuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (972, 'Soledad', 'soledadbravo@hotmail.com', NULL, 1, '2015-03-18 23:08:53.677940', '2015-03-18 23:08:53.677940', 'Bravo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (973, 'Alvaro', 'admin@alvarogiron.com', NULL, 1, '2015-03-18 23:08:53.695741', '2015-03-18 23:08:53.695741', 'Giron')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (974, 'liliana', 'lilianaricci@vtr.net', NULL, 1, '2015-03-18 23:08:53.705184', '2015-03-18 23:08:53.705184', 'ricci diaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (975, 'magdalena', 'mpnovoa@gmail.com', NULL, 1, '2015-03-18 23:08:53.713236', '2015-03-18 23:08:53.713236', 'novoa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (976, 'Claudia', 'claudiayarur@gmail.com', NULL, 1, '2015-03-18 23:08:53.722902', '2015-03-18 23:08:53.722902', 'Yarur')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (977, 'Jose', 'trivinosur@gmail.com', NULL, 1, '2015-03-18 23:08:53.730808', '2015-03-18 23:08:53.730808', 'Triviño')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (978, 'Valeria', 'iosoifhan@yahoo.com.mx', NULL, 1, '2015-03-18 23:08:53.745122', '2015-03-18 23:08:53.745122', 'Roffiel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (979, 'Esteban', 'estebanpappa@hotmail.com', NULL, 1, '2015-03-18 23:08:53.753140', '2015-03-18 23:08:53.753140', 'Pappa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (980, 'Alex', 'alexmezac@yahoo.es', NULL, 1, '2015-03-18 23:08:53.762424', '2015-03-18 23:08:53.762424', 'Meza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (981, 'Paulo', 'leon3vgc@gmail.com', NULL, 1, '2015-03-18 23:08:53.770846', '2015-03-18 23:08:53.770846', 'León Correa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (982, 'Pta.', 'nfarto@yahoo.es', NULL, 1, '2015-03-18 23:08:53.779607', '2015-03-18 23:08:53.779607', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (983, 'Renato', 'kerocolor@hotmail.com', NULL, 1, '2015-03-18 23:08:53.795358', '2015-03-18 23:08:53.795358', 'simon correa vasquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (984, 'Daniela', 'miljanakovacic@gmail.com', NULL, 1, '2015-03-18 23:08:53.809803', '2015-03-18 23:08:53.809803', 'Kovacic')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (985, 'antonia', 'antocafati@gmail.com', NULL, 1, '2015-03-18 23:08:53.818474', '2015-03-18 23:08:53.818474', 'cafati')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (986, 'JETZABEL', 'jetzabelgonza@gmail.com', NULL, 1, '2015-03-18 23:08:53.826822', '2015-03-18 23:08:53.826822', 'GONZALEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (987, 'Peque', 'pequecanas@gmail.com', NULL, 1, '2015-03-18 23:08:53.844888', '2015-03-18 23:08:53.844888', 'Cañas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (988, 'eduardo', 'lalourbano@mac.com', NULL, 1, '2015-03-18 23:08:53.861053', '2015-03-18 23:08:53.861053', 'urbano merino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (989, 'Evelyn', 'ecaritooo@hotmail.com', NULL, 1, '2015-03-18 23:08:53.870535', '2015-03-18 23:08:53.870535', 'Alvarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (990, 'felipe', 'felbaeza@hotmail.com', NULL, 1, '2015-03-18 23:08:53.878887', '2015-03-18 23:08:53.878887', 'guillermo baeza villegas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (991, 'Fernando', 'ferroarte70@hotmail.com', NULL, 1, '2015-03-18 23:08:53.894630', '2015-03-18 23:08:53.894630', 'Antonio Romero Araujo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (992, 'Florencia', 'florenciainfante@gmail.com', NULL, 1, '2015-03-18 23:08:53.909335', '2015-03-18 23:08:53.909335', 'Infante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (993, 'gabriel', 'yonotengoseisdedos@gmail.com', NULL, 1, '2015-03-18 23:08:53.918747', '2015-03-18 23:08:53.918747', 'seisdedos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (994, 'lucia', 'luzms06@hotmail.com', NULL, 1, '2015-03-18 23:08:53.927424', '2015-03-18 23:08:53.927424', 'Milan')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (995, 'anaclara', 'anaclaraholm@hotmail.com', NULL, 1, '2015-03-18 23:08:53.944258', '2015-03-18 23:08:53.944258', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (996, 'Juan', 'jczuniga.a@hotmail.com', NULL, 1, '2015-03-18 23:08:53.953469', '2015-03-18 23:08:53.953469', 'Carlos Zúñiga Andrades')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (997, 'nevenka', 'nevenkart@yahoo.com', NULL, 1, '2015-03-18 23:08:53.961551', '2015-03-18 23:08:53.961551', 'pavic')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (998, 'jacqueline', 'jacodorlhiac@gmail.com', NULL, 1, '2015-03-18 23:08:53.971254', '2015-03-18 23:08:53.971254', 'dorlhiac')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (999, 'Alejandra', 'alepcoirini@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:53.979653', '2015-03-18 23:08:53.979653', 'Coirini')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1000, 'David', 'david.quinteros.a@gmail.com', NULL, 1, '2015-03-18 23:08:53.994154', '2015-03-18 23:08:53.994154', 'Quinteros')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1001, 'Daniela', 'daniaravena@gmail.com', NULL, 1, '2015-03-18 23:08:54.006284', '2015-03-18 23:08:54.006284', 'Aravena Jordan (DAJ)')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1002, 'lucio', 'an63l6r15@hotmail.com', NULL, 1, '2015-03-18 23:08:54.014666', '2015-03-18 23:08:54.014666', 'gonzalez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1003, 'Guillermo', 'will@menta.net', NULL, 1, '2015-03-18 23:08:54.023328', '2015-03-18 23:08:54.023328', 'Castellvi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1004, 'susana', 'susanasandia@gmail.com', NULL, 1, '2015-03-18 23:08:54.031732', '2015-03-18 23:08:54.031732', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1005, 'magda', 'maggyaguirre@hotmail.com', NULL, 1, '2015-03-18 23:08:54.045077', '2015-03-18 23:08:54.045077', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1006, 'Koichiro', 'pk_ogino@yahoo.com', NULL, 1, '2015-03-18 23:08:54.053843', '2015-03-18 23:08:54.053843', 'Ogino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1007, 'MONICA', 'leytonmonica@gmail.com', NULL, 1, '2015-03-18 23:08:54.064050', '2015-03-18 23:08:54.064050', 'LEYTON')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1008, 'Javier', 'jjcoronadog@gmail.com', NULL, 1, '2015-03-18 23:08:54.072773', '2015-03-18 23:08:54.072773', 'Coronado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1009, 'Daniel', 'dansilvaplata@gmail.com', NULL, 1, '2015-03-18 23:08:54.081012', '2015-03-18 23:08:54.081012', 'Silva Plata')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1010, 'Jonh', 'retratosobretela@gmail.com', NULL, 1, '2015-03-18 23:08:54.102186', '2015-03-18 23:08:54.102186', 'Doe')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1011, 'Sergio', 'smujicap@gmail.com', NULL, 1, '2015-03-18 23:08:54.117248', '2015-03-18 23:08:54.117248', 'Mujica')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1012, 'Pablo', 'papelmadera@gmail.com', NULL, 1, '2015-03-18 23:08:54.126710', '2015-03-18 23:08:54.126710', 'Contreras')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1013, 'MAX', 'maxalarguti@hotmail.com', NULL, 1, '2015-03-18 23:08:54.144858', '2015-03-18 23:08:54.144858', 'ALARCON')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1014, 'SANDRA', 'sandraguzman01@hotmail.com', NULL, 1, '2015-03-18 23:08:54.153984', '2015-03-18 23:08:54.153984', 'GUZMÁN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1015, 'Gladys', 'gladysvega13@hotmail.com', NULL, 1, '2015-03-18 23:08:54.162605', '2015-03-18 23:08:54.162605', 'Vega')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1016, 'Claudia', 'cv_marga@hotmail.com', NULL, 1, '2015-03-18 23:08:54.171182', '2015-03-18 23:08:54.171182', 'Martínez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1017, 'rosarioateaga', 'rosarioateaga@gmail.com', NULL, 1, '2015-03-18 23:08:54.180010', '2015-03-18 23:08:54.180010', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1018, 'danielita', 'minga269@gmail.com', NULL, 1, '2015-03-18 23:08:54.194536', '2015-03-18 23:08:54.194536', 'nuñez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1019, 'hector', 'inshector@gmail.com', NULL, 1, '2015-03-18 23:08:54.203827', '2015-03-18 23:08:54.203827', 'vergara maturana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1020, 'francisco', 'romeroarte@gmail.com', NULL, 1, '2015-03-18 23:08:54.212864', '2015-03-18 23:08:54.212864', 'romero cruz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1021, 'Julio', 'julio@ducuron.com.ar', NULL, 1, '2015-03-18 23:08:54.221242', '2015-03-18 23:08:54.221242', 'Ducuron')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1022, 'monica', 'monca_234@hotmail.com', NULL, 1, '2015-03-18 23:08:54.230188', '2015-03-18 23:08:54.230188', 'garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1023, 'ANA', 'mirandaquiroz@mirandaquiroz.cl', NULL, 1, '2015-03-18 23:08:54.243671', '2015-03-18 23:08:54.243671', 'MARIA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1024, 'inês', 'ines.zrgt@gmail.com', NULL, 1, '2015-03-18 23:08:54.252437', '2015-03-18 23:08:54.252437', 'ribeiro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1025, 'ANDREA', 'andylampas@hotmail.com', NULL, 1, '2015-03-18 23:08:54.260853', '2015-03-18 23:08:54.260853', 'LAMPAS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1026, 'Roberto', 'biscein2000@yahoo.com', NULL, 1, '2015-03-18 23:08:54.269755', '2015-03-18 23:08:54.269755', 'Carrizo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1027, 'enrique', 'szamozky@gmail.com', NULL, 1, '2015-03-18 23:08:54.278946', '2015-03-18 23:08:54.278946', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1028, 'Carlos', 'camusartist@gmail.com', NULL, 1, '2015-03-18 23:08:54.294013', '2015-03-18 23:08:54.294013', 'Camus')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1029, 'José', 'coto.chadid@gmail.com', NULL, 1, '2015-03-18 23:08:54.303604', '2015-03-18 23:08:54.303604', 'Luis Chadid Pedraza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1030, 'VERO', 'vpuchi@hotmail.com', NULL, 1, '2015-03-18 23:08:54.312137', '2015-03-18 23:08:54.312137', 'PUCHI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1031, 'Lucho', 'luchonomas@hotmail.com', NULL, 1, '2015-03-18 23:08:54.320285', '2015-03-18 23:08:54.320285', 'Pérez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1032, 'ELIA', 'eliarocio1118@gmail.com', NULL, 1, '2015-03-18 23:08:54.329821', '2015-03-18 23:08:54.329821', 'GIRON RUIZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1033, 'sylvia', 'sylviariverar@gmail.com', NULL, 1, '2015-03-18 23:08:54.344780', '2015-03-18 23:08:54.344780', 'rivera rosales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1034, 'Maria', 'mpazbezanilla@gmail.com', NULL, 1, '2015-03-18 23:08:54.353561', '2015-03-18 23:08:54.353561', 'Paz Bezanilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1035, 'SOFIA', 'sofiacolacci@yahoo.es', NULL, 1, '2015-03-18 23:08:54.362055', '2015-03-18 23:08:54.362055', 'COLACCI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1036, 'ximena', 'xgeisse@gmail.com', NULL, 1, '2015-03-18 23:08:54.370573', '2015-03-18 23:08:54.370573', 'geisse')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1037, 'volamario', 'marco.simola@gmail.com', NULL, 1, '2015-03-18 23:08:54.379320', '2015-03-18 23:08:54.379320', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1038, 'Ingrid', 'kieesbaiser@gmail.com', NULL, 1, '2015-03-18 23:08:54.400045', '2015-03-18 23:08:54.400045', 'Kiessling')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1039, 'Arrieta', 'paula.arrieta@arrietascl.org', NULL, 1, '2015-03-18 23:08:54.435056', '2015-03-18 23:08:54.435056', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1040, 'Gabriel', 'gabriel.rodriguez@paisfotografico.cl', NULL, 1, '2015-03-18 23:08:54.446101', '2015-03-18 23:08:54.446101', 'Rodriguez Santa Maria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1041, 'Astrid', 'astridfh@hotmail.com', NULL, 1, '2015-03-18 23:08:54.460159', '2015-03-18 23:08:54.460159', 'Fuchslocher')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1042, 'María', 'macarena26molina@hotmail.com', NULL, 1, '2015-03-18 23:08:54.477794', '2015-03-18 23:08:54.477794', 'Macarena Molina Dufflocq')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1043, 'Elisa', 'balmacedaelisa@gmail.com', NULL, 1, '2015-03-18 23:08:54.565072', '2015-03-18 23:08:54.565072', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1044, 'Isabel', 'isavjuliet@yahoo.com', NULL, 1, '2015-03-18 23:08:54.579422', '2015-03-18 23:08:54.579422', 'Vega')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1045, 'GonzaloFloresMuñoz', 'caesadechomba@gmail.com', NULL, 1, '2015-03-18 23:08:54.588385', '2015-03-18 23:08:54.588385', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1046, 'cristian', 'cristianrsa@gmail.com', NULL, 1, '2015-03-18 23:08:54.597060', '2015-03-18 23:08:54.597060', 'rodriguez saavedra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1047, 'silvana', 'silvanairiondo@hotmail.com', NULL, 1, '2015-03-18 23:08:54.609524', '2015-03-18 23:08:54.609524', 'IRIONDO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1048, 'Constanza', 'birnizka@hotmail.com', NULL, 1, '2015-03-18 23:08:54.618228', '2015-03-18 23:08:54.618228', 'Zapata')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1049, 'fernanda', 'furruti@gmail.com', NULL, 1, '2015-03-18 23:08:54.626560', '2015-03-18 23:08:54.626560', 'urrutia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1050, 'Paulina', 'paulimillas@hotmail.com', NULL, 1, '2015-03-18 23:08:54.635137', '2015-03-18 23:08:54.635137', 'Millas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1051, 'Jorge', 'manicomiobunkers@hotmail.com', NULL, 1, '2015-03-18 23:08:54.643800', '2015-03-18 23:08:54.643800', 'Andrés - VALPOGRAFIAS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1052, 'Matías', 'nuevas_excusas@hotmail.com', NULL, 1, '2015-03-18 23:08:54.708862', '2015-03-18 23:08:54.708862', 'Valenzuela Fuentealba')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1053, 'flor', 'welcometothechongo@hotmail.com', NULL, 1, '2015-03-18 23:08:54.797796', '2015-03-18 23:08:54.797796', 'infante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1054, 'JOSE', 'josecuri1@gmail.com', NULL, 1, '2015-03-18 23:08:54.809634', '2015-03-18 23:08:54.809634', 'CURI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1055, 'LILIANA', 'lilianapatlayan@hotmail.com', NULL, 1, '2015-03-18 23:08:54.818917', '2015-03-18 23:08:54.818917', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1056, 'Stephanie', 'pollitopooley@hotmail.com', NULL, 1, '2015-03-18 23:08:54.827177', '2015-03-18 23:08:54.827177', 'Pooley')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1057, 'rebeca', 'rebecasantaella@yahoo.es', NULL, 1, '2015-03-18 23:08:54.843099', '2015-03-18 23:08:54.843099', 'santaella')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1058, 'maria', 'malena26cl@yahoo.com', NULL, 1, '2015-03-18 23:08:54.851033', '2015-03-18 23:08:54.851033', 'elena etchepare')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1059, 'rebequita', 'luisbsalazar@yahoo.es', NULL, 1, '2015-03-18 23:08:54.860393', '2015-03-18 23:08:54.860393', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1060, 'paul', 'pol.lion7@gmail.com', NULL, 1, '2015-03-18 23:08:54.869003', '2015-03-18 23:08:54.869003', 'leyton')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1061, 'Venjamin', 'bejorque@uc.cl', NULL, 1, '2015-03-18 23:08:54.877602', '2015-03-18 23:08:54.877602', 'Jorquera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1062, 'Ignacia', 'aicangi@gmail.com', NULL, 1, '2015-03-18 23:08:54.892533', '2015-03-18 23:08:54.892533', 'Yañez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1063, 'felipe', 'fdelaguilazz11@yahoo.es', NULL, 1, '2015-03-18 23:08:54.908637', '2015-03-18 23:08:54.908637', 'del aguila')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1064, 'mike', 'mrr109@aol.com', NULL, 1, '2015-03-18 23:08:54.917195', '2015-03-18 23:08:54.917195', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1065, 'gabriela', 'gcercos@gmail.com', NULL, 1, '2015-03-18 23:08:54.925718', '2015-03-18 23:08:54.925718', 'cercos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1066, 'francisca', 'peluzza_1989@hotmail.com', NULL, 1, '2015-03-18 23:08:54.941930', '2015-03-18 23:08:54.941930', 'olave')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1067, 'p3luzz4', 'p3luzz4@hotmail.com', NULL, 1, '2015-03-18 23:08:54.951323', '2015-03-18 23:08:54.951323', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1068, 'Joselo', 'joselonthomassiny@yahoo.es', NULL, 1, '2015-03-18 23:08:55.001437', '2015-03-18 23:08:55.001437', 'Thomassiny')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1069, 'delbatitu', 'delbatitu@montevideo.com.uy', NULL, 1, '2015-03-18 23:08:55.024344', '2015-03-18 23:08:55.024344', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1070, 'tomas', 'gelfriocalor@gmail.com', NULL, 1, '2015-03-18 23:08:55.044723', '2015-03-18 23:08:55.044723', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1071, 'Sebastián', 'seb_ham@yahoo.com', NULL, 1, '2015-03-18 23:08:55.058876', '2015-03-18 23:08:55.058876', 'Soto (HMSTR)')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1072, 'julio', 'juliofabresrivas@gmail.com', NULL, 1, '2015-03-18 23:08:55.067756', '2015-03-18 23:08:55.067756', 'fabres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1073, 'Susana', 'susanabotello@hotmail.com', NULL, 1, '2015-03-18 23:08:55.076335', '2015-03-18 23:08:55.076335', 'Botello')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1074, 'Nicolás', 'nico.olivares@gmail.com', NULL, 1, '2015-03-18 23:08:55.101306', '2015-03-18 23:08:55.101306', 'Olivares')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1075, 'ivan', 'theotherfreakshow@gmail.com', NULL, 1, '2015-03-18 23:08:55.111646', '2015-03-18 23:08:55.111646', 'cea')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1076, 'Patricio', 'patbruna@yahoo.es', NULL, 1, '2015-03-18 23:08:55.134713', '2015-03-18 23:08:55.134713', 'Bruna Poblete')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1077, 'Ingrid', 'paula.vall@gmail.com', NULL, 1, '2015-03-18 23:08:55.145518', '2015-03-18 23:08:55.145518', 'Vallverdú')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1078, 'Sebastian', 'martinez_fadic@hotmail.com', NULL, 1, '2015-03-18 23:08:55.196036', '2015-03-18 23:08:55.196036', 'Martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1079, 'carlos', 'albertovegas_768@msn.com', NULL, 1, '2015-03-18 23:08:55.220213', '2015-03-18 23:08:55.220213', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1080, 'yadira', 'yadiralarreal@hotmail.com', NULL, 1, '2015-03-18 23:08:55.238166', '2015-03-18 23:08:55.238166', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1081, 'Marisol', 'mosh_amg@hotmail.com', NULL, 1, '2015-03-18 23:08:55.247646', '2015-03-18 23:08:55.247646', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1082, 'Carmen', 'carmenshuuu@hotmail.com', NULL, 1, '2015-03-18 23:08:55.264787', '2015-03-18 23:08:55.264787', 'Fernández')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1083, 'Fredy', 'fredymebu@hotmail.com', NULL, 1, '2015-03-18 23:08:55.291506', '2015-03-18 23:08:55.291506', 'Wilson Melo Bustos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1084, 'carolina', 'segizmundo@gmail.com', NULL, 1, '2015-03-18 23:08:55.308638', '2015-03-18 23:08:55.308638', 'pino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1085, 'marcospoeta', 'marcospoeta@hotmail.com', NULL, 1, '2015-03-18 23:08:55.329921', '2015-03-18 23:08:55.329921', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1086, 'Romina', 'rominaortegam@hotmail.com', NULL, 1, '2015-03-18 23:08:55.342546', '2015-03-18 23:08:55.342546', 'Ortega Mella')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1087, 'Claudio', 'claudio.penailillo@oxus.cl', NULL, 1, '2015-03-18 23:08:55.410300', '2015-03-18 23:08:55.410300', 'Peñailillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1088, 'David', 'driveros@gmail.com', NULL, 1, '2015-03-18 23:08:55.442484', '2015-03-18 23:08:55.442484', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1089, 'clark', 'clarkurt@vtr.net', NULL, 1, '2015-03-18 23:08:55.459106', '2015-03-18 23:08:55.459106', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1090, 'Catalina', 'odiseaskatsh@hotmail.com', NULL, 1, '2015-03-18 23:08:55.467483', '2015-03-18 23:08:55.467483', 'Rayo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1091, 'Luis', 'luisguerramiranda@gmail.com', NULL, 1, '2015-03-18 23:08:55.498383', '2015-03-18 23:08:55.498383', 'Guerra Miranda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1092, 'Run', 'runsaber@hotmail.com', NULL, 1, '2015-03-18 23:08:55.518869', '2015-03-18 23:08:55.518869', 'Saber')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1093, 'Gracia', 'graciaviless@hotmail.com', NULL, 1, '2015-03-18 23:08:55.533674', '2015-03-18 23:08:55.533674', 'Aviles')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1094, 'Orlando', 'orlandogarridor@gmail.com', NULL, 1, '2015-03-18 23:08:55.555192', '2015-03-18 23:08:55.555192', 'Hernán Garrido Rivera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1095, 'Pablo', 'pviojo@gmail.com', NULL, 1, '2015-03-18 23:08:55.587080', '2015-03-18 23:08:55.587080', 'Viojo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1096, 'Ignacio', 'letthal@hotmail.com', NULL, 1, '2015-03-18 23:08:55.618702', '2015-03-18 23:08:55.618702', 'Leal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1097, 'cynsclay', 'cyngr@hotmail.com', NULL, 1, '2015-03-18 23:08:55.641965', '2015-03-18 23:08:55.641965', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1098, 'Rodrigo', 'locorovi@gmail.com', NULL, 1, '2015-03-18 23:08:55.666224', '2015-03-18 23:08:55.666224', 'Rivera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1099, 'Hubert', 'hubert.castillo@gmail.com', NULL, 1, '2015-03-18 23:08:55.730203', '2015-03-18 23:08:55.730203', 'Castillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1100, 'Felipe', 'felipe.valdivia@hotmail.com', NULL, 1, '2015-03-18 23:08:55.751632', '2015-03-18 23:08:55.751632', 'Valdivia Infante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1101, 'Jaime', 'jaime@comodo.cl', NULL, 1, '2015-03-18 23:08:55.767148', '2015-03-18 23:08:55.767148', 'Ramírez - Cotal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1102, 'Signorelli', 'asignorelli@gmail.com', NULL, 1, '2015-03-18 23:08:55.792065', '2015-03-18 23:08:55.792065', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1103, 'antonia', 'antonia@plazagmail.com', NULL, 1, '2015-03-18 23:08:55.821776', '2015-03-18 23:08:55.821776', 'plaza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1104, 'Carolina', 'caroangel84@gmail.com', NULL, 1, '2015-03-18 23:08:55.849174', '2015-03-18 23:08:55.849174', 'Tolosa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1105, 'jack', 'jackhumano@hotmail.com', NULL, 1, '2015-03-18 23:08:55.863714', '2015-03-18 23:08:55.863714', 'silva garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1106, 'Monserrat', 'psychoretro@gmail.com', NULL, 1, '2015-03-18 23:08:55.923744', '2015-03-18 23:08:55.923744', 'Videla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1107, 'MARCIAL', 'OPINA@LAICRAM.ES', NULL, 1, '2015-03-18 23:08:55.950461', '2015-03-18 23:08:55.950461', 'MALLEBRERA MARTINEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1108, 'Ignacio', 'ignaciomunozvicuna@gmail.com', NULL, 1, '2015-03-18 23:08:55.965659', '2015-03-18 23:08:55.965659', 'Muñoz Vicuña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1109, 'Carlos', 'tresgatosnegros@gmail.com', NULL, 1, '2015-03-18 23:08:55.977061', '2015-03-18 23:08:55.977061', 'López Balló')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1110, 'carolina', 'carola.hermana@gmail.com', NULL, 1, '2015-03-18 23:08:56.009599', '2015-03-18 23:08:56.009599', 'lolas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1111, 'JULIA', 'julia.sanchez.viveros@gmail.com', NULL, 1, '2015-03-18 23:08:56.024112', '2015-03-18 23:08:56.024112', 'SANCHEZ VIVEROS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1112, 'matias', 'matiasolaruss@hotmail.com', NULL, 1, '2015-03-18 23:08:56.036675', '2015-03-18 23:08:56.036675', 'solar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1113, 'Sara', 'sara_cancellieri@hotmail.com', NULL, 1, '2015-03-18 23:08:56.059950', '2015-03-18 23:08:56.059950', 'Cancellieri')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1114, 'CAROLINA', 'carocorrales21@hotmail.com', NULL, 1, '2015-03-18 23:08:56.096583', '2015-03-18 23:08:56.096583', 'CORRALES')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1115, 'Lucrecia', 'lucreconget@yahoo.es', NULL, 1, '2015-03-18 23:08:56.123986', '2015-03-18 23:08:56.123986', 'Conget')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1116, 'trafyk', 'fquezadaleal@gmail.com', NULL, 1, '2015-03-18 23:08:56.147070', '2015-03-18 23:08:56.147070', 'power')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1117, 'Charles', 'cavergara@udec.cl', NULL, 1, '2015-03-18 23:08:56.170572', '2015-03-18 23:08:56.170572', 'Bronson Kelly Gallagher')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1118, 'Verónica', 'vroaguirre@gmail.com', NULL, 1, '2015-03-18 23:08:56.192318', '2015-03-18 23:08:56.192318', 'Aguirre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1119, 'lisbeth', 'lisbethps@hotmail.com', NULL, 1, '2015-03-18 23:08:56.216303', '2015-03-18 23:08:56.216303', 'perez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1120, 'José', 'exorton@gmail.com', NULL, 1, '2015-03-18 23:08:56.243770', '2015-03-18 23:08:56.243770', 'Miguel Valdivieso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1121, 'adolfo', 'adolfo.martinez@hotmail.com', NULL, 1, '2015-03-18 23:08:56.269665', '2015-03-18 23:08:56.269665', 'martinez abarca')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1122, 'el', 'controlealafemme@gmail.com', NULL, 1, '2015-03-18 23:08:56.298874', '2015-03-18 23:08:56.298874', 'Team Burton')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1123, 'Juan', 'juanpablotapia@gmail.com', NULL, 1, '2015-03-18 23:08:56.321933', '2015-03-18 23:08:56.321933', 'Pablo Tapia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1124, 'Javier', 'payanussis@gmail.com', NULL, 1, '2015-03-18 23:08:56.351404', '2015-03-18 23:08:56.351404', 'Panussis')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1125, 'Monica', 'monicalabrat@hotmail.com', NULL, 1, '2015-03-18 23:08:56.369698', '2015-03-18 23:08:56.369698', 'Labra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1126, 'Elizabeth', 'sanhuezalopez@hotmail.com', NULL, 1, '2015-03-18 23:08:56.396296', '2015-03-18 23:08:56.396296', 'Sanhueza López')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1127, 'ROBERTO', 'cartes25@gmail.com', NULL, 1, '2015-03-18 23:08:56.410592', '2015-03-18 23:08:56.410592', 'CARTES MONTOYA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1128, 'flavin', 'fcolavin@gmail.com', NULL, 1, '2015-03-18 23:08:56.444095', '2015-03-18 23:08:56.444095', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1129, 'Macarena', 'cinta.amarga@gmail.com', NULL, 1, '2015-03-18 23:08:56.472725', '2015-03-18 23:08:56.472725', 'Bravo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1130, 'MONA', 'monaurzua@gmail.com', NULL, 1, '2015-03-18 23:08:56.488221', '2015-03-18 23:08:56.488221', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1131, 'Gabriel', 'gabotron@hotmail.com', NULL, 1, '2015-03-18 23:08:56.506484', '2015-03-18 23:08:56.506484', 'Miller')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1132, 'karina', 'karinacastanedaz@hotmail.com', NULL, 1, '2015-03-18 23:08:56.522391', '2015-03-18 23:08:56.522391', 'castañeda zúñiga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1133, 'huaira', 'bhuaira@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:56.554152', '2015-03-18 23:08:56.554152', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1134, 'Pedro', 'trueno.pe@gmail.com', NULL, 1, '2015-03-18 23:08:56.651797', '2015-03-18 23:08:56.651797', 'Quintana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1135, 'Francisco', 'cromososma@gmail.com', NULL, 1, '2015-03-18 23:08:56.669343', '2015-03-18 23:08:56.669343', 'E. Navarrete Sitja')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1136, 'Francisco', 'franciscositja@yahoo.com', NULL, 1, '2015-03-18 23:08:56.686846', '2015-03-18 23:08:56.686846', 'Esteban Navarrete Sitja')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1137, 'CRISTOBAL', 'cristobalgazmuri@gmail.com', NULL, 1, '2015-03-18 23:08:56.707445', '2015-03-18 23:08:56.707445', 'GAZMURI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1138, 'jose', 'jm_marty@hotmail.com', NULL, 1, '2015-03-18 23:08:56.742573', '2015-03-18 23:08:56.742573', 'miguel marty')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1139, 'Gonzalo', 'blodoks@hotmail.com', NULL, 1, '2015-03-18 23:08:56.762395', '2015-03-18 23:08:56.762395', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1140, 'alfonso', 'cruzjalfonso@yahoo.es', NULL, 1, '2015-03-18 23:08:56.785437', '2015-03-18 23:08:56.785437', 'cruz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1141, 'Alvaro', 'wirinkutral@gmail.com', NULL, 1, '2015-03-18 23:08:56.821208', '2015-03-18 23:08:56.821208', 'Vargas Vargas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1142, 'alex', 'al_atac3@hotmail.com', NULL, 1, '2015-03-18 23:08:56.855861', '2015-03-18 23:08:56.855861', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1143, 'Javiera', 'delesterorealizadora@gmail.com', NULL, 1, '2015-03-18 23:08:56.888594', '2015-03-18 23:08:56.888594', 'Gallardo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1144, 'Jorge', 'jorgemorenogomez@gmail.com', NULL, 1, '2015-03-18 23:08:56.906915', '2015-03-18 23:08:56.906915', 'moreno gomez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1145, 'José', 'jose.conchajara@gmail.com', NULL, 1, '2015-03-18 23:08:56.919557', '2015-03-18 23:08:56.919557', 'Concha Jara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1146, 'Roberto', 'robertogiustigiusti@gmail.com', NULL, 1, '2015-03-18 23:08:56.942277', '2015-03-18 23:08:56.942277', 'Giusti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1147, 'María', 'mariaagabler@gmail.com', NULL, 1, '2015-03-18 23:08:56.974656', '2015-03-18 23:08:56.974656', 'Gabler')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1148, 'Viviana', 'corvalanarmijo@gmail.com', NULL, 1, '2015-03-18 23:08:56.995577', '2015-03-18 23:08:56.995577', 'Corvalán Armijo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1149, 'Ales', 'ales.villegas@gmail.com', NULL, 1, '2015-03-18 23:08:57.031657', '2015-03-18 23:08:57.031657', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1150, 'gabriel', 'elartista04@hotmail.com', NULL, 1, '2015-03-18 23:08:57.054747', '2015-03-18 23:08:57.054747', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1151, 'Malinalli', 'quiauhtecpa@yahoo.com.mx', NULL, 1, '2015-03-18 23:08:57.085083', '2015-03-18 23:08:57.085083', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1152, 'Miguel', 'miguel.dinamarca@gmail.com', NULL, 1, '2015-03-18 23:08:57.109735', '2015-03-18 23:08:57.109735', 'Castro Dinamarca')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1153, 'Hugo', 'moephius@gmail.com', NULL, 1, '2015-03-18 23:08:57.140180', '2015-03-18 23:08:57.140180', 'Javier Palmar Cruz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1154, 'René', 'renemoya4@gmail.com', NULL, 1, '2015-03-18 23:08:57.162033', '2015-03-18 23:08:57.162033', 'Moya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1155, 'Brisa', 'ciacaidalibre@hotmail.com', NULL, 1, '2015-03-18 23:08:57.244260', '2015-03-18 23:08:57.244260', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1156, 'Flavio', 'flapan@vtr.net', NULL, 1, '2015-03-18 23:08:57.276744', '2015-03-18 23:08:57.276744', 'Pancetti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1157, 'Alexa', 'alexaphotos@gmail.com', NULL, 1, '2015-03-18 23:08:57.303067', '2015-03-18 23:08:57.303067', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1158, 'Claudio', 'alescartonera@gmail.com', NULL, 1, '2015-03-18 23:08:57.342837', '2015-03-18 23:08:57.342837', 'Mares')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1159, 'Claudia', 'laclaudiasalas@gmail.com', NULL, 1, '2015-03-18 23:08:57.366894', '2015-03-18 23:08:57.366894', 'Salas Vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1160, 'Joaquin', 'iturrietabarra@gmail.com', NULL, 1, '2015-03-18 23:08:57.389218', '2015-03-18 23:08:57.389218', 'Alfredo Iturrieta Barra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1161, 'Francisco', 'francisco.sitja@gmail.com', NULL, 1, '2015-03-18 23:08:57.418270', '2015-03-18 23:08:57.418270', 'Navarrete')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1162, 'alex', 'spiacente.signore@gmail.com', NULL, 1, '2015-03-18 23:08:57.433691', '2015-03-18 23:08:57.433691', 'reimann')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1163, 'Claudia', 'Clau_bwm@hotmail.com', NULL, 1, '2015-03-18 23:08:57.465528', '2015-03-18 23:08:57.465528', 'P.M.Santibáñez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1164, 'Pilar', 'deliriosvioletas@gmail.com', NULL, 1, '2015-03-18 23:08:57.485208', '2015-03-18 23:08:57.485208', 'Contreras Gonzalez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1165, 'Pilarde', 'pateberlin@hotmail.es', NULL, 1, '2015-03-18 23:08:57.512237', '2015-03-18 23:08:57.512237', 'conzales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1166, 'Ana', 'acvicuna@gmail.com', NULL, 1, '2015-03-18 23:08:57.531864', '2015-03-18 23:08:57.531864', 'Catalina Vicuña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1167, 'Nico', 'norellana@gmail.com', NULL, 1, '2015-03-18 23:08:57.553216', '2015-03-18 23:08:57.553216', 'Orellana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1168, 'Triana', 'yuki_sunao@hotmail.com', NULL, 1, '2015-03-18 23:08:57.577733', '2015-03-18 23:08:57.577733', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1169, 'fjba', 'mozaico@gmail.com', NULL, 1, '2015-03-18 23:08:57.609834', '2015-03-18 23:08:57.609834', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1170, 'Franco', 'etertaller@hotmail.com', NULL, 1, '2015-03-18 23:08:57.629974', '2015-03-18 23:08:57.629974', 'Rampoldi Cifuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1171, 'Jorge', 'arquijorge.dib@gmail.com', NULL, 1, '2015-03-18 23:08:57.660593', '2015-03-18 23:08:57.660593', 'D'' Az Carrasco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1172, 'Francisca', 'francisca.martinezfernandez@gmail.com', NULL, 1, '2015-03-18 23:08:57.676065', '2015-03-18 23:08:57.676065', 'Martínez Fernández')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1173, 'EDWARDS', 'DOBLESTAY@GMAIL.COM', NULL, 1, '2015-03-18 23:08:57.700206', '2015-03-18 23:08:57.700206', 'ESTAY')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1174, 'andrea', 'dipunto@vtr.net', NULL, 1, '2015-03-18 23:08:57.761360', '2015-03-18 23:08:57.761360', 'rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1175, 'Mario', 'fotos.omega@gmail.com', NULL, 1, '2015-03-18 23:08:57.784943', '2015-03-18 23:08:57.784943', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1176, 'sole', 'sole.p.o@gmail.com', NULL, 1, '2015-03-18 23:08:57.810442', '2015-03-18 23:08:57.810442', 'poirot')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1177, 'Scandar', 's.bh_@hotmail.com', NULL, 1, '2015-03-18 23:08:57.841521', '2015-03-18 23:08:57.841521', 'Bradford')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1178, 'Carolina', 'carolinasoft@gmail.com', NULL, 1, '2015-03-18 23:08:57.867694', '2015-03-18 23:08:57.867694', 'Penafiel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1179, 'Elias', 'elias.carlo@gmail.com', NULL, 1, '2015-03-18 23:08:57.894865', '2015-03-18 23:08:57.894865', 'Carlo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1180, 'paola', 'pcrios@gmail.com', NULL, 1, '2015-03-18 23:08:57.956400', '2015-03-18 23:08:57.956400', 'rios peters')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1181, 'loreto', 'loretogreve@hotmail.com', NULL, 1, '2015-03-18 23:08:58.000758', '2015-03-18 23:08:58.000758', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1182, 'Gerardo', 'olmazabal@gmail.com', NULL, 1, '2015-03-18 23:08:58.022124', '2015-03-18 23:08:58.022124', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1183, 'Ale', 'avillas1000@yahoo.com', NULL, 1, '2015-03-18 23:08:58.043051', '2015-03-18 23:08:58.043051', 'Villasmil')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1184, 'Daniel', 'no_surprises@live.cl', NULL, 1, '2015-03-18 23:08:58.062943', '2015-03-18 23:08:58.062943', 'Campos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1185, 'Paulina', 'paulinagarciac@gmail.com', NULL, 1, '2015-03-18 23:08:58.074334', '2015-03-18 23:08:58.074334', 'Garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1186, 'aaaa', 'pichulita@esfera.cl', NULL, 1, '2015-03-18 23:08:58.100927', '2015-03-18 23:08:58.100927', 'gg')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1187, 'felipe', 'mocoetereo@hotmail.com', NULL, 1, '2015-03-18 23:08:58.118582', '2015-03-18 23:08:58.118582', 'gonzalez valero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1188, 'felipegonzalezvalero', 'fgonzalezarriagada@gmail.com', NULL, 1, '2015-03-18 23:08:58.133617', '2015-03-18 23:08:58.133617', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1189, 'Manuel', 'manuelss@hotmail.com', NULL, 1, '2015-03-18 23:08:58.166093', '2015-03-18 23:08:58.166093', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1190, 'Claudia', 'cmibanez@puc.cl', NULL, 1, '2015-03-18 23:08:58.189194', '2015-03-18 23:08:58.189194', 'Ibáñez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1191, 'Rodrigo', 'violante.rodrigo@gmail.com', NULL, 1, '2015-03-18 23:08:58.217891', '2015-03-18 23:08:58.217891', 'Violante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1192, 'Cristobal', 'tb.cristobal@gmail.com', NULL, 1, '2015-03-18 23:08:58.230126', '2015-03-18 23:08:58.230126', 'Traslaviña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1193, 'Joseph', 'jshaoul@gmail.com', NULL, 1, '2015-03-18 23:08:59.074422', '2015-03-18 23:08:59.074422', 'Shaoul')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1194, 'Verónica', 'vroaguirre@hotmail.com', NULL, 1, '2015-03-18 23:08:59.084274', '2015-03-18 23:08:59.084274', 'Aguirre LInares')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1195, 'Cristian', 'cmoralesk@gmail.com', NULL, 1, '2015-03-18 23:08:59.092976', '2015-03-18 23:08:59.092976', 'Fernando Morales-Kallina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1196, 'Andres', 'marchantdearte@gmail.com', NULL, 1, '2015-03-18 23:08:59.101400', '2015-03-18 23:08:59.101400', 'Chavez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1197, 'francisca', 'pancha_al@hotmail.com', NULL, 1, '2015-03-18 23:08:59.111358', '2015-03-18 23:08:59.111358', 'alvarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1198, 'Carolina', 'caroparra@hotmail.com', NULL, 1, '2015-03-18 23:08:59.133189', '2015-03-18 23:08:59.133189', 'Parra Ortega')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1199, 'Rodrigo', 'fuentesrodrigo@gmail.com', NULL, 1, '2015-03-18 23:08:59.147440', '2015-03-18 23:08:59.147440', 'Fuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1200, 'Daniela', 'danizeta@gmail.com', NULL, 1, '2015-03-18 23:08:59.156750', '2015-03-18 23:08:59.156750', 'Zúñiga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1201, 'Cristián', 'cristiandepablo@gmail.com', NULL, 1, '2015-03-18 23:08:59.164876', '2015-03-18 23:08:59.164876', 'de Pablo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1202, 'darwin', 'urbanodonte@gmail.com', NULL, 1, '2015-03-18 23:08:59.181927', '2015-03-18 23:08:59.181927', 'andino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1203, 'JAIME', 'RUTHD4444@HOTMAIL.COM', NULL, 1, '2015-03-18 23:08:59.190734', '2015-03-18 23:08:59.190734', 'DOMÍNGUEZ BLEIN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1204, 'eduardo', 'fromebg@hotmail.com', NULL, 1, '2015-03-18 23:08:59.199519', '2015-03-18 23:08:59.199519', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1205, 'CRISTIAN', 'pecesillo@gmail.com', NULL, 1, '2015-03-18 23:08:59.285573', '2015-03-18 23:08:59.285573', 'VIVANCO MENDEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1206, 'Raimundo', 'raymondlakes@gmail.com', NULL, 1, '2015-03-18 23:08:59.294818', '2015-03-18 23:08:59.294818', 'Lagos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1207, 'Paulo', 'methoz@gmail.com', NULL, 1, '2015-03-18 23:08:59.304090', '2015-03-18 23:08:59.304090', 'Mendez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1208, 'Doris', 'dmoralesvogt@yahoo.es', NULL, 1, '2015-03-18 23:08:59.313034', '2015-03-18 23:08:59.313034', 'Morales Vogt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1209, 'pablo', 'pablo_88x@hotmail.com', NULL, 1, '2015-03-18 23:08:59.321959', '2015-03-18 23:08:59.321959', 'sandoval poblete')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1210, 'Romina', 'caesargazli@gmail.com', NULL, 1, '2015-03-18 23:08:59.349389', '2015-03-18 23:08:59.349389', 'Caceres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1211, 'Paola', 'pferraris@vtr.net', NULL, 1, '2015-03-18 23:08:59.358955', '2015-03-18 23:08:59.358955', 'Ferraris')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1212, 'Alberto', '1220@albertolazo.cl', NULL, 1, '2015-03-18 23:08:59.366879', '2015-03-18 23:08:59.366879', 'Lazo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1213, 'MARIA', 'mim698@hotmail.com', NULL, 1, '2015-03-18 23:08:59.375788', '2015-03-18 23:08:59.375788', 'INES MORAGA MOLLENHAUER')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1214, 'MANE', 'manemoraga@yahoo.com', NULL, 1, '2015-03-18 23:08:59.384723', '2015-03-18 23:08:59.384723', 'MORAGA MOLLENHAUER')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1215, 'Christian', 'metamann@metamann.com', NULL, 1, '2015-03-18 23:08:59.397662', '2015-03-18 23:08:59.397662', 'Ziehlmann')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1216, 'Alfredo', 'tonika@entelchile.net', NULL, 1, '2015-03-18 23:08:59.406543', '2015-03-18 23:08:59.406543', 'Burrell')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1217, 'valentina', 'tinne_duir@hotmail.com', NULL, 1, '2015-03-18 23:08:59.415037', '2015-03-18 23:08:59.415037', 'arevalo lamas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1218, 'Jack', 'poetayladron@gmail.com', NULL, 1, '2015-03-18 23:08:59.423373', '2015-03-18 23:08:59.423373', 'Lesage')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1219, 'alberto', 'almabusari@hotmail.com', NULL, 1, '2015-03-18 23:08:59.432236', '2015-03-18 23:08:59.432236', 'bustos arias')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1220, 'Alvaro', 'aqt@powermedia.cl', NULL, 1, '2015-03-18 23:08:59.448231', '2015-03-18 23:08:59.448231', 'Quezada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1221, 'Nicolás', 'le.ivre@gmail.com', NULL, 1, '2015-03-18 23:08:59.457502', '2015-03-18 23:08:59.457502', 'Bravo Gárate')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1222, 'RAMON', 'gtramonna@hotmail.com', NULL, 1, '2015-03-18 23:08:59.466307', '2015-03-18 23:08:59.466307', 'CABRERA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1223, 'liliana', 'lilianismo@hotmail.com', NULL, 1, '2015-03-18 23:08:59.475558', '2015-03-18 23:08:59.475558', 'joplin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1224, 'Estefanía', 'cramberrie@gmail.com', NULL, 1, '2015-03-18 23:08:59.484103', '2015-03-18 23:08:59.484103', 'Bravo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1225, 'macarena', 'macarenaperich@gmail.com', NULL, 1, '2015-03-18 23:08:59.498578', '2015-03-18 23:08:59.498578', 'perich rosas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1226, 'Javier', 'javier.rodriguez.pino@gmail.com', NULL, 1, '2015-03-18 23:08:59.507339', '2015-03-18 23:08:59.507339', 'Rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1227, 'ruboc', 'ru.sottolichio@gmail.com', NULL, 1, '2015-03-18 23:08:59.515668', '2015-03-18 23:08:59.515668', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1228, 'Juan', 'jpfarru@hotmail.com', NULL, 1, '2015-03-18 23:08:59.524548', '2015-03-18 23:08:59.524548', 'Pablo Farru')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1229, 'Dominique', 'domilath@gmail.com', NULL, 1, '2015-03-18 23:08:59.533493', '2015-03-18 23:08:59.533493', 'Lathrop')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1230, 'hugo', 'hugo.arenas@enaer.cl', NULL, 1, '2015-03-18 23:08:59.547548', '2015-03-18 23:08:59.547548', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1231, 'Carlos', 'artecota@yahoo.es', NULL, 1, '2015-03-18 23:08:59.557231', '2015-03-18 23:08:59.557231', 'Carrasco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1232, 'CarloCota', 'artecotacarloscarrasco@gmail.com', NULL, 1, '2015-03-18 23:08:59.565756', '2015-03-18 23:08:59.565756', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1233, 'joel', 'g29digital@gmail.com', NULL, 1, '2015-03-18 23:08:59.574945', '2015-03-18 23:08:59.574945', 'caica')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1234, 'Constanza', 'm.constanza.avello@gmail.com', NULL, 1, '2015-03-18 23:08:59.583877', '2015-03-18 23:08:59.583877', 'Avello')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1235, 'carla', 'carlis306@hotmail.com', NULL, 1, '2015-03-18 23:08:59.597988', '2015-03-18 23:08:59.597988', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1236, 'DYANGO', 'dyango.escultor@gmail.com', NULL, 1, '2015-03-18 23:08:59.606672', '2015-03-18 23:08:59.606672', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1237, 'María', 'jesu_cdm@hotmail.com', NULL, 1, '2015-03-18 23:08:59.615102', '2015-03-18 23:08:59.615102', 'Jesús Gomez Donoso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1238, 'Felipe', 'henruz@gmail.com', NULL, 1, '2015-03-18 23:08:59.624247', '2015-03-18 23:08:59.624247', 'Henríquez Ruz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1239, 'Colectivo', 'michwanoo1@hotmail.com', NULL, 1, '2015-03-18 23:08:59.633707', '2015-03-18 23:08:59.633707', 'Heroestencil')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1240, 'ivhan', 'ivhan_franco@hotmail.com', NULL, 1, '2015-03-18 23:08:59.647063', '2015-03-18 23:08:59.647063', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1241, 'Barbara', 'barbarawormull@hotmail.com', NULL, 1, '2015-03-18 23:08:59.655565', '2015-03-18 23:08:59.655565', 'Wormull')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1242, 'Maria', 'mlavaisse@hotmail.com', NULL, 1, '2015-03-18 23:08:59.665561', '2015-03-18 23:08:59.665561', 'Luisa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1243, 'Beatriz', 'beatrizvarga@gmail.com', NULL, 1, '2015-03-18 23:08:59.674147', '2015-03-18 23:08:59.674147', 'Vargas González')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1244, 'Said', 'saidokins@yahoo.com.mx', NULL, 1, '2015-03-18 23:08:59.682719', '2015-03-18 23:08:59.682719', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1245, 'Miguel', 'zs@live.cl', NULL, 1, '2015-03-18 23:08:59.698316', '2015-03-18 23:08:59.698316', 'Ángel Leal Silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1246, 'Joselyne', 'katty9981@hotmail.com', NULL, 1, '2015-03-18 23:08:59.706969', '2015-03-18 23:08:59.706969', 'Contreras Cerda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1247, 'Enric', 'info@enricbardera.com', NULL, 1, '2015-03-18 23:08:59.715509', '2015-03-18 23:08:59.715509', 'Bardera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1248, 'Paulina', 'paulinavelizg@gmail.com', NULL, 1, '2015-03-18 23:08:59.725204', '2015-03-18 23:08:59.725204', 'Veliz gutierrez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1249, 'victor', 'victortugahiena@hotmail.com', NULL, 1, '2015-03-18 23:08:59.734416', '2015-03-18 23:08:59.734416', 'flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1250, 'Carolina', 'artistavisualcca@gmail.com', NULL, 1, '2015-03-18 23:08:59.747757', '2015-03-18 23:08:59.747757', 'Paz Cortés Araya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1251, 'Carolina', 'carolinapazcortes@gmail.com', NULL, 1, '2015-03-18 23:08:59.756520', '2015-03-18 23:08:59.756520', 'Paz Cortes A.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1252, 'carolina', 'pazpudica@gmail.com', NULL, 1, '2015-03-18 23:08:59.765407', '2015-03-18 23:08:59.765407', 'paz cortes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1253, 'nicole', 'piojito_0.7@hotmail.com', NULL, 1, '2015-03-18 23:08:59.774403', '2015-03-18 23:08:59.774403', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1254, 'ALEJANDRO', 'schmittzalba@yahoo.es', NULL, 1, '2015-03-18 23:08:59.783062', '2015-03-18 23:08:59.783062', 'SCHMITT')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1255, 'Carlos', 'brunacarlos@gmail.com', NULL, 1, '2015-03-18 23:08:59.797342', '2015-03-18 23:08:59.797342', 'Bruna')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1256, 'SALA', 'info@sala01.cl', NULL, 1, '2015-03-18 23:08:59.806065', '2015-03-18 23:08:59.806065', '01')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1257, 'Felipe', 'felipe-aliaga@hotmail.com', NULL, 1, '2015-03-18 23:08:59.814336', '2015-03-18 23:08:59.814336', 'Aliaga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1258, 'Pía', 'piadellorto@gmail.com', NULL, 1, '2015-03-18 23:08:59.823989', '2015-03-18 23:08:59.823989', 'Dell´Orto Huneeus')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1259, 'All', 'masacra1@hotmail.com', NULL, 1, '2015-03-18 23:08:59.833780', '2015-03-18 23:08:59.833780', 'Gore')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1260, 'CaRoLiNa', 'karoars.m.n@hotmail.com', NULL, 1, '2015-03-18 23:08:59.847475', '2015-03-18 23:08:59.847475', 'MiRaNdA NiLo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1261, 'David', 'elsir@hotmail.com', NULL, 1, '2015-03-18 23:08:59.874872', '2015-03-18 23:08:59.874872', 'Lino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1262, 'Claudio', 'ce.aguileraalvarez@gmail.com', NULL, 1, '2015-03-18 23:08:59.897722', '2015-03-18 23:08:59.897722', 'Aguilera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1263, 'maria', 'mariaguzmanc@gmail.com', NULL, 1, '2015-03-18 23:08:59.922121', '2015-03-18 23:08:59.922121', 'elena guzman')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1264, 'HAYDEE', 'sweet_child_82@hotmail.com', NULL, 1, '2015-03-18 23:08:59.932837', '2015-03-18 23:08:59.932837', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1265, 'Leonardo', 'dark_hunter_sr@hotmail.com', NULL, 1, '2015-03-18 23:08:59.941377', '2015-03-18 23:08:59.941377', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1266, 'Mauricio', 'mauroolivares@gmail.com', NULL, 1, '2015-03-18 23:08:59.955107', '2015-03-18 23:08:59.955107', 'Olivares Montes (mom)')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1267, 'camila', 'camii.relax@gmail.com', NULL, 1, '2015-03-18 23:09:00.025073', '2015-03-18 23:09:00.025073', 'diaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1268, 'Gustavo', 'gustavors@gmail.com', NULL, 1, '2015-03-18 23:09:00.052958', '2015-03-18 23:09:00.052958', 'Miranda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1269, 'Jacqueline', 'juju1992@hotmail.com', NULL, 1, '2015-03-18 23:09:00.062448', '2015-03-18 23:09:00.062448', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1270, 'Geraldine', 'tarasolar@gmail.com', NULL, 1, '2015-03-18 23:09:00.080989', '2015-03-18 23:09:00.080989', 'Karina Toledo Guerrero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1271, 'cindy', 'vivemosaico@gmail.com', NULL, 1, '2015-03-18 23:09:00.090358', '2015-03-18 23:09:00.090358', 'pizarro toledo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1272, 'Jaime', 'superjaimo@gmail.com', NULL, 1, '2015-03-18 23:09:00.099323', '2015-03-18 23:09:00.099323', 'Alvarado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1273, 'Mila', 'videodanzacl@gmail.com', NULL, 1, '2015-03-18 23:09:00.130467', '2015-03-18 23:09:00.130467', 'Berríos Palomino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1274, 'cristian', 'cristian_rsa@hotmail.com', NULL, 1, '2015-03-18 23:09:00.144426', '2015-03-18 23:09:00.144426', 'orsen krugen vain')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1275, 'Salvador', 'sreyes@ripley.cl', NULL, 1, '2015-03-18 23:09:00.153332', '2015-03-18 23:09:00.153332', 'Reyes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1276, 'oscar', 'robot2xl@gmail.com', NULL, 1, '2015-03-18 23:09:00.167763', '2015-03-18 23:09:00.167763', 'a. garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1277, 'claudia', 'videofemme@yahoo.com', NULL, 1, '2015-03-18 23:09:00.180482', '2015-03-18 23:09:00.180482', 'prado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1278, 'PIOJORADIOACTIVO', 'jetiandolamoska@hotmail.com', NULL, 1, '2015-03-18 23:09:00.189950', '2015-03-18 23:09:00.189950', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1279, 'Andres', 'franco_zuna@hotmail.com', NULL, 1, '2015-03-18 23:09:00.244668', '2015-03-18 23:09:00.244668', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1280, 'Diego', 'throne_of_alzeth88@hotmail.com', NULL, 1, '2015-03-18 23:09:00.274449', '2015-03-18 23:09:00.274449', 'Donoso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1281, 'gustavo', 'gustavodanielrios@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:00.283841', '2015-03-18 23:09:00.283841', 'daniel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1282, 'ian', 'oyeian@hotmail.com', NULL, 1, '2015-03-18 23:09:00.297257', '2015-03-18 23:09:00.297257', 'obrecht')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1283, 'David', 'david.floreshora@gmail.com', NULL, 1, '2015-03-18 23:09:00.306810', '2015-03-18 23:09:00.306810', 'Flores-Hora')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1284, 'nilo', 'nilo.casares@uv.es', NULL, 1, '2015-03-18 23:09:00.315437', '2015-03-18 23:09:00.315437', 'casares')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1285, 'Andrea', 'praeesse@hotmail.com', NULL, 1, '2015-03-18 23:09:00.324338', '2015-03-18 23:09:00.324338', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1286, 'cristian', 'crismurg_93@hotmail.com', NULL, 1, '2015-03-18 23:09:00.345204', '2015-03-18 23:09:00.345204', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1287, 'arturo', 'laradiocarpintero@gmail.com', NULL, 1, '2015-03-18 23:09:00.378482', '2015-03-18 23:09:00.378482', 'mayegas ugarte')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1288, 'C.', 'cglorianova@gmail.com', NULL, 1, '2015-03-18 23:09:00.396420', '2015-03-18 23:09:00.396420', 'GLoria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1289, 'paraiso', 'podriasveniraverme@gmail.com', NULL, 1, '2015-03-18 23:09:00.422818', '2015-03-18 23:09:00.422818', 'chi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1290, 'Carlos', 'cdeurresti@skinrsp.cl', NULL, 1, '2015-03-18 23:09:00.432303', '2015-03-18 23:09:00.432303', 'de Urresti Longton')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1291, 'Rubnéia', 'rubneia@gmail.com', NULL, 1, '2015-03-18 23:09:00.446926', '2015-03-18 23:09:00.446926', 'Leandro de Souza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1292, 'Carlos', 'cureta@pmc.cl', NULL, 1, '2015-03-18 23:09:00.456079', '2015-03-18 23:09:00.456079', 'Ureta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1293, 'javier', 'jasi71@hotmail.com', NULL, 1, '2015-03-18 23:09:00.476335', '2015-03-18 23:09:00.476335', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1294, 'OUED', 'oued2@yahoo.es', NULL, 1, '2015-03-18 23:09:00.485985', '2015-03-18 23:09:00.485985', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1295, 'Hijo', 'hijo_ra@hotmail.com', NULL, 1, '2015-03-18 23:09:00.507420', '2015-03-18 23:09:00.507420', 'Ra Leiva Cabrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1296, 'daniela', 'danielaperezdearce@hotmail.com', NULL, 1, '2015-03-18 23:09:00.516206', '2015-03-18 23:09:00.516206', 'pérez de arce valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1297, 'la', 'rosaeliasmass@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:00.532654', '2015-03-18 23:09:00.532654', 'gata roja')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1298, 'nora', 'in_unda@hotmail.com', NULL, 1, '2015-03-18 23:09:00.565861', '2015-03-18 23:09:00.565861', 'unda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1299, 'ROBERTO', 'faundez.roberto@gmail.com', NULL, 1, '2015-03-18 23:09:00.574991', '2015-03-18 23:09:00.574991', 'FAUNDEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1300, 'Valentina', 'valentina.montero@gmail.com', NULL, 1, '2015-03-18 23:09:00.599760', '2015-03-18 23:09:00.599760', 'Montero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1301, 'BodhiNirav', 'bodhinirav@gmail.com', NULL, 1, '2015-03-18 23:09:00.633054', '2015-03-18 23:09:00.633054', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1302, 'Constanza', 'cotaguell@gmail.com', NULL, 1, '2015-03-18 23:09:00.666778', '2015-03-18 23:09:00.666778', 'Guell')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1303, 'Sergio', 'sergioamado@claroscuroafv.com', NULL, 1, '2015-03-18 23:09:00.699485', '2015-03-18 23:09:00.699485', 'Amado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1304, 'Monica', 'mrojaspi@gmail.com', NULL, 1, '2015-03-18 23:09:00.724518', '2015-03-18 23:09:00.724518', 'Rojas Piffre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1305, 'mg', 'milaymultitud@gmail.com', NULL, 1, '2015-03-18 23:09:00.759719', '2015-03-18 23:09:00.759719', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1306, 'jenny', 'gocasantana@hotmail.com', NULL, 1, '2015-03-18 23:09:00.793725', '2015-03-18 23:09:00.793725', 'santana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1307, 'Alejandro', 'alejandrovisual@gmail.com', NULL, 1, '2015-03-18 23:09:00.822976', '2015-03-18 23:09:00.822976', 'Ortiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1308, 'Juan', 'pequenyojuan@gmail.com', NULL, 1, '2015-03-18 23:09:00.845968', '2015-03-18 23:09:00.845968', 'Manuel Ipiña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1309, 'Natalia', 'solnaciente29@gmail.com', NULL, 1, '2015-03-18 23:09:00.866216', '2015-03-18 23:09:00.866216', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1310, 'Renzo', 'renzovisual@gmail.com', NULL, 1, '2015-03-18 23:09:00.895880', '2015-03-18 23:09:00.895880', 'Ortega')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1311, 'alejandro', 'elcanoa@gmail.com', NULL, 1, '2015-03-18 23:09:00.912474', '2015-03-18 23:09:00.912474', 'quiroga vial')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1312, 'Mac', 'mac@mac.cl', NULL, 1, '2015-03-18 23:09:00.921549', '2015-03-18 23:09:00.921549', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1313, 'valentina', 'vacc85@yahoo.com', NULL, 1, '2015-03-18 23:09:00.952925', '2015-03-18 23:09:00.952925', 'castro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1314, 'Hector', 'berceruelohector@gmail.com', NULL, 1, '2015-03-18 23:09:00.967393', '2015-03-18 23:09:00.967393', 'Martinez Berceruelo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1315, 'Sebastian', 'concigliery@gmail.com', NULL, 1, '2015-03-18 23:09:00.993063', '2015-03-18 23:09:00.993063', 'Alberto Lopez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1316, 'Paula', 'tiepola@gmail.com', NULL, 1, '2015-03-18 23:09:01.019552', '2015-03-18 23:09:01.019552', 'Molina Echegoyen')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1317, 'nani', 'nanidesarasqueta@gmail.com', NULL, 1, '2015-03-18 23:09:01.043370', '2015-03-18 23:09:01.043370', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1318, 'raquel', 'quenita__s@hotmail.com', NULL, 1, '2015-03-18 23:09:01.067371', '2015-03-18 23:09:01.067371', 'eugenia soto cortez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1319, 'Orlita', 'orlitaromerogomez@gmail.com', NULL, 1, '2015-03-18 23:09:01.102696', '2015-03-18 23:09:01.102696', 'Romero Gómez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1320, 'Pablo', 'pitapia@hotmail.com', NULL, 1, '2015-03-18 23:09:01.133224', '2015-03-18 23:09:01.133224', 'Tapia Villalobos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1321, 'patricio', 'patbrunapo@gmail.com', NULL, 1, '2015-03-18 23:09:01.152690', '2015-03-18 23:09:01.152690', 'bruna poblete')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1322, 'Martín', 'lecarospalumbo@gmail.com', NULL, 1, '2015-03-18 23:09:01.175626', '2015-03-18 23:09:01.175626', 'Lecaros')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1323, 'Luisa', 'luisa@srtata.com', NULL, 1, '2015-03-18 23:09:01.199187', '2015-03-18 23:09:01.199187', 'Fuentes Guaza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1324, 'Ano', 'pabloncholoncho@hotmail.com', NULL, 1, '2015-03-18 23:09:01.226120', '2015-03-18 23:09:01.226120', 'Nimo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1325, 'Francisca', 'pesaitamarisopa@yahoo.com', NULL, 1, '2015-03-18 23:09:01.249293', '2015-03-18 23:09:01.249293', 'Moyano Anfossi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1326, 'Mibuel', 'mmiranda4@hotmail.com', NULL, 1, '2015-03-18 23:09:01.277575', '2015-03-18 23:09:01.277575', 'Miranda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1327, 'joaquin', 'jdm@tmconceptos.cl', NULL, 1, '2015-03-18 23:09:01.307746', '2015-03-18 23:09:01.307746', 'mota')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1328, 'Javiera', 'javierarte68@yahoo.es', NULL, 1, '2015-03-18 23:09:01.332785', '2015-03-18 23:09:01.332785', 'Perez Escalante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1329, 'cordelia', 'cordegarza2@hotmail.com', NULL, 1, '2015-03-18 23:09:01.342406', '2015-03-18 23:09:01.342406', 'garza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1330, 'Eric', 'alcibarcr@hotmail.com', NULL, 1, '2015-03-18 23:09:01.361414', '2015-03-18 23:09:01.361414', 'Alcibar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1331, 'Juan', 'jpriquelmem@gmail.com', NULL, 1, '2015-03-18 23:09:01.370106', '2015-03-18 23:09:01.370106', 'Pablo Riquelme M')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1332, 'Jorge', 'vetealinfierno2@gmail.com', NULL, 1, '2015-03-18 23:09:01.388675', '2015-03-18 23:09:01.388675', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1333, 'Vicente', 'Necro__Goth@hotmail.com', NULL, 1, '2015-03-18 23:09:01.423819', '2015-03-18 23:09:01.423819', 'Zigarre des Regens')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1334, 'Gabriela', 'gabriela.aranguiz@hotmail.com', NULL, 1, '2015-03-18 23:09:01.440993', '2015-03-18 23:09:01.440993', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1335, 'Barbara', 'potter.barbarita@gmail.com', NULL, 1, '2015-03-18 23:09:01.467251', '2015-03-18 23:09:01.467251', 'Contreras')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1336, 'Eduardo', 'edoaraos@yahoo.es', NULL, 1, '2015-03-18 23:09:01.477092', '2015-03-18 23:09:01.477092', 'Araos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1337, 'constanza', 'constanzaloyolola@gmail.com', NULL, 1, '2015-03-18 23:09:01.540902', '2015-03-18 23:09:01.540902', 'loyola ramirez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1338, 'samuelsarmiento', 'samuelsarmiento87@hotmail.com', NULL, 1, '2015-03-18 23:09:01.568440', '2015-03-18 23:09:01.568440', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1339, 'A.', 'gusmillon@gmail.com', NULL, 1, '2015-03-18 23:09:01.596310', '2015-03-18 23:09:01.596310', 'Milo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1340, 'deisy', 'marcelinavargas@hotmail.com', NULL, 1, '2015-03-18 23:09:01.621581', '2015-03-18 23:09:01.621581', 'marcela vargas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1341, 'romulo', 'roartma@gmail.com', NULL, 1, '2015-03-18 23:09:01.646313', '2015-03-18 23:09:01.646313', 'martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1342, 'samir', 'samir1488@hotmail.com', NULL, 1, '2015-03-18 23:09:01.668671', '2015-03-18 23:09:01.668671', 'elneser')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1343, 'Carlos', 'graficadesplazada@mail.com', NULL, 1, '2015-03-18 23:09:01.695223', '2015-03-18 23:09:01.695223', 'Vidal Carvacho')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1344, 'Carlos', 'graficadesplazada@gmail.com', NULL, 1, '2015-03-18 23:09:01.719538', '2015-03-18 23:09:01.719538', 'Vidal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1345, 'Francisca', 'franciscaaaaa@gmail.com', NULL, 1, '2015-03-18 23:09:01.743213', '2015-03-18 23:09:01.743213', 'Alejandra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1346, 'Lester', 'ceroenlaizquierda@yahoo.es', NULL, 1, '2015-03-18 23:09:01.767478', '2015-03-18 23:09:01.767478', 'rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1347, 'gonzalo', 'gonzalopinoi@gmail.com', NULL, 1, '2015-03-18 23:09:01.791469', '2015-03-18 23:09:01.791469', 'pino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1348, 'Lady', 'belamorte@hotmail.com', NULL, 1, '2015-03-18 23:09:01.816957', '2015-03-18 23:09:01.816957', 'Death')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1349, 'Fernanda', 'belamorte@htomail.com', NULL, 1, '2015-03-18 23:09:01.890201', '2015-03-18 23:09:01.890201', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1350, 'Sebastián', 'sebastian.gaete@gmail.com', NULL, 1, '2015-03-18 23:09:01.917699', '2015-03-18 23:09:01.917699', 'Gaete Villavicencio')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1351, 'BRAVOESARTE', 'bravoesarteltda@gmail.com', NULL, 1, '2015-03-18 23:09:01.926886', '2015-03-18 23:09:01.926886', 'Ltda.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1352, 'gonzalo', 'odiogratuito_6@hotmail.com', NULL, 1, '2015-03-18 23:09:01.954181', '2015-03-18 23:09:01.954181', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1353, 'gonzalo', 'carvajal.6@gmail.com', NULL, 1, '2015-03-18 23:09:01.977883', '2015-03-18 23:09:01.977883', 'carvajal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1354, 'alejandrosanchez', 'alejandro.paint@hotmail.com', NULL, 1, '2015-03-18 23:09:01.986952', '2015-03-18 23:09:01.986952', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1355, 'Benito', 'rar@vtr.net', NULL, 1, '2015-03-18 23:09:02.001117', '2015-03-18 23:09:02.001117', 'Ricardi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1356, 'Alexandr', 'bogomazov@gmail.com', NULL, 1, '2015-03-18 23:09:02.017603', '2015-03-18 23:09:02.017603', 'Bogomazov')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1357, 'Kathrina_Blanko', 'kathrina_blanko@yahoo.com', NULL, 1, '2015-03-18 23:09:02.040977', '2015-03-18 23:09:02.040977', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1358, 'rebelion', 'rebelion.aka.rebe@gmail.com', NULL, 1, '2015-03-18 23:09:02.135348', '2015-03-18 23:09:02.135348', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1359, 'Juan', 'jpchinasky@gmail.com', NULL, 1, '2015-03-18 23:09:02.144108', '2015-03-18 23:09:02.144108', 'Pablo Martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1360, 'monitta', 'damona_zsa@hotmail.com', NULL, 1, '2015-03-18 23:09:02.152484', '2015-03-18 23:09:02.152484', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1361, 'Mary', 'magenttaa@gmail.com', NULL, 1, '2015-03-18 23:09:02.160610', '2015-03-18 23:09:02.160610', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1362, 'Blokis!', 'blokis@gmail.com', NULL, 1, '2015-03-18 23:09:02.175293', '2015-03-18 23:09:02.175293', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1363, 'Leticia', 'leticiagshinozaki@yahoo.com', NULL, 1, '2015-03-18 23:09:02.201065', '2015-03-18 23:09:02.201065', 'Guerra-Shinozaki')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1364, 'Armando', 'armando.urrea@yahoo.es', NULL, 1, '2015-03-18 23:09:02.210995', '2015-03-18 23:09:02.210995', 'Urrea Cifuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1365, 'matias', 'matias.elgueta.zarhi@gmail.com', NULL, 1, '2015-03-18 23:09:02.225724', '2015-03-18 23:09:02.225724', 'elgueta zarhi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1366, 'FERNANDOMENASOANEZ', 'fernandomenasoanez@libero.it', NULL, 1, '2015-03-18 23:09:02.235789', '2015-03-18 23:09:02.235789', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1367, 'Francisco', 'friosaraya@gmail.com', NULL, 1, '2015-03-18 23:09:02.245293', '2015-03-18 23:09:02.245293', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1368, 'academia', 'academiadeartemartinsoria@gmail.com', NULL, 1, '2015-03-18 23:09:02.253522', '2015-03-18 23:09:02.253522', 'de arte martin soria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1369, 'Mikel', 'mgaragorri@gmail.com', NULL, 1, '2015-03-18 23:09:02.262260', '2015-03-18 23:09:02.262260', 'Garagorri')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1370, 'COLUMPIO', 'columpiomadrid@yahoo.es', NULL, 1, '2015-03-18 23:09:02.287850', '2015-03-18 23:09:02.287850', '- galería de dibujo y obra en p')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1371, 'Sara', 'saradiciero@ciudad.com.ar', NULL, 1, '2015-03-18 23:09:02.300761', '2015-03-18 23:09:02.300761', 'Diciero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1372, 'cesar', 'renuard84@yahoo.com', NULL, 1, '2015-03-18 23:09:02.324781', '2015-03-18 23:09:02.324781', 'david')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1373, 'virginia', 'vguilisasti@hotmail.com', NULL, 1, '2015-03-18 23:09:02.346024', '2015-03-18 23:09:02.346024', 'guilisasti palacios')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1374, 'Montserrat', 'montsellados@lleida.org', NULL, 1, '2015-03-18 23:09:02.373526', '2015-03-18 23:09:02.373526', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1375, 'Montserrat', 'montsellados@ono.es', NULL, 1, '2015-03-18 23:09:02.382516', '2015-03-18 23:09:02.382516', 'Llados Farran')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1376, 'Montse', 'montsellados@ono.com', NULL, 1, '2015-03-18 23:09:02.393117', '2015-03-18 23:09:02.393117', 'Llados Farran')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1377, 'DHIMAS', 'dhimassantos@gmail.com', NULL, 1, '2015-03-18 23:09:02.408691', '2015-03-18 23:09:02.408691', 'SANTOS BAEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1378, 'Jaime', 'jaime_var@hotmail.com', NULL, 1, '2015-03-18 23:09:02.444455', '2015-03-18 23:09:02.444455', 'Vargas Aguilera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1379, 'Fabian', 'fabianortiz@gmail.com', NULL, 1, '2015-03-18 23:09:02.681222', '2015-03-18 23:09:02.681222', 'Ortiz Acero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1380, 'propagunder', 'propagunder@gmail.com', NULL, 1, '2015-03-18 23:09:02.690478', '2015-03-18 23:09:02.690478', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1381, 'matias', 'marakanaso@hotmail.com', NULL, 1, '2015-03-18 23:09:02.701006', '2015-03-18 23:09:02.701006', 'santa maria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1382, 'Polly', 'boca___boca@hotmail.com', NULL, 1, '2015-03-18 23:09:02.712294', '2015-03-18 23:09:02.712294', 'Esther')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1383, 'Sofia', 'sofinovella@mac.com', NULL, 1, '2015-03-18 23:09:02.741133', '2015-03-18 23:09:02.741133', 'Novella')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1384, 'Diana', 'harosauza_d@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:03.438615', '2015-03-18 23:09:03.438615', 'Haro Sauza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1385, 'ALBERTO', 'sciortino_a@hotmail.com', NULL, 1, '2015-03-18 23:09:03.448480', '2015-03-18 23:09:03.448480', 'SCIORTINO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1386, 'Gonzalo', 'golazodewander@hotmail.com', NULL, 1, '2015-03-18 23:09:03.457438', '2015-03-18 23:09:03.457438', 'Andrés San Martín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1387, 'Yumbel', 'delcolordelcielo@gmail.com', NULL, 1, '2015-03-18 23:09:03.465537', '2015-03-18 23:09:03.465537', 'Gongora')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1388, 'galo', 'galovilches@gmail.com', NULL, 1, '2015-03-18 23:09:03.474338', '2015-03-18 23:09:03.474338', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1389, 'galo', 'anitatequieromucho@hotmail.com', NULL, 1, '2015-03-18 23:09:03.489758', '2015-03-18 23:09:03.489758', 'vilches')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1390, 'Amparo', 'amparobaeza@gmail.com', NULL, 1, '2015-03-18 23:09:03.510497', '2015-03-18 23:09:03.510497', 'Baeza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1391, 'carlos', 'francaryave@gmail.com', NULL, 1, '2015-03-18 23:09:03.520413', '2015-03-18 23:09:03.520413', 'venegas')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1392, 'carlos', 'francaryave@hotmail.com', NULL, 1, '2015-03-18 23:09:03.538970', '2015-03-18 23:09:03.538970', 'venegas y')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1393, 'Italo', 'interruptorno@hotmail.com', NULL, 1, '2015-03-18 23:09:03.547535', '2015-03-18 23:09:03.547535', 'Contador Díaz')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1394, 'strahinja', 'pincel_vacio@hotmail.com', NULL, 1, '2015-03-18 23:09:03.556397', '2015-03-18 23:09:03.556397', 'bosuquet')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1395, 'valentina', 'valehb_91@hotmail.com', NULL, 1, '2015-03-18 23:09:03.565018', '2015-03-18 23:09:03.565018', 'hiriart')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1396, 'Verónica', 'beckermv@gmail.com', NULL, 1, '2015-03-18 23:09:03.574336', '2015-03-18 23:09:03.574336', 'Becker Marshall')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1397, 'carol', 'carolvisual@gmail.com', NULL, 1, '2015-03-18 23:09:03.589299', '2015-03-18 23:09:03.589299', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1398, 'Cristina', 'cris_horo@hotmail.com', NULL, 1, '2015-03-18 23:09:03.598222', '2015-03-18 23:09:03.598222', 'Alvarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1399, 'Strahinja', 'strahinjab@gmail.com', NULL, 1, '2015-03-18 23:09:03.606513', '2015-03-18 23:09:03.606513', 'Bousquet')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1400, 'Pulo', 'paulocontrerasadonis@gmail.com', NULL, 1, '2015-03-18 23:09:03.615191', '2015-03-18 23:09:03.615191', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1401, 'juan', 'info@juancarloscastillo.com', NULL, 1, '2015-03-18 23:09:03.624819', '2015-03-18 23:09:03.624819', 'carlos castillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1402, 'Josè', 'josemiguelfortunatti@gmail.com', NULL, 1, '2015-03-18 23:09:03.638683', '2015-03-18 23:09:03.638683', 'Miguel Fortunatti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1403, 'Pam', 'pan.cun.miel@gmail.com', NULL, 1, '2015-03-18 23:09:03.646912', '2015-03-18 23:09:03.646912', 'ela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1404, 'Ricardo', 'rrdecs@hotmail.com', NULL, 1, '2015-03-18 23:09:03.655317', '2015-03-18 23:09:03.655317', 'de Castro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1405, 'stella', 'smbrieva@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:03.663754', '2015-03-18 23:09:03.663754', 'maris')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1406, 'Camila', 'camiastabupe@yahoo.com', NULL, 1, '2015-03-18 23:09:03.672638', '2015-03-18 23:09:03.672638', 'Astaburuaga Peña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1407, 'Camila', 'camiastabupe@hotmail.com', NULL, 1, '2015-03-18 23:09:03.688401', '2015-03-18 23:09:03.688401', 'Astaburuaga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1408, 'Camila', 'camiastabupe@gmail.com', NULL, 1, '2015-03-18 23:09:03.697400', '2015-03-18 23:09:03.697400', 'Astaburuaga P')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1409, 'CLAUDIA', 'lasorda70@yahoo.com', NULL, 1, '2015-03-18 23:09:03.706024', '2015-03-18 23:09:03.706024', 'TAPIA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1410, 'Fabiola', 'ffabiola@live.cl', NULL, 1, '2015-03-18 23:09:03.714672', '2015-03-18 23:09:03.714672', 'Jacqueline Velásquez Martínez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1411, 'Maria', 'maca_rivera@hotmail.com', NULL, 1, '2015-03-18 23:09:03.723632', '2015-03-18 23:09:03.723632', 'Macarena Rivera de la Maza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1412, 'NATALIA', 'natilr@gmail.com', NULL, 1, '2015-03-18 23:09:03.739636', '2015-03-18 23:09:03.739636', 'LUCERO REQUESENS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1413, 'Juan', 'moya.jp@gmail.com', NULL, 1, '2015-03-18 23:09:03.748449', '2015-03-18 23:09:03.748449', 'Pablo Moya Reyes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1414, 'test', 'miguelmichelson@artenlinea.com', NULL, 1, '2015-03-18 23:09:03.757005', '2015-03-18 23:09:03.757005', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1415, 'Celeste', 'celextextex@gmail.com', NULL, 1, '2015-03-18 23:09:03.765251', '2015-03-18 23:09:03.765251', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1416, 'franco', 'franco_simonetti@hotmail.com', NULL, 1, '2015-03-18 23:09:03.789581', '2015-03-18 23:09:03.789581', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1417, 'Karen', 'karensoto_03@hotmail.com', NULL, 1, '2015-03-18 23:09:03.798487', '2015-03-18 23:09:03.798487', 'soto morel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1418, 'matias', 'matiasreyne@hotmail.com', NULL, 1, '2015-03-18 23:09:03.806387', '2015-03-18 23:09:03.806387', 'reyne')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1419, 'macro', 'psicomartillazo@gmail.com', NULL, 1, '2015-03-18 23:09:03.814466', '2015-03-18 23:09:03.814466', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1420, 'enrique', 'enriquecrusellas@hispeed.ch', NULL, 1, '2015-03-18 23:09:03.823945', '2015-03-18 23:09:03.823945', 'crusellas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1421, 'Maria', 'meugeniapoblete@gmail.com', NULL, 1, '2015-03-18 23:09:03.839208', '2015-03-18 23:09:03.839208', 'Eugenia Poblete Beas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1422, 'pulo_pixel', 'pulo@live.cl', NULL, 1, '2015-03-18 23:09:03.851985', '2015-03-18 23:09:03.851985', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1423, 'claudio', 'claudioromo@gmail.com', NULL, 1, '2015-03-18 23:09:03.860695', '2015-03-18 23:09:03.860695', 'romo torres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1424, 'Matías', 'matis.otondo@gmail.com', NULL, 1, '2015-03-18 23:09:03.869150', '2015-03-18 23:09:03.869150', 'José Otondo Salazar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1425, 'Matías', 'matias.otondo@gmail.com', NULL, 1, '2015-03-18 23:09:03.887390', '2015-03-18 23:09:03.887390', 'Otondo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1426, 'Academia', 'academiamartinsoria@gmail.com', NULL, 1, '2015-03-18 23:09:03.903067', '2015-03-18 23:09:03.903067', 'de Bellas Artes Martín Soria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1427, 'Martín', 'academiams@gmail.com', NULL, 1, '2015-03-18 23:09:03.912770', '2015-03-18 23:09:03.912770', 'Soria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1428, 'Astrid', 'art@artconsultants.de', NULL, 1, '2015-03-18 23:09:03.922118', '2015-03-18 23:09:03.922118', 'Gonschor')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1429, 'Paloma', 'paloma.iq@hotmail.com', NULL, 1, '2015-03-18 23:09:03.937809', '2015-03-18 23:09:03.937809', 'Infante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1430, 'maria', 'mzcote@gmail.com', NULL, 1, '2015-03-18 23:09:03.953606', '2015-03-18 23:09:03.953606', 'jose martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1431, 'Jacinta', 'jazjacinta@gmail.com', NULL, 1, '2015-03-18 23:09:03.962392', '2015-03-18 23:09:03.962392', 'Reyes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1432, 'Blanco', 'blancosanto@yahoo.es', NULL, 1, '2015-03-18 23:09:03.970688', '2015-03-18 23:09:03.970688', 'Santo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1433, 'Francisco', 'francisco.uzabeaga@gmail.com', NULL, 1, '2015-03-18 23:09:03.986683', '2015-03-18 23:09:03.986683', 'Uzabeaga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1434, 'artista', 'nenereguera@hotmail.com', NULL, 1, '2015-03-18 23:09:03.995643', '2015-03-18 23:09:03.995643', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1435, 'jaime', 'sothik@hotmail.com', NULL, 1, '2015-03-18 23:09:04.004270', '2015-03-18 23:09:04.004270', 'Gil')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1436, 'CARLOS', 'carlosvergarariv@gmail.com', NULL, 1, '2015-03-18 23:09:04.012746', '2015-03-18 23:09:04.012746', 'M. VERGARA R.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1437, 'Rosana', 'ro@rosanaruiz.com.ar', NULL, 1, '2015-03-18 23:09:04.023096', '2015-03-18 23:09:04.023096', 'Ruiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1438, 'Macka', 'Maca_eminem9@hotmail.com', NULL, 1, '2015-03-18 23:09:04.037211', '2015-03-18 23:09:04.037211', 'Backa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1439, 'Ingrid', 'ingridlauw@gmail.com', NULL, 1, '2015-03-18 23:09:04.059511', '2015-03-18 23:09:04.059511', 'Lauw')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1440, 'Andrés', 'andres@colectivopanal.org', NULL, 1, '2015-03-18 23:09:04.070352', '2015-03-18 23:09:04.070352', 'Roeschmann A')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1441, 'Marco', 'markucha_punk@yahoo.com', NULL, 1, '2015-03-18 23:09:04.086743', '2015-03-18 23:09:04.086743', 'Antonio Moscoso Velarde')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1442, 'Debbie', 'debbie.imclick@gmail.com', NULL, 1, '2015-03-18 23:09:04.095654', '2015-03-18 23:09:04.095654', 'Iglesias Muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1443, 'josiana', 'bjosiana@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:04.105249', '2015-03-18 23:09:04.105249', 'beain')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1444, 'Leopoldo', 'iozoi_ra@hotmail.com', NULL, 1, '2015-03-18 23:09:04.114594', '2015-03-18 23:09:04.114594', 'Cuéllar Chávez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1445, 'Paulina', 'hemiparasito@gmail.com', NULL, 1, '2015-03-18 23:09:04.123586', '2015-03-18 23:09:04.123586', 'M. Neely')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1446, 'María', 'mariaorecart@gmail.com', NULL, 1, '2015-03-18 23:09:04.137014', '2015-03-18 23:09:04.137014', 'Ossandón Recart')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1447, 'Marta', 'martasimil@gmail.com', NULL, 1, '2015-03-18 23:09:04.146126', '2015-03-18 23:09:04.146126', 'Hernandez Parraguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1448, 'Claudio', 'tintomir@gmail.com', NULL, 1, '2015-03-18 23:09:04.155683', '2015-03-18 23:09:04.155683', 'Miranda G.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1449, 'Macarena', 'macalvarado@gmail.com', NULL, 1, '2015-03-18 23:09:04.164196', '2015-03-18 23:09:04.164196', 'Alvarado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1450, 'Maria', 'rodriguezlapuentefernandez@gmail.com', NULL, 1, '2015-03-18 23:09:04.172532', '2015-03-18 23:09:04.172532', 'Francisca Rodríguez-Lapuente Ferná')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1451, 'Maria', 'yahveh-jire@hotmail.com', NULL, 1, '2015-03-18 23:09:04.187287', '2015-03-18 23:09:04.187287', 'Francisca Rodríguez-Lapuente Ferná')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1452, 'catalina', 'numeroquince@gmail.com', NULL, 1, '2015-03-18 23:09:04.196131', '2015-03-18 23:09:04.196131', 'osa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1453, 'Maria', 'numeroquince@hotmail.com', NULL, 1, '2015-03-18 23:09:04.204689', '2015-03-18 23:09:04.204689', 'Francisca Rodríguez-Lapuente Ferná')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1454, 'catalina', 'catalina_rosati@hotmail.com', NULL, 1, '2015-03-18 23:09:04.213617', '2015-03-18 23:09:04.213617', 'rosati garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1455, 'macarena', 'macapaztv@hotmail.com', NULL, 1, '2015-03-18 23:09:04.223261', '2015-03-18 23:09:04.223261', 'troncozo barrientos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1456, 'neme', 'nemee_@hotmail.com', NULL, 1, '2015-03-18 23:09:04.237531', '2015-03-18 23:09:04.237531', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1457, 'nemesio', 'nemesio.orellana@gmail.com', NULL, 1, '2015-03-18 23:09:04.246280', '2015-03-18 23:09:04.246280', 'orellana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1458, 'Nancy', 'Nancy.mansillaa@gmail.com', NULL, 1, '2015-03-18 23:09:04.255983', '2015-03-18 23:09:04.255983', 'Mansilla Alvarado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1459, 'Gustavo', 'g_fuenzlaida_u@hotmail.com', NULL, 1, '2015-03-18 23:09:04.264805', '2015-03-18 23:09:04.264805', 'Adolfo Fuenlida Ugalde')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1460, 'gustavo', 'g_fuenzalida_u@hotmail.com', NULL, 1, '2015-03-18 23:09:04.274103', '2015-03-18 23:09:04.274103', 'fuenzalida')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1461, 'Eileen', 'ejluneck@uc.cl', NULL, 1, '2015-03-18 23:09:04.286116', '2015-03-18 23:09:04.286116', 'Lunecke')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1462, 'Felipe', 'feliash@showbeats.cl', NULL, 1, '2015-03-18 23:09:04.295374', '2015-03-18 23:09:04.295374', 'Eliash')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1463, 'Macarena', 'macapaztb@gmail.com', NULL, 1, '2015-03-18 23:09:04.303359', '2015-03-18 23:09:04.303359', 'Troncozo Barrientos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1464, 'carlos', 'amadorzuniga@hotmail.fr', NULL, 1, '2015-03-18 23:09:04.313245', '2015-03-18 23:09:04.313245', 'antonio jara fuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1465, 'Romina', 'rominarebolledo@hotmail.com', NULL, 1, '2015-03-18 23:09:04.322782', '2015-03-18 23:09:04.322782', 'Rebolledo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1466, 'M.', 'micarod@gmail.com', NULL, 1, '2015-03-18 23:09:04.335962', '2015-03-18 23:09:04.335962', 'Inés Carod G.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1467, 'Javier', 'hjavibi@hotmail.com', NULL, 1, '2015-03-18 23:09:04.356722', '2015-03-18 23:09:04.356722', 'Perea')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1468, 'Mª', 'mbueno54@yahoo.es', NULL, 1, '2015-03-18 23:09:04.383841', '2015-03-18 23:09:04.383841', 'Angeles')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1469, 'Richard', 'richard.pintura@gmail.com', NULL, 1, '2015-03-18 23:09:04.394857', '2015-03-18 23:09:04.394857', 'Ramírez Cofré')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1470, 'Rubén', 'ruben@rubendeluis.com', NULL, 1, '2015-03-18 23:09:04.413238', '2015-03-18 23:09:04.413238', 'de Luis')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1471, 'Val', 'val_balmaceda@hotmail.com', NULL, 1, '2015-03-18 23:09:04.425135', '2015-03-18 23:09:04.425135', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1472, 'CONSTANZA', 'conimedina@gmail.com', NULL, 1, '2015-03-18 23:09:04.436915', '2015-03-18 23:09:04.436915', 'MEDINA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1473, 'pamela', 'disnois@gmail.com', NULL, 1, '2015-03-18 23:09:04.446306', '2015-03-18 23:09:04.446306', 'castillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1474, 'elirom', 'elirom_1555@hotmail.com', NULL, 1, '2015-03-18 23:09:04.472562', '2015-03-18 23:09:04.472562', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1475, 'Vilma', 'vilma.b.p@onda.com.br', NULL, 1, '2015-03-18 23:09:04.486427', '2015-03-18 23:09:04.486427', 'Paessens')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1476, 'e.romo', 'e.romo.art@gmail.com', NULL, 1, '2015-03-18 23:09:04.495090', '2015-03-18 23:09:04.495090', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1477, 'disnois', 'disnois@yahoo.com', NULL, 1, '2015-03-18 23:09:04.507860', '2015-03-18 23:09:04.507860', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1478, 'paula', 'paaulaanovoaa@gmail.com', NULL, 1, '2015-03-18 23:09:04.543680', '2015-03-18 23:09:04.543680', 'novoa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1479, 'Jènifer', 'deathdealer_96@hotmail.com', NULL, 1, '2015-03-18 23:09:04.553388', '2015-03-18 23:09:04.553388', 'Flores Morales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1480, 'Diego', 'die.rodriguez.perez@gmail.com', NULL, 1, '2015-03-18 23:09:04.563001', '2015-03-18 23:09:04.563001', 'Rodríguez Pérez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1481, 'Ivonne', 'ipalacios@manquehue.net', NULL, 1, '2015-03-18 23:09:04.571941', '2015-03-18 23:09:04.571941', 'Palacios Parra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1482, 'Enrique', 'silverstein_emo@hotmail.com', NULL, 1, '2015-03-18 23:09:04.633841', '2015-03-18 23:09:04.633841', 'Salinas Rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1483, 'CLAUDIO', 'CAFERESTOBAR.VALENTTINO@GMAIL.COM', NULL, 1, '2015-03-18 23:09:04.662716', '2015-03-18 23:09:04.662716', 'GALLEGUILLOS CORTES')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1484, 'María', 'mpepav@yahoo.es', NULL, 1, '2015-03-18 23:09:04.674497', '2015-03-18 23:09:04.674497', 'José')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1485, 'Matto', 'matto@tubatuba.net', NULL, 1, '2015-03-18 23:09:04.686597', '2015-03-18 23:09:04.686597', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1486, 'Pablo', 'pablo.rivera.t@gmail.com', NULL, 1, '2015-03-18 23:09:04.699676', '2015-03-18 23:09:04.699676', 'Rivera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1487, 'luciana', 'lucianagomez193@hotmail.com', NULL, 1, '2015-03-18 23:09:04.753907', '2015-03-18 23:09:04.753907', 'gomez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1488, 'Gabriela', 'info@gabrielacornejo.cl', NULL, 1, '2015-03-18 23:09:04.775999', '2015-03-18 23:09:04.775999', 'Cornejo García')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1489, 'chasco51', 'orlandito_galli@hotmail.com.ar', NULL, 1, '2015-03-18 23:09:04.787601', '2015-03-18 23:09:04.787601', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1490, 'chasco510', 'orlandito_galli@hotmail.com', NULL, 1, '2015-03-18 23:09:04.804554', '2015-03-18 23:09:04.804554', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1491, 'Loreto', 'loa.ojeda@blogspot.com', NULL, 1, '2015-03-18 23:09:04.813245', '2015-03-18 23:09:04.813245', 'Ojeda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1492, 'Amaru', 'amarupintor@gmail.com', NULL, 1, '2015-03-18 23:09:04.830986', '2015-03-18 23:09:04.830986', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1493, 'daniela', 'daniela-sh@hotmail-DISABLED.com', NULL, 1, '2015-03-18 23:09:04.844731', '2015-03-18 23:09:04.844731', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1494, 'cata', 'cmenal@vtr.net', NULL, 1, '2015-03-18 23:09:04.867581', '2015-03-18 23:09:04.867581', 'mena')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1495, 'mena', 'cmgeneraciondecontenidos@gmail.com', NULL, 1, '2015-03-18 23:09:04.955291', '2015-03-18 23:09:04.955291', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1496, 'felipe', 'fotomorfosis@gmail.com', NULL, 1, '2015-03-18 23:09:04.989985', '2015-03-18 23:09:04.989985', 'gamboa')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1497, 'Mariela', 'galactomari@yahoo.com', NULL, 1, '2015-03-18 23:09:05.018874', '2015-03-18 23:09:05.018874', 'Gonzalez Casanova')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1498, 'Sara', 'dplandiura@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:05.027630', '2015-03-18 23:09:05.027630', 'Viera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1499, 'Max', 'maxsepulvedaz@gmail.com', NULL, 1, '2015-03-18 23:09:05.036446', '2015-03-18 23:09:05.036446', 'Sepúlveda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1500, 'J', '8ctopus@gmail.com', NULL, 1, '2015-03-18 23:09:05.051571', '2015-03-18 23:09:05.051571', 'Neuf')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1501, 'Manuel', 'bythor@vtr.net', NULL, 1, '2015-03-18 23:09:05.078189', '2015-03-18 23:09:05.078189', 'Concha')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1502, 'Laura', 'mundorealmecanico@hotmail.com', NULL, 1, '2015-03-18 23:09:05.111383', '2015-03-18 23:09:05.111383', 'Virginia Santiago Araon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1503, 'Laura', 'halloweendenoche@hotmail.com', NULL, 1, '2015-03-18 23:09:05.123067', '2015-03-18 23:09:05.123067', 'Virginia Santiago Aragòn CIRCUS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1504, 'Mauricio', 'mcostagui@hotmail.com', NULL, 1, '2015-03-18 23:09:05.145894', '2015-03-18 23:09:05.145894', 'Costa Guilisasti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1505, 'Camila', 'camilmontero@gmail.com', NULL, 1, '2015-03-18 23:09:05.173003', '2015-03-18 23:09:05.173003', 'Montero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1506, 'pato', 'pmantilla74@gmail.com', NULL, 1, '2015-03-18 23:09:05.183483', '2015-03-18 23:09:05.183483', 'mantilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1507, 'Juan', 'juanpablo_arancibia@hotmail.com', NULL, 1, '2015-03-18 23:09:05.196016', '2015-03-18 23:09:05.196016', 'Pablo Arancibia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1508, 'Marcela', 'diazbaeza123@mi.cl', NULL, 1, '2015-03-18 23:09:05.218809', '2015-03-18 23:09:05.218809', 'Díaz Baeza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1509, 'sebajork', 'blank_10@live.com', NULL, 1, '2015-03-18 23:09:05.244808', '2015-03-18 23:09:05.244808', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1510, 'Pablo', 'pablo.salamandra@gmail.com', NULL, 1, '2015-03-18 23:09:05.348421', '2015-03-18 23:09:05.348421', 'Araneda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1511, 'Raúl', 'rauldinizio56@hotmail.com', NULL, 1, '2015-03-18 23:09:05.358068', '2015-03-18 23:09:05.358068', 'Dinizio Román')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1512, 'Macarena', 'macapaztb@hotmail.com', NULL, 1, '2015-03-18 23:09:05.367362', '2015-03-18 23:09:05.367362', 'Paz Troncoso Barrientos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1513, 'Leandro', 'leandro.campillay@gmail.com', NULL, 1, '2015-03-18 23:09:05.376724', '2015-03-18 23:09:05.376724', 'Campillay Espinoza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1514, 'jesus', 'juniordeoro@hotmail.com', NULL, 1, '2015-03-18 23:09:05.389545', '2015-03-18 23:09:05.389545', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1515, 'sofía', 'camariwi@gmail.com', NULL, 1, '2015-03-18 23:09:05.404631', '2015-03-18 23:09:05.404631', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1516, 'Daniel', 'paz.rios@gmail.com', NULL, 1, '2015-03-18 23:09:05.418548', '2015-03-18 23:09:05.418548', 'Ángel Paz Ríos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1517, 'Daniel', 'pas.rios@gmail.com', NULL, 1, '2015-03-18 23:09:05.428579', '2015-03-18 23:09:05.428579', 'Paz Ríos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1518, 'Susana', 'susnahmias@hotmail.com', NULL, 1, '2015-03-18 23:09:05.452390', '2015-03-18 23:09:05.452390', 'Nahmias')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1519, 'SARANGELLO', 'sarangello@hotmail.com', NULL, 1, '2015-03-18 23:09:05.467873', '2015-03-18 23:09:05.467873', 'RAQUEL')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1520, 'Raquel', 'sarangello@gmail.com', NULL, 1, '2015-03-18 23:09:05.478263', '2015-03-18 23:09:05.478263', 'Sarangello')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1521, 'evelyn', 'eveartes@gmail.com', NULL, 1, '2015-03-18 23:09:05.489745', '2015-03-18 23:09:05.489745', 'san juan')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1522, 'ISAAC', 'HOLIMX@GMAIL.COM', NULL, 1, '2015-03-18 23:09:05.529793', '2015-03-18 23:09:05.529793', 'HOLOSCHUTZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1523, 'Constanza', 'conigazmuri@hotmail.com', NULL, 1, '2015-03-18 23:09:05.550691', '2015-03-18 23:09:05.550691', 'Gazmuri Lyon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1524, 'fUcKiNgToYs!!!', 'acciondepulsar@gmail.com', NULL, 1, '2015-03-18 23:09:05.575176', '2015-03-18 23:09:05.575176', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1525, 'martínez', 'myriam.martinez@ec.europa.eu', NULL, 1, '2015-03-18 23:09:05.597985', '2015-03-18 23:09:05.597985', 'barbón, myriam')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1526, 'nicolas', 'tragasalivablog@gmail.com', NULL, 1, '2015-03-18 23:09:05.619833', '2015-03-18 23:09:05.619833', 'venegas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1527, 'Jesús', 'jesusjansana@gmail.com', NULL, 1, '2015-03-18 23:09:05.641111', '2015-03-18 23:09:05.641111', 'González Jansana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1528, 'peli', 'hombrequeselevoloelmate@gmail.com', NULL, 1, '2015-03-18 23:09:05.656558', '2015-03-18 23:09:05.656558', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1529, 'Maria', 'marita_jesus@hotmail.com', NULL, 1, '2015-03-18 23:09:05.678883', '2015-03-18 23:09:05.678883', 'Jesus Gonzalez Martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1530, 'Paulina', 'paulillanten@gmail.com', NULL, 1, '2015-03-18 23:09:05.705065', '2015-03-18 23:09:05.705065', 'Llanten')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1531, 'zoe', 'acuario_30_24@hotmail.com', NULL, 1, '2015-03-18 23:09:05.714448', '2015-03-18 23:09:05.714448', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1532, 'Marla', 'marlafreire07@gmail.com', NULL, 1, '2015-03-18 23:09:05.730068', '2015-03-18 23:09:05.730068', 'Freire')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1533, 'FBN', 'fbnagel@gmail.com', NULL, 1, '2015-03-18 23:09:05.755188', '2015-03-18 23:09:05.755188', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1534, '::::::::::::.((((O_o)))))))))))):::::::', 'frydahvelazquez@live.com.mx', NULL, 1, '2015-03-18 23:09:05.778142', '2015-03-18 23:09:05.778142', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1535, 'cristian', 'cristiankirby@gmail.com', NULL, 1, '2015-03-18 23:09:05.808365', '2015-03-18 23:09:05.808365', 'kirby')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1536, 'Pía', 'piaurmeneta@gmail.com', NULL, 1, '2015-03-18 23:09:05.830976', '2015-03-18 23:09:05.830976', 'Urmeneta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1537, 'Álvaro', 'escobardechile@gmail.com', NULL, 1, '2015-03-18 23:09:05.848974', '2015-03-18 23:09:05.848974', 'Escobar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1538, 'antonia', 'antonia.isaacson@gmail.com', NULL, 1, '2015-03-18 23:09:05.867102', '2015-03-18 23:09:05.867102', 'isaacson labarthe')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1539, 'Mariano', 'marianojaviermarcos@gmail.com', NULL, 1, '2015-03-18 23:09:05.884537', '2015-03-18 23:09:05.884537', 'Javier Marcos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1540, 'soluciones', 'regle.com@gmail.com', NULL, 1, '2015-03-18 23:09:05.906346', '2015-03-18 23:09:05.906346', 'informaticas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1541, 'Alfonso', 'escultor@alfonsoperezplaza.es', NULL, 1, '2015-03-18 23:09:05.922277', '2015-03-18 23:09:05.922277', 'Pérez Plaza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1542, 'Francisco', 'infoarte0@gmail.com', NULL, 1, '2015-03-18 23:09:05.932380', '2015-03-18 23:09:05.932380', 'Verdel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1543, 'Pablo', 'galeriacallejera@gmail.com', NULL, 1, '2015-03-18 23:09:05.942371', '2015-03-18 23:09:05.942371', 'Rojas Schwartz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1544, 'luis', 'la.heviag@gmail.com', NULL, 1, '2015-03-18 23:09:05.952773', '2015-03-18 23:09:05.952773', 'arturo hevia garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1545, 'Natalia', 'nataliabarrueto@hotmail.com', NULL, 1, '2015-03-18 23:09:05.966065', '2015-03-18 23:09:05.966065', 'Barrueto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1546, 'Natalia', 'nataliabarrueto@gmail.com', NULL, 1, '2015-03-18 23:09:05.975816', '2015-03-18 23:09:05.975816', 'Barrueto Arjona')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1547, 'maría', 'invunche@hotmail.com', NULL, 1, '2015-03-18 23:09:06.013013', '2015-03-18 23:09:06.013013', 'Elena Retamal ruiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1548, 'cristian', 'lagos30_@hotmail.com', NULL, 1, '2015-03-18 23:09:06.022626', '2015-03-18 23:09:06.022626', 'lagos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1549, 'Pedro', 'pedropablo797@gmail.com', NULL, 1, '2015-03-18 23:09:06.050395', '2015-03-18 23:09:06.050395', 'Pablo Bustos Beltran')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1550, 'Ivan', 'ivanpawluk@hotmail.com', NULL, 1, '2015-03-18 23:09:06.066611', '2015-03-18 23:09:06.066611', 'Pawluk')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1551, 'MIRANDA', 'ANIMIRANDA@MIRANDAQUIROZ.CL', NULL, 1, '2015-03-18 23:09:06.078007', '2015-03-18 23:09:06.078007', 'QUIROZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1552, 'Debbie', 'debbie.imclick@gmail.co', NULL, 1, '2015-03-18 23:09:06.101074', '2015-03-18 23:09:06.101074', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1553, 'lucia', 'luchiledesma@gmail.com', NULL, 1, '2015-03-18 23:09:06.116592', '2015-03-18 23:09:06.116592', 'ledesma')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1554, 'mariela', 'grullademetal@yahoo.com', NULL, 1, '2015-03-18 23:09:06.140381', '2015-03-18 23:09:06.140381', 'gonzalez casanova')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1555, 'Mariela', 'grullademetal@hotmail.com', NULL, 1, '2015-03-18 23:09:06.151557', '2015-03-18 23:09:06.151557', 'González Casanova')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1556, 'fryda', 'frydaenlaluna@hotmail.com', NULL, 1, '2015-03-18 23:09:06.168194', '2015-03-18 23:09:06.168194', 'Alina herrEra VeläzqueZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1557, 'Gabriela', 'ella_happy_mom@yahoo.com', NULL, 1, '2015-03-18 23:09:06.179236', '2015-03-18 23:09:06.179236', 'Ene rusu')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1558, 'ALEJANDRA', 'alejandra-aranda@hotmail.com', NULL, 1, '2015-03-18 23:09:06.189409', '2015-03-18 23:09:06.189409', 'ARANDA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1559, 'José', 'relapse25@hotmail.com', NULL, 1, '2015-03-18 23:09:06.215098', '2015-03-18 23:09:06.215098', 'Luis Duque Castro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1560, 'Adriana', 'adrianalanni@gmail.com', NULL, 1, '2015-03-18 23:09:06.234184', '2015-03-18 23:09:06.234184', 'Lanni')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1561, 'David', 'davidlazzuri@hotmail.com', NULL, 1, '2015-03-18 23:09:06.263539', '2015-03-18 23:09:06.263539', 'Lazzuri')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1562, 'shn2', 'luisengranajes@gmail.com', NULL, 1, '2015-03-18 23:09:06.277532', '2015-03-18 23:09:06.277532', '')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1563, 'Manzana', 'balaconalasdemaripoza@hotmail.com', NULL, 1, '2015-03-18 23:09:06.303597', '2015-03-18 23:09:06.303597', 'Podrida')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1564, 'Rosario', 'gestiondearte@gmail.com', NULL, 1, '2015-03-18 23:09:06.327116', '2015-03-18 23:09:06.327116', 'Martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1565, 'Daniela', 'pequisbaldo@yahoo.com', NULL, 1, '2015-03-18 23:09:06.355808', '2015-03-18 23:09:06.355808', 'Riquelme')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1566, 'Daniel', 'dapavie@gmail.com', NULL, 1, '2015-03-18 23:09:06.378691', '2015-03-18 23:09:06.378691', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1567, 'Al', 'sonicnou@hotmail.com', NULL, 1, '2015-03-18 23:09:06.405423', '2015-03-18 23:09:06.405423', 'Batt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1568, 'César', 'ceravan@gmail.com', NULL, 1, '2015-03-18 23:09:06.416240', '2015-03-18 23:09:06.416240', 'Ravanal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1569, 'MoNica', 'moniqueodilup@hotmail.com', NULL, 1, '2015-03-18 23:09:06.434448', '2015-03-18 23:09:06.434448', 'Pulido')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1570, 'Carolina', 'picturesquee@gmail.com', NULL, 1, '2015-03-18 23:09:06.453029', '2015-03-18 23:09:06.453029', 'Domínguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1571, 'Torregar', 'torregar@msn.com', NULL, 1, '2015-03-18 23:09:06.465916', '2015-03-18 23:09:06.465916', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1572, 'felipe', 'feliperios@anuarioarte.com', NULL, 1, '2015-03-18 23:09:06.475038', '2015-03-18 23:09:06.475038', 'rios')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1573, 'americo', 'cabobasualto@hotmail.com', NULL, 1, '2015-03-18 23:09:06.488357', '2015-03-18 23:09:06.488357', 'basualto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1574, 'Roberto', 'decomosaico@gmail.com', NULL, 1, '2015-03-18 23:09:06.514833', '2015-03-18 23:09:06.514833', 'Urbina Gajardo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1575, 'Franka', 'artefranka@gmail.com', NULL, 1, '2015-03-18 23:09:06.534182', '2015-03-18 23:09:06.534182', 'Reitze')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1576, 'N.A.R.', 'difusionnar@gmail.com', NULL, 1, '2015-03-18 23:09:06.562466', '2015-03-18 23:09:06.562466', '')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1577, 'bernabe', 'bernabecarrasco@hotmail.com', NULL, 1, '2015-03-18 23:09:06.571388', '2015-03-18 23:09:06.571388', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1578, 'erico', 'locodelspace@hotmail.com', NULL, 1, '2015-03-18 23:09:06.580440', '2015-03-18 23:09:06.580440', 'eserico')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1579, 'virginia', 'virgi@mi.cl', NULL, 1, '2015-03-18 23:09:06.589552', '2015-03-18 23:09:06.589552', 'gregorcic')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1580, 'Diego', 'diegone8@hotmail.com', NULL, 1, '2015-03-18 23:09:06.597371', '2015-03-18 23:09:06.597371', 'Estrada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1581, 'Kristán', 'cat.murua@gmail.com', NULL, 1, '2015-03-18 23:09:06.614203', '2015-03-18 23:09:06.614203', 'tomurú')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1582, 'Mariela', 'marielajhs@gmail.com', NULL, 1, '2015-03-18 23:09:06.629421', '2015-03-18 23:09:06.629421', 'Herrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1583, 'Vivian', 'vivian_javiera@hotmail.com', NULL, 1, '2015-03-18 23:09:06.638173', '2015-03-18 23:09:06.638173', 'Castro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1584, 'guillermo', 'daghero.g@gmail.com', NULL, 1, '2015-03-18 23:09:06.647224', '2015-03-18 23:09:06.647224', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1585, 'Vicente', 'vicentemartisolar@gmail.com', NULL, 1, '2015-03-18 23:09:06.664471', '2015-03-18 23:09:06.664471', 'Marti Solar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1586, 'rosamenta', 'woosioux@hotmail.com', NULL, 1, '2015-03-18 23:09:06.673211', '2015-03-18 23:09:06.673211', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1587, 'Alejandra', 'alecruzsuber@hotmail.com', NULL, 1, '2015-03-18 23:09:06.681775', '2015-03-18 23:09:06.681775', 'Cruz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1588, 'Lía', 'lia@liag.es', NULL, 1, '2015-03-18 23:09:06.691124', '2015-03-18 23:09:06.691124', 'G.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1589, 'No', 'thefrenesis@gmail.com', NULL, 1, '2015-03-18 23:09:06.699831', '2015-03-18 23:09:06.699831', 'hya nada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1590, 'Isabel', 'arrebol_ar@hotmail.com', NULL, 1, '2015-03-18 23:09:06.714735', '2015-03-18 23:09:06.714735', 'Santibañez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1591, 'OndaHalFoster', 'OndaHalFoster@gmail.com', NULL, 1, '2015-03-18 23:09:06.723857', '2015-03-18 23:09:06.723857', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1592, 'Kléver', 'klefvas@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:06.732178', '2015-03-18 23:09:06.732178', 'Vásquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1593, 'andrea', 'vafe22@gmail.com', NULL, 1, '2015-03-18 23:09:06.744487', '2015-03-18 23:09:06.744487', 'f.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1594, 'Ximena', 'xfleck@yahoo.com', NULL, 1, '2015-03-18 23:09:06.756023', '2015-03-18 23:09:06.756023', 'Fleck Lavergne')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1595, 'MIXELIART', 'mixeliart@gmail.com', NULL, 1, '2015-03-18 23:09:06.766083', '2015-03-18 23:09:06.766083', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1596, 'Paulo', 'paulomeyervalenzuela@gmail.com', NULL, 1, '2015-03-18 23:09:06.774600', '2015-03-18 23:09:06.774600', 'Meyer Valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1597, 'Sebastián', 'dharma.member@gmail.com', NULL, 1, '2015-03-18 23:09:06.783260', '2015-03-18 23:09:06.783260', 'Fernández')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1598, 'fridha', 'elizabmarin@gmail.com', NULL, 1, '2015-03-18 23:09:06.792065', '2015-03-18 23:09:06.792065', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1599, 'Lilia', 'info@arteyjoyeria.com', NULL, 1, '2015-03-18 23:09:06.801023', '2015-03-18 23:09:06.801023', 'Quintero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1600, 'Luis', 'nomade@espora.cl', NULL, 1, '2015-03-18 23:09:06.814672', '2015-03-18 23:09:06.814672', 'Iturra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1601, 'cyan', 'cyantallerdegrabado@gmail.com', NULL, 1, '2015-03-18 23:09:06.823676', '2015-03-18 23:09:06.823676', 'taller de grabado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1602, 'cano', 'j.salas.e@gmail.com', NULL, 1, '2015-03-18 23:09:06.833060', '2015-03-18 23:09:06.833060', 'salas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1603, 'Leo', 'poppyfamilyosland@gmail.com', NULL, 1, '2015-03-18 23:09:06.841891', '2015-03-18 23:09:06.841891', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1604, 'LeonardoPartridge', 'poppyfamilyisland@gmail.com', NULL, 1, '2015-03-18 23:09:06.850017', '2015-03-18 23:09:06.850017', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1605, '"siroco"', 'piposiroco@hotmail.com', NULL, 1, '2015-03-18 23:09:06.863625', '2015-03-18 23:09:06.863625', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1606, 'Marcia', 'marcia.cuevas@gmail.com', NULL, 1, '2015-03-18 23:09:06.872459', '2015-03-18 23:09:06.872459', 'Cuevas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1607, 'Diego', 'telefunken.superheterodyne@gmail.com', NULL, 1, '2015-03-18 23:09:06.881931', '2015-03-18 23:09:06.881931', 'Salinas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1608, 'Patricia', 'turquesa777_7@hotmail.com', NULL, 1, '2015-03-18 23:09:06.889925', '2015-03-18 23:09:06.889925', 'Rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1609, 'Daniella', 'daniella.gutierrez@gmail.com', NULL, 1, '2015-03-18 23:09:06.898739', '2015-03-18 23:09:06.898739', 'Gutiérrez Paviolo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1610, 'Miguel', 'mhuertarte@gmail.com', NULL, 1, '2015-03-18 23:09:06.913685', '2015-03-18 23:09:06.913685', 'Ángel Huerta Zuñiga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1611, 'Sebastián', 'illanes_26@hotmail.com', NULL, 1, '2015-03-18 23:09:06.944664', '2015-03-18 23:09:06.944664', 'Illanes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1612, 'OBRAS', 'GTPATO@HOTMAIL.COM', NULL, 1, '2015-03-18 23:09:06.964700', '2015-03-18 23:09:06.964700', 'DE ARTE')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1613, 'CamilaEscobarV', 'camila.e.v@gmail.com', NULL, 1, '2015-03-18 23:09:07.000004', '2015-03-18 23:09:07.000004', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1614, 'www.geralby.com', 'artealby@gmail.com', NULL, 1, '2015-03-18 23:09:07.033344', '2015-03-18 23:09:07.033344', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1615, 'rodolfo', 'rodotallador@hotmail.com', NULL, 1, '2015-03-18 23:09:07.062335', '2015-03-18 23:09:07.062335', 'zepeda h')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1616, 'renzo', 'renzocalderonh@yahoo.es', NULL, 1, '2015-03-18 23:09:07.082536', '2015-03-18 23:09:07.082536', 'calderon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1617, 'Sebastian', 'sebastianmejiaphoto@gmail.com', NULL, 1, '2015-03-18 23:09:07.106643', '2015-03-18 23:09:07.106643', 'Mejia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1618, 'Sebastian', 'sebastianmejiaphoto@hotmail.com', NULL, 1, '2015-03-18 23:09:07.125159', '2015-03-18 23:09:07.125159', 'Mejia Castilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1619, 'daf', 'danielafu@gmail.com', NULL, 1, '2015-03-18 23:09:07.145966', '2015-03-18 23:09:07.145966', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1620, 'alberto', 'alberto.leal50@hotmail.com', NULL, 1, '2015-03-18 23:09:07.200477', '2015-03-18 23:09:07.200477', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1621, 'Romina', 'gennusnativa@hotmail.com', NULL, 1, '2015-03-18 23:09:07.229406', '2015-03-18 23:09:07.229406', 'Figueroa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1622, 'Ariel', 'retratosariel@gmail.com', NULL, 1, '2015-03-18 23:09:07.239087', '2015-03-18 23:09:07.239087', 'Quiroz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1623, 'Montserrat', 'mbrandans@gmail.com', NULL, 1, '2015-03-18 23:09:07.972197', '2015-03-18 23:09:07.972197', 'Brandan')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1624, 'Castro', 'uder24@hotmail.com', NULL, 1, '2015-03-18 23:09:07.981867', '2015-03-18 23:09:07.981867', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1625, 'Darwin', 'uder2024@gmail.com', NULL, 1, '2015-03-18 23:09:07.990987', '2015-03-18 23:09:07.990987', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1626, 'Rodrigo', 'artefacto00@gmail.com', NULL, 1, '2015-03-18 23:09:07.999453', '2015-03-18 23:09:07.999453', 'Ramos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1627, 'pablo', 'pablo.ver@hotmail.es', NULL, 1, '2015-03-18 23:09:08.008053', '2015-03-18 23:09:08.008053', 'vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1628, 'Magdalena', 'malechahin@gmail.com', NULL, 1, '2015-03-18 23:09:08.028849', '2015-03-18 23:09:08.028849', 'Chahin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1629, 'Fabrizzio', 'fabrizzio@fdangelo.cl', NULL, 1, '2015-03-18 23:09:08.037394', '2015-03-18 23:09:08.037394', 'D''Angelo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1630, 'Fabrizzio', 'galeriabon@gmail.com', NULL, 1, '2015-03-18 23:09:08.045597', '2015-03-18 23:09:08.045597', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1631, 'Shavi', 'shavialli@gmail.com', NULL, 1, '2015-03-18 23:09:08.054457', '2015-03-18 23:09:08.054457', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1632, 'Roberto', 'roberto@super45.cl', NULL, 1, '2015-03-18 23:09:08.063486', '2015-03-18 23:09:08.063486', 'Doveris')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1633, 'suxzy', 'akira_5989@hotmail.com', NULL, 1, '2015-03-18 23:09:08.077452', '2015-03-18 23:09:08.077452', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1634, 'venjamin', 'jorquera.venjamin@gmail.com', NULL, 1, '2015-03-18 23:09:08.085578', '2015-03-18 23:09:08.085578', 'jorquera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1635, 'jose', 'anotherwuorld99@hotmail.com', NULL, 1, '2015-03-18 23:09:08.093364', '2015-03-18 23:09:08.093364', 'Israel Diaz Rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1636, 'kristodulakis', 'kristodulakis@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:08.102159', '2015-03-18 23:09:08.102159', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1637, 'Yadira', 'yadira182004@yahoo.es', NULL, 1, '2015-03-18 23:09:08.112919', '2015-03-18 23:09:08.112919', 'Gallegos Abedrabbo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1638, 'Mariela', 'mmmontes@telecentro.com.ar', NULL, 1, '2015-03-18 23:09:08.127183', '2015-03-18 23:09:08.127183', 'Monica Montes')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1639, 'Laura', 'contacto@galeriaboutique.cl', NULL, 1, '2015-03-18 23:09:08.148943', '2015-03-18 23:09:08.148943', 'Gil Flood')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1640, 'daniel', 'doctortanqueray@hotmail.com', NULL, 1, '2015-03-18 23:09:08.158779', '2015-03-18 23:09:08.158779', 'celada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1641, 'Antonio', 'hazorbajhazard@gmail.com', NULL, 1, '2015-03-18 23:09:08.179622', '2015-03-18 23:09:08.179622', 'Berrodagua')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1642, 'nicolas', 'nicolascaballero@gmail.com', NULL, 1, '2015-03-18 23:09:08.188915', '2015-03-18 23:09:08.188915', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1643, 'Macarena', 'macarranzafue@gmail.com', NULL, 1, '2015-03-18 23:09:08.197256', '2015-03-18 23:09:08.197256', 'Carranza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1644, 'lesistifranz', 'lesisti@hotmail.com', NULL, 1, '2015-03-18 23:09:08.205910', '2015-03-18 23:09:08.205910', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1645, 'MARIA', 'cristina.faleroni@gmail.com', NULL, 1, '2015-03-18 23:09:08.214592', '2015-03-18 23:09:08.214592', 'CRISTINA FALERONI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1646, 'Isabelmargarita', 'acusticaisabel@gmail.com', NULL, 1, '2015-03-18 23:09:08.228215', '2015-03-18 23:09:08.228215', 'Santibañez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1647, 'German', 'netracol@vtr.net', NULL, 1, '2015-03-18 23:09:08.237024', '2015-03-18 23:09:08.237024', 'Guerra G.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1648, 'Bernardita', 'bernardita.hk@gmail.com', NULL, 1, '2015-03-18 23:09:08.245710', '2015-03-18 23:09:08.245710', 'Herrera K')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1649, 'Jacinta', 'motorjaz@gmail.com', NULL, 1, '2015-03-18 23:09:08.254454', '2015-03-18 23:09:08.254454', 'Kaiser')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1650, 'Mabel', 'mabelcanalesd@gmail.com', NULL, 1, '2015-03-18 23:09:08.263514', '2015-03-18 23:09:08.263514', 'Canales Donoso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1651, 'Arturo', 'arturolodetti@gmail.com', NULL, 1, '2015-03-18 23:09:08.277556', '2015-03-18 23:09:08.277556', 'Lodetti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1652, 'Coté', 'cot.meneses@gmail.com', NULL, 1, '2015-03-18 23:09:08.295775', '2015-03-18 23:09:08.295775', 'Meneses')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1653, 'piafer', 'piaferp@yahoo.es', NULL, 1, '2015-03-18 23:09:08.304730', '2015-03-18 23:09:08.304730', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1654, 'Kurt', 'kurt.goldman@gmail.com', NULL, 1, '2015-03-18 23:09:08.312945', '2015-03-18 23:09:08.312945', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1655, 'Elisa', 'eli_ariztia@hotmail.com', NULL, 1, '2015-03-18 23:09:08.327005', '2015-03-18 23:09:08.327005', 'Ariztía')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1656, 'Felipe', 'arcos.oviedo.felipe@gmail.com', NULL, 1, '2015-03-18 23:09:08.335932', '2015-03-18 23:09:08.335932', 'Arcos-Oviedo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1657, 'German', 'netracol@gmail.com', NULL, 1, '2015-03-18 23:09:08.377710', '2015-03-18 23:09:08.377710', 'Guerra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1658, 'n/a', 'kioldpodi@gmail.com', NULL, 1, '2015-03-18 23:09:08.386892', '2015-03-18 23:09:08.386892', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1659, 'Yadira', 'gallegosya@hotmail.com', NULL, 1, '2015-03-18 23:09:08.395418', '2015-03-18 23:09:08.395418', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1660, 'marko', 'uncoupdoeil@free.fr', NULL, 1, '2015-03-18 23:09:08.403896', '2015-03-18 23:09:08.403896', 'echeverria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1661, 'Isabel', 'Isabelkristina@gmail.com', NULL, 1, '2015-03-18 23:09:08.413456', '2015-03-18 23:09:08.413456', 'Cristina González Vera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1662, 'tengri18', 'tornado976@hotmail.com', NULL, 1, '2015-03-18 23:09:08.427540', '2015-03-18 23:09:08.427540', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1663, 'Nelson', 'vaciovisual@gmail.com', NULL, 1, '2015-03-18 23:09:08.521068', '2015-03-18 23:09:08.521068', 'Soto Huerta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1664, 'carolina', 'filosofiamistica@gmail.com', NULL, 1, '2015-03-18 23:09:08.531064', '2015-03-18 23:09:08.531064', 'muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1665, 'Leonardo', 'lrojas@conicyt.cl', NULL, 1, '2015-03-18 23:09:08.540225', '2015-03-18 23:09:08.540225', 'Rojas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1666, 'Christian', 'coloro71@hotmail.com', NULL, 1, '2015-03-18 23:09:08.549200', '2015-03-18 23:09:08.549200', 'Quevedo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1667, 'Ximena', 'ximenarojastellez@gmail.com', NULL, 1, '2015-03-18 23:09:08.558465', '2015-03-18 23:09:08.558465', 'Rojas Téllez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1668, 'rcecereu', 'renato.cecereu@hotmail.com', NULL, 1, '2015-03-18 23:09:08.576623', '2015-03-18 23:09:08.576623', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1669, 'Francesca', 'francesca.ramos.b@gmail.com', NULL, 1, '2015-03-18 23:09:08.585895', '2015-03-18 23:09:08.585895', 'Ramos Barbagelata')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1670, 'Paulina', 'pausilvah@gmail.com', NULL, 1, '2015-03-18 23:09:08.594298', '2015-03-18 23:09:08.594298', 'Silva Hauyon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1671, 'camaleonacrativa', 'anton_lar@hotmail.com', NULL, 1, '2015-03-18 23:09:08.615490', '2015-03-18 23:09:08.615490', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1672, 'Paricio', 'objeto.de@gmail.com', NULL, 1, '2015-03-18 23:09:08.627213', '2015-03-18 23:09:08.627213', 'Montalba')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1673, 'Marco', 'bainella@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:08.636531', '2015-03-18 23:09:08.636531', 'Bianella')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1674, 'alejandro', 'alejandrofky@gmail.com', NULL, 1, '2015-03-18 23:09:08.645606', '2015-03-18 23:09:08.645606', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1675, 'Patricio', 'poasmano@gmail.com', NULL, 1, '2015-03-18 23:09:08.654194', '2015-03-18 23:09:08.654194', 'Montalba Navarro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1676, 'Artista', 'aaronortega28@gmail.com', NULL, 1, '2015-03-18 23:09:08.663251', '2015-03-18 23:09:08.663251', 'visual')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1677, 'Miguel', 'graficasmix@hotmail.com', NULL, 1, '2015-03-18 23:09:08.676655', '2015-03-18 23:09:08.676655', 'Espinoza Arce')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1678, 'Maura', 'maura.mascetti@gmail.com', NULL, 1, '2015-03-18 23:09:08.685933', '2015-03-18 23:09:08.685933', 'Mascetti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1679, 'Jaime', 'tatoo100@hotmail.com', NULL, 1, '2015-03-18 23:09:08.734452', '2015-03-18 23:09:08.734452', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1680, 'Daniel', 'info@dc-herrera.com', NULL, 1, '2015-03-18 23:09:08.762201', '2015-03-18 23:09:08.762201', 'Claver Herrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1681, 'RODRIGO', 'rrlealr@yahoo.es', NULL, 1, '2015-03-18 23:09:08.771798', '2015-03-18 23:09:08.771798', 'LEAL RIQUELME')  (58.8ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1682, 'turkicker', 'turkicker@hotmail.com', NULL, 1, '2015-03-18 23:09:08.793060', '2015-03-18 23:09:08.793060', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1683, 'jorge', 'pastoruri38@hotmail.com', NULL, 1, '2015-03-18 23:09:08.802927', '2015-03-18 23:09:08.802927', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1684, 'superbueno', 'sebastian.veravivanco@gmail.com', NULL, 1, '2015-03-18 23:09:08.812699', '2015-03-18 23:09:08.812699', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1685, 'soliloquia', 'sol_797@hotmail.com', NULL, 1, '2015-03-18 23:09:08.821064', '2015-03-18 23:09:08.821064', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1686, 'aplanamiento', 'aplanamientoheboide@yahoo.es', NULL, 1, '2015-03-18 23:09:08.829202', '2015-03-18 23:09:08.829202', 'heboide')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1687, 'sebastian', 'sebastianlinardo@gmail.com', NULL, 1, '2015-03-18 23:09:08.842984', '2015-03-18 23:09:08.842984', 'linardo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1688, 'adeline', 'adelinedesmet@gmail.com', NULL, 1, '2015-03-18 23:09:08.851829', '2015-03-18 23:09:08.851829', 'de smet d''olbecke')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1689, 'Lénika', 'lennykita_@hotmail.com', NULL, 1, '2015-03-18 23:09:08.860476', '2015-03-18 23:09:08.860476', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1690, 'claudia', 'laserpenta@gmail.com', NULL, 1, '2015-03-18 23:09:08.869805', '2015-03-18 23:09:08.869805', 'pinto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1691, 'RAFAEL', 'arq_rafas@hotmail.com', NULL, 1, '2015-03-18 23:09:08.894237', '2015-03-18 23:09:08.894237', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1692, 'nicolas', 'elcaballeronicolas@gmail.com', NULL, 1, '2015-03-18 23:09:08.909711', '2015-03-18 23:09:08.909711', 'caballero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1693, 'Roberto', 'laluz@laluz.cl', NULL, 1, '2015-03-18 23:09:08.918612', '2015-03-18 23:09:08.918612', 'Jaras')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1694, 'paula', 'paula01@gmail.com', NULL, 1, '2015-03-18 23:09:08.943406', '2015-03-18 23:09:08.943406', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1695, 'daniela', 'danielainesgutierrez@gmail.com', NULL, 1, '2015-03-18 23:09:08.959619', '2015-03-18 23:09:08.959619', 'gutierrez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1696, 'Pau', 'rubioeberhardt@hotmail.com', NULL, 1, '2015-03-18 23:09:08.973712', '2015-03-18 23:09:08.973712', 'Rubio Eberhardt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1697, 'octavia', 'obsesion_es@yahoo.com', NULL, 1, '2015-03-18 23:09:08.992662', '2015-03-18 23:09:08.992662', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1698, 'Romonte.', 'romonte@gmail.com', NULL, 1, '2015-03-18 23:09:09.010014', '2015-03-18 23:09:09.010014', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1699, 'Alisson', 'siso.32@hotmail.com', NULL, 1, '2015-03-18 23:09:09.018654', '2015-03-18 23:09:09.018654', 'Gomez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1700, 'renzo', 'arcangel4261@hotmail.com', NULL, 1, '2015-03-18 23:09:09.027472', '2015-03-18 23:09:09.027472', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1701, 'Maximiliano', 'bedomax@gmail.com', NULL, 1, '2015-03-18 23:09:09.035628', '2015-03-18 23:09:09.035628', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1702, 'omar', 'omincubus@hotmail.com', NULL, 1, '2015-03-18 23:09:09.044122', '2015-03-18 23:09:09.044122', 'ovalle martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1703, 'victor', 'victorcavieres@gmail.com', NULL, 1, '2015-03-18 23:09:09.058504', '2015-03-18 23:09:09.058504', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1704, 'Iordanov', 'thomaskaufmann@mail.ru', NULL, 1, '2015-03-18 23:09:09.067618', '2015-03-18 23:09:09.067618', 'Vodka')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1705, 'Mr.Legusi', 'armasdkt@hotmail.com', NULL, 1, '2015-03-18 23:09:09.076278', '2015-03-18 23:09:09.076278', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1706, 'samuel', 'samuel_k16@hotmail.com', NULL, 1, '2015-03-18 23:09:09.085380', '2015-03-18 23:09:09.085380', 'carrillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1707, 'carolinma', 'chernaes@yahoo.com', NULL, 1, '2015-03-18 23:09:09.093781', '2015-03-18 23:09:09.093781', 'hernandez esguep')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1708, 'Cristian', 'demonasterio@hotmail.com', NULL, 1, '2015-03-18 23:09:09.109121', '2015-03-18 23:09:09.109121', 'Monasterio')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1709, 'Mery', 'like_a_cartoon@hotmail.com', NULL, 1, '2015-03-18 23:09:09.118040', '2015-03-18 23:09:09.118040', 'Fields Photography')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1710, 'So', 'soduffau@hotmail.com', NULL, 1, '2015-03-18 23:09:09.130517', '2015-03-18 23:09:09.130517', 'Duffau')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1711, 'Edna', 'ednakannan@gmail.com', NULL, 1, '2015-03-18 23:09:09.139990', '2015-03-18 23:09:09.139990', 'Kannan')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1712, 'Sergio', 'smnlabrin@gmail.com', NULL, 1, '2015-03-18 23:09:09.159623', '2015-03-18 23:09:09.159623', 'Norambuena Labrín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1713, 'Marre', 'marrewacquez@gmail.com', NULL, 1, '2015-03-18 23:09:09.168524', '2015-03-18 23:09:09.168524', 'Wacquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1714, 'SMILJAN', 'soastudi@gmail.com', NULL, 1, '2015-03-18 23:09:09.178053', '2015-03-18 23:09:09.178053', 'ASTUDILLO MIHOVILOVIC')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1715, 'Isabella', 'ihauyon@hotmail.com', NULL, 1, '2015-03-18 23:09:09.187766', '2015-03-18 23:09:09.187766', 'H')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1716, 'Jairo', 'jairotobonvillegas@yahoo.es', NULL, 1, '2015-03-18 23:09:09.196040', '2015-03-18 23:09:09.196040', 'Tobón Villegas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1717, 'fec', 'bolaadv@gmail.com', NULL, 1, '2015-03-18 23:09:09.208658', '2015-03-18 23:09:09.208658', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1718, 'Bárbara', 'kiltris@hotmail.com', NULL, 1, '2015-03-18 23:09:09.217144', '2015-03-18 23:09:09.217144', 'Ardiles')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1719, 'Joaquin', 'joaquinmartel@gmail.com', NULL, 1, '2015-03-18 23:09:09.225800', '2015-03-18 23:09:09.225800', 'Martel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1720, 'Nicole__', 'niicole.gonzalez@gmail.com', NULL, 1, '2015-03-18 23:09:09.235221', '2015-03-18 23:09:09.235221', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1721, 'Sergio', 'gregorio116@gmail.com', NULL, 1, '2015-03-18 23:09:09.244578', '2015-03-18 23:09:09.244578', 'Medina López')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1722, 'Sandra', 'sandradp_0115@hotmail.com', NULL, 1, '2015-03-18 23:09:09.258951', '2015-03-18 23:09:09.258951', 'Milena Durán Pérez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1723, 'SANDRA', 'sandradp79@hotmail.com', NULL, 1, '2015-03-18 23:09:09.268519', '2015-03-18 23:09:09.268519', 'MILENA DURAN PEREZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1724, 's).durán', 'sandra_dp79@hotmail.com', NULL, 1, '2015-03-18 23:09:09.277666', '2015-03-18 23:09:09.277666', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1725, 'lentao', 'lentao_2@hotmail.com', NULL, 1, '2015-03-18 23:09:09.287469', '2015-03-18 23:09:09.287469', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1726, 'Lucas', 'lutoff@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:09.300513', '2015-03-18 23:09:09.300513', 'Toscani')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1727, 'Naihomi', 'naihomig@gmail.com', NULL, 1, '2015-03-18 23:09:09.311624', '2015-03-18 23:09:09.311624', 'Gálvez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1728, 'yamila', 'yami_rc@hotmail.com', NULL, 1, '2015-03-18 23:09:09.320379', '2015-03-18 23:09:09.320379', 'serb')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1729, 'Blasthammer', 'burnt_identity@hotmail.es', NULL, 1, '2015-03-18 23:09:09.329886', '2015-03-18 23:09:09.329886', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1730, 'guzenko', 'pavelguzenko@yandex.ru', NULL, 1, '2015-03-18 23:09:09.342506', '2015-03-18 23:09:09.342506', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1731, 'Coalición', 'coalicionartistaspr@yahoo.com', NULL, 1, '2015-03-18 23:09:09.358923', '2015-03-18 23:09:09.358923', 'de Artistas de Puerto Rico')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1732, 'Horacio', 'hbartefantastico@gmail.com', NULL, 1, '2015-03-18 23:09:09.367549', '2015-03-18 23:09:09.367549', 'Bustos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1733, 'Ana', 'anro-ale13@hotmail.com', NULL, 1, '2015-03-18 23:09:09.390175', '2015-03-18 23:09:09.390175', 'Rosa Alegria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1734, 'Patricia', 'patricia_baldin@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:09.417159', '2015-03-18 23:09:09.417159', 'Baldin')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1735, 'Patricia', 'patriciabaldin@hotmail.com.ar', NULL, 1, '2015-03-18 23:09:09.428571', '2015-03-18 23:09:09.428571', 'Inés Baldin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1736, 'C-VAS', 'c-vas@hotmail.com', NULL, 1, '2015-03-18 23:09:09.437836', '2015-03-18 23:09:09.437836', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1737, 'Rodrigo', 'rrlmushu@hotmail.com', NULL, 1, '2015-03-18 23:09:09.452089', '2015-03-18 23:09:09.452089', 'Reyes Lozano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1738, 'juan', 'agostokuatro@gmail.com', NULL, 1, '2015-03-18 23:09:09.468737', '2015-03-18 23:09:09.468737', 'pablo venegas guzmán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1739, 'delia', 'delia_castellanos20@hotmail.com', NULL, 1, '2015-03-18 23:09:09.488366', '2015-03-18 23:09:09.488366', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1740, 'sebaseba', 'sebastian.up@gmail.com', NULL, 1, '2015-03-18 23:09:09.501084', '2015-03-18 23:09:09.501084', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1741, 'Sergio', 'pintor217@hotmail.com', NULL, 1, '2015-03-18 23:09:09.523367', '2015-03-18 23:09:09.523367', 'Gonzalez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1742, 'Perla', 'fricperlis@hotmail.com', NULL, 1, '2015-03-18 23:09:09.549648', '2015-03-18 23:09:09.549648', 'Mo. Ka.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1743, 'Francisca', 'francisca.dumonceau@consorcio.cl', NULL, 1, '2015-03-18 23:09:09.565617', '2015-03-18 23:09:09.565617', 'Du Monceau de Bergendal De Mar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1744, 'Mariana', 'gatojazz@gmail.com', NULL, 1, '2015-03-18 23:09:09.586488', '2015-03-18 23:09:09.586488', 'Gallardo Klein')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1745, 'virginia', 'VIRGINIAGREGORCIC@GMAIL.COM', NULL, 1, '2015-03-18 23:09:09.597904', '2015-03-18 23:09:09.597904', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1746, 'odi', 'odibazo@gmail.com', NULL, 1, '2015-03-18 23:09:09.621777', '2015-03-18 23:09:09.621777', 'bazó')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1747, 'MELINKA', 'viventodaspartes@hotmail.com', NULL, 1, '2015-03-18 23:09:09.645845', '2015-03-18 23:09:09.645845', 'MAULLIN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1748, 'melinka', 'todoportimiluz@hotmail.com', NULL, 1, '2015-03-18 23:09:09.673222', '2015-03-18 23:09:09.673222', 'maullin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1749, 'Javiera', 'xaviframm@hotmail.com', NULL, 1, '2015-03-18 23:09:09.685550', '2015-03-18 23:09:09.685550', 'Framm')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1750, 'Miguel', 'miguelcaceresmurrie@gmail.com', NULL, 1, '2015-03-18 23:09:09.704652', '2015-03-18 23:09:09.704652', 'Cáceres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1751, 'pablo', 'laleydemoraga@hotmail.com', NULL, 1, '2015-03-18 23:09:09.713979', '2015-03-18 23:09:09.713979', 'valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1752, 'Silvestre', 'parabario@hotmail.com', NULL, 1, '2015-03-18 23:09:09.734275', '2015-03-18 23:09:09.734275', 'Abud Leiva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1753, 'melinkamaullin', 'correaga@hotmail.com', NULL, 1, '2015-03-18 23:09:09.756746', '2015-03-18 23:09:09.756746', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1754, 'Marcela', 'emepe.emete@hotmail.com', NULL, 1, '2015-03-18 23:09:09.822311', '2015-03-18 23:09:09.822311', 'Matus Thomas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1755, 'carolina', 'carolinabellei@gmail.com', NULL, 1, '2015-03-18 23:09:09.850996', '2015-03-18 23:09:09.850996', 'bellei')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1756, 'JEAN', 'JEANPAUL@TIE.CL', NULL, 1, '2015-03-18 23:09:09.859411', '2015-03-18 23:09:09.859411', 'PAUL THUILLIER')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1757, 'Diego', 'pavawulfert@yahoo.com.co', NULL, 1, '2015-03-18 23:09:09.874092', '2015-03-18 23:09:09.874092', 'Pava Wülfert')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1758, 'Improntus', 'improntus.figuras@gmail.com', NULL, 1, '2015-03-18 23:09:09.890002', '2015-03-18 23:09:09.890002', 'Ars')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1759, 'mdemartini', 'marisademartini@gmail.com', NULL, 1, '2015-03-18 23:09:09.899489', '2015-03-18 23:09:09.899489', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1760, 'Werner', 'wernerschleifen@bk.ru', NULL, 1, '2015-03-18 23:09:09.963413', '2015-03-18 23:09:09.963413', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1761, 'carlos', 'arteagasepulvedac@yahoo.com', NULL, 1, '2015-03-18 23:09:09.973248', '2015-03-18 23:09:09.973248', 'arteaga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1762, 'Jota', 'jotarte@hotmail.com', NULL, 1, '2015-03-18 23:09:09.984107', '2015-03-18 23:09:09.984107', 'Karloza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1763, 'Eddy', 'eddymetal_boy@hotmail.com', NULL, 1, '2015-03-18 23:09:09.993057', '2015-03-18 23:09:09.993057', 'Avila .R')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1764, 'mauro', 'poliesterinflamable@hotmail.com', NULL, 1, '2015-03-18 23:09:10.002482', '2015-03-18 23:09:10.002482', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1765, 'Boris', 'shago340@gmail.com', NULL, 1, '2015-03-18 23:09:10.011340', '2015-03-18 23:09:10.011340', 'Borquez Salvo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1766, 'Ramon', 'serviciosmarinos@hotmail.com', NULL, 1, '2015-03-18 23:09:10.067346', '2015-03-18 23:09:10.067346', 'Rojas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1767, 'Ramon', 'servicosmarinos@hotmail.com', NULL, 1, '2015-03-18 23:09:10.095156', '2015-03-18 23:09:10.095156', 'Rojas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1768, 'Efren', 'efrenmelchor@hotmail.com', NULL, 1, '2015-03-18 23:09:10.107014', '2015-03-18 23:09:10.107014', 'Melchor')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1769, 'Nelly', 'quecosaesarte@gmail.com', NULL, 1, '2015-03-18 23:09:10.123265', '2015-03-18 23:09:10.123265', 'Zuñiga')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1770, 'José', 'pepedepepes@hotmail.com', NULL, 1, '2015-03-18 23:09:10.132584', '2015-03-18 23:09:10.132584', 'Luis Catalán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1771, 'Rodrigo', 'rodrigoramos00@gmail.com', NULL, 1, '2015-03-18 23:09:10.201884', '2015-03-18 23:09:10.201884', 'Ramos Contreras')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1772, 'raul', 'kexaalcen@gmail.com', NULL, 1, '2015-03-18 23:09:10.212067', '2015-03-18 23:09:10.212067', 'diaz burgos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1773, 'Adolfo', 'vanditsix@hotmail.com', NULL, 1, '2015-03-18 23:09:10.223061', '2015-03-18 23:09:10.223061', 'Correa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1774, 'Alejandro', 'algarcia@comunicar.us', NULL, 1, '2015-03-18 23:09:10.254952', '2015-03-18 23:09:10.254952', 'García-Lemos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1775, 'Macarena', 'mrepetur@gmail.com', NULL, 1, '2015-03-18 23:09:10.264568', '2015-03-18 23:09:10.264568', 'Repetur Buron')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1776, 'xavicuadros', 'xavicuadros@hotmail.com', NULL, 1, '2015-03-18 23:09:10.322546', '2015-03-18 23:09:10.322546', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1777, 'juan', 'juanmendozart@hotmail.com', NULL, 1, '2015-03-18 23:09:10.355298', '2015-03-18 23:09:10.355298', 'mendoza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1778, 'SEBASTIAN', 'sebastian@empresasviareal.cl', NULL, 1, '2015-03-18 23:09:10.372771', '2015-03-18 23:09:10.372771', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1779, 'Soledad', 'solecas@gmail.com', NULL, 1, '2015-03-18 23:09:10.381579', '2015-03-18 23:09:10.381579', 'Barberá')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1780, '_Edu', 'bravolange@gmail.com', NULL, 1, '2015-03-18 23:09:10.397162', '2015-03-18 23:09:10.397162', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1781, 'Valentina', 'valentinaiturriaga@gmail.com', NULL, 1, '2015-03-18 23:09:10.466831', '2015-03-18 23:09:10.466831', 'Iturriaga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1782, 'Luca', 'campa.luca@libero.it', NULL, 1, '2015-03-18 23:09:10.489860', '2015-03-18 23:09:10.489860', 'Campa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1783, 'r.', 'ramoncabrera@live.cl', NULL, 1, '2015-03-18 23:09:10.520300', '2015-03-18 23:09:10.520300', 'cabrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1784, 'r.', 'gtramonn@hotmail.com', NULL, 1, '2015-03-18 23:09:10.535507', '2015-03-18 23:09:10.535507', 'cabrera r.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1785, 'yohan', 'yohan_alberto@hotmail.com', NULL, 1, '2015-03-18 23:09:10.547372', '2015-03-18 23:09:10.547372', 'castro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1786, 'Lore', 'lorena_roco@yahoo.es', NULL, 1, '2015-03-18 23:09:10.634133', '2015-03-18 23:09:10.634133', 'Roco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1787, 'Daniel', 'garcia.trampe@gmail.com', NULL, 1, '2015-03-18 23:09:10.659789', '2015-03-18 23:09:10.659789', 'García Trampe')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1788, 'Carolina', 'info@carolinabriones.com', NULL, 1, '2015-03-18 23:09:10.669962', '2015-03-18 23:09:10.669962', 'Briones')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1789, 'Florencia', 'florensanmar@gmail.com', NULL, 1, '2015-03-18 23:09:10.688432', '2015-03-18 23:09:10.688432', 'San Martín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1790, 'Daniel', 'danielgonzalezmuniz@gmail.com', NULL, 1, '2015-03-18 23:09:10.703689', '2015-03-18 23:09:10.703689', 'Gonzalez Muniz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1791, 'R.', 'rob_deltaforce@hotmail.com', NULL, 1, '2015-03-18 23:09:10.724831', '2015-03-18 23:09:10.724831', 'Moran')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1792, 'SOCIEDAD', 'sociedaddeldespojo@gmail.com', NULL, 1, '2015-03-18 23:09:10.767801', '2015-03-18 23:09:10.767801', 'DEL DESPOJO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1793, 'mjoseRios', 'lelex76@gmail.com', NULL, 1, '2015-03-18 23:09:10.803512', '2015-03-18 23:09:10.803512', 'Araya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1794, 'nicolas', 'aureo_33@hotmail.com', NULL, 1, '2015-03-18 23:09:10.828511', '2015-03-18 23:09:10.828511', 'rubio varas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1795, 'maria', 'atrevetehacerloarte@yahoo.es', NULL, 1, '2015-03-18 23:09:10.857335', '2015-03-18 23:09:10.857335', 'cristina encina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1796, 'frescate', 'contacto@fundacionrescate.cl', NULL, 1, '2015-03-18 23:09:10.889770', '2015-03-18 23:09:10.889770', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1797, 'Marianne', 'changai_vie@hotmail.com', NULL, 1, '2015-03-18 23:09:10.923122', '2015-03-18 23:09:10.923122', 'Dinamarca Müller')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1798, 'arteimagenchile', 'arteimagenchile@gmail.com', NULL, 1, '2015-03-18 23:09:10.947875', '2015-03-18 23:09:10.947875', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1799, 'Miguel', 'miguelgaetec@hotmail.com', NULL, 1, '2015-03-18 23:09:10.957665', '2015-03-18 23:09:10.957665', 'Ángel Gaete')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1800, 'Kenji', 'kenji.senda.f@gmail.com', NULL, 1, '2015-03-18 23:09:10.985857', '2015-03-18 23:09:10.985857', 'Senda F.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1801, 'Tomas', 'tomasrenato@gmail.com', NULL, 1, '2015-03-18 23:09:11.007020', '2015-03-18 23:09:11.007020', 'N')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1802, 'MIEL', 'miel.art@gmail.com', NULL, 1, '2015-03-18 23:09:11.030317', '2015-03-18 23:09:11.030317', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1803, 'PabloJim', 'jmansilla11@hotmail.com', NULL, 1, '2015-03-18 23:09:11.041706', '2015-03-18 23:09:11.041706', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1804, 'Pablo', 'arqueorestauracion@gmail.com', NULL, 1, '2015-03-18 23:09:11.056406', '2015-03-18 23:09:11.056406', 'Mansilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1805, 'Ensambles', 'taller@ensambles.cl', NULL, 1, '2015-03-18 23:09:11.068966', '2015-03-18 23:09:11.068966', 'Enmarcaciones y Arte')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1806, 'Cinthya', 'cin.delao@gmail.com', NULL, 1, '2015-03-18 23:09:11.089397', '2015-03-18 23:09:11.089397', 'de la O')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1807, 'Elier', 'elierrevillard@gmail.com', NULL, 1, '2015-03-18 23:09:11.117987', '2015-03-18 23:09:11.117987', 'Revillard')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1808, 'Angel', 'alcastano@gmail.com', NULL, 1, '2015-03-18 23:09:11.135159', '2015-03-18 23:09:11.135159', 'Luis')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1809, 'Bainella', 'bainella@hotmail.com', NULL, 1, '2015-03-18 23:09:11.165932', '2015-03-18 23:09:11.165932', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1810, 'maryta', 'maryeclayre@hotmail.com', NULL, 1, '2015-03-18 23:09:11.238266', '2015-03-18 23:09:11.238266', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1811, 'Emilia', 'emiliaedwards@gmail.com', NULL, 1, '2015-03-18 23:09:11.251987', '2015-03-18 23:09:11.251987', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1812, 'José', 'jiv@mi.cl', NULL, 1, '2015-03-18 23:09:11.271365', '2015-03-18 23:09:11.271365', 'Ignacio Vicuña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1813, 'Cristian', 'artdealerchile@gmail.com', NULL, 1, '2015-03-18 23:09:11.294229', '2015-03-18 23:09:11.294229', 'Ismael Faundez Sagredo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1814, 'Victoria', 'pitujensen@hotmail.com', NULL, 1, '2015-03-18 23:09:11.304084', '2015-03-18 23:09:11.304084', 'Jensen')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1815, 'artista', 'lemanua28@hotmail.com', NULL, 1, '2015-03-18 23:09:11.319311', '2015-03-18 23:09:11.319311', 'plastico')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1816, 'Paz', 'paz_castaneda@yahoo.es', NULL, 1, '2015-03-18 23:09:11.424403', '2015-03-18 23:09:11.424403', 'Castañeda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1817, 'Carlos', 'arte.cota@yahoo.es', NULL, 1, '2015-03-18 23:09:11.433778', '2015-03-18 23:09:11.433778', 'Carras-cota')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1818, 'Pamela', 'seniorita_lotofoga@hotmail.com', NULL, 1, '2015-03-18 23:09:11.443062', '2015-03-18 23:09:11.443062', 'Hernández')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1819, 'cain', 'caincamus@gmail.com', NULL, 1, '2015-03-18 23:09:11.452753', '2015-03-18 23:09:11.452753', 'camus')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1820, 'max', 'maxhamil@gmail.com', NULL, 1, '2015-03-18 23:09:11.471292', '2015-03-18 23:09:11.471292', 'Hamilton')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1821, 'Mela', 'ismaelav@gmail.com', NULL, 1, '2015-03-18 23:09:11.481500', '2015-03-18 23:09:11.481500', 'Vidal Matteau')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1822, 'Mela', 'blueberrybird18@hotmail.com', NULL, 1, '2015-03-18 23:09:11.505775', '2015-03-18 23:09:11.505775', 'Matteau')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1823, 'francisco.romero', 'francisco.romero@spacior.com', NULL, 1, '2015-03-18 23:09:11.527911', '2015-03-18 23:09:11.527911', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1824, 'Francisco', 'el_laberinto@hotmail.com', NULL, 1, '2015-03-18 23:09:11.537354', '2015-03-18 23:09:11.537354', 'Javier Romero Ramos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1825, 'Matías', 'mej11@hotmail.com', NULL, 1, '2015-03-18 23:09:11.546498', '2015-03-18 23:09:11.546498', 'E. J.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1826, 'Leyla', 'Leylaluna@gmail.com', NULL, 1, '2015-03-18 23:09:11.555564', '2015-03-18 23:09:11.555564', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1827, 'pavinalejandro122@gmail.com', 'pavinalejandro122@gmail.com', NULL, 1, '2015-03-18 23:09:11.569323', '2015-03-18 23:09:11.569323', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1828, 'alejandro', 'pintorpereza67@gmail.com', NULL, 1, '2015-03-18 23:09:11.582213', '2015-03-18 23:09:11.582213', 'pavin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1829, 'Lukas', 'ljbravon@gmail.com', NULL, 1, '2015-03-18 23:09:11.592370', '2015-03-18 23:09:11.592370', 'José Bravo Nicolás')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1830, 'Clarisa', 'mclarisa@gmail.com', NULL, 1, '2015-03-18 23:09:11.602132', '2015-03-18 23:09:11.602132', 'Menteguiaga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1831, 'Rah-beat', 'noinvolucion@gmail.com', NULL, 1, '2015-03-18 23:09:11.619346', '2015-03-18 23:09:11.619346', 'Yufla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1832, 'juan', 'melipillo@yahoo.com', NULL, 1, '2015-03-18 23:09:11.628828', '2015-03-18 23:09:11.628828', 'guillermo tejeda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1833, 'El', 'ljhonnyrep@hotmail.com', NULL, 1, '2015-03-18 23:09:11.636983', '2015-03-18 23:09:11.636983', 'Drac')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1834, 'Victor', 'vhsilvac@hotmail.com', NULL, 1, '2015-03-18 23:09:11.646834', '2015-03-18 23:09:11.646834', 'Silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1835, 'Blanca', 'blanca_flornm@hotmail.com', NULL, 1, '2015-03-18 23:09:11.656122', '2015-03-18 23:09:11.656122', 'Novelo Martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1836, 'Christian', 'anton292@hotmail.com', NULL, 1, '2015-03-18 23:09:11.669476', '2015-03-18 23:09:11.669476', 'Pinilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1837, 'Jose', 'dark_enfelo_metal@hotmail.com', NULL, 1, '2015-03-18 23:09:11.695686', '2015-03-18 23:09:11.695686', 'Luis Delgado Carrillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1838, 'Lusewix', 'mirtalusewicz@fasegrafica.com.ar', NULL, 1, '2015-03-18 23:09:11.705635', '2015-03-18 23:09:11.705635', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1839, 'indalecio', 'amaurisjosue@yahoo.com', NULL, 1, '2015-03-18 23:09:11.719126', '2015-03-18 23:09:11.719126', 'silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1840, 'marcelo', 'marczambrano@yahoo.es', NULL, 1, '2015-03-18 23:09:11.727876', '2015-03-18 23:09:11.727876', 'zambrano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1841, 'Francisca', 'tienda@caritadegato.cl', NULL, 1, '2015-03-18 23:09:11.736520', '2015-03-18 23:09:11.736520', 'Gormaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1842, 'chizuko', 'chizuko_osato@hotmail.com', NULL, 1, '2015-03-18 23:09:11.762205', '2015-03-18 23:09:11.762205', 'osato')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1843, 'Norberto', 'norbertognzlz@gmail.com', NULL, 1, '2015-03-18 23:09:11.778690', '2015-03-18 23:09:11.778690', 'gonzalez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1844, 'Ana', 'anitax_pxa@hotmail.com', NULL, 1, '2015-03-18 23:09:11.801919', '2015-03-18 23:09:11.801919', 'Luisa Vargas Dinamarca')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1845, 'Jaume', 'josocenmell@hotmail.com', NULL, 1, '2015-03-18 23:09:11.819205', '2015-03-18 23:09:11.819205', 'Gamell hosta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1846, 'FRSKITO', 'wence_max@hotmail.com', NULL, 1, '2015-03-18 23:09:11.833758', '2015-03-18 23:09:11.833758', 'DE CONSERVAS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1847, 'Pedro', 'ppalmacasanova@gmail.com', NULL, 1, '2015-03-18 23:09:11.868501', '2015-03-18 23:09:11.868501', 'Palma Casanova')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1848, 'Hualpen', 'carlopezoro@gmail.com', NULL, 1, '2015-03-18 23:09:11.878579', '2015-03-18 23:09:11.878579', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1849, 'Zaida', 'zaida.fuentes@gmail.com', NULL, 1, '2015-03-18 23:09:11.897503', '2015-03-18 23:09:11.897503', 'Fuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1850, 'Beatriz', 'bminth@gmail.com', NULL, 1, '2015-03-18 23:09:11.911630', '2015-03-18 23:09:11.911630', 'Servín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1851, 'Benjamin', 'benjaminaraya86@gmail.com', NULL, 1, '2015-03-18 23:09:11.926168', '2015-03-18 23:09:11.926168', 'Araya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1852, 'Pablo', 'pablo.n.ulloa@hotmail.com', NULL, 1, '2015-03-18 23:09:11.944490', '2015-03-18 23:09:11.944490', 'Ulloa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1853, 'Pablo', 'pablo.n.ulloa@gmail.com', NULL, 1, '2015-03-18 23:09:11.956091', '2015-03-18 23:09:11.956091', 'n. Ulloa G.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1854, 'videoicomiso', 'contacto@usvtv.net', NULL, 1, '2015-03-18 23:09:11.983789', '2015-03-18 23:09:11.983789', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1855, 'cristobal', 'cristobal.racordon@gmail.com', NULL, 1, '2015-03-18 23:09:12.000424', '2015-03-18 23:09:12.000424', 'racordon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1856, 'Judit', 'lapicesdecera@hotmail.com', NULL, 1, '2015-03-18 23:09:12.029095', '2015-03-18 23:09:12.029095', 'Lara Espinoza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1857, 'Luciano', 'lugiusti@gmail.com', NULL, 1, '2015-03-18 23:09:12.053283', '2015-03-18 23:09:12.053283', 'Giusti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1858, 'galeria', 'laurahaber@fibertel.com.ar', NULL, 1, '2015-03-18 23:09:12.068468', '2015-03-18 23:09:12.068468', 'laura haber')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1859, 'andres', 'andresmoram@gmail.com', NULL, 1, '2015-03-18 23:09:12.078203', '2015-03-18 23:09:12.078203', 'mora')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1860, 'Andrea', 'andreatorresmorales@gmail.com', NULL, 1, '2015-03-18 23:09:12.088644', '2015-03-18 23:09:12.088644', 'Torres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1861, 'panshoomedelpizarro', 'elpanshoo@hotmail.com', NULL, 1, '2015-03-18 23:09:12.097495', '2015-03-18 23:09:12.097495', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1862, 'Patricio', 'gonzabez@gmail.com', NULL, 1, '2015-03-18 23:09:12.810753', '2015-03-18 23:09:12.810753', 'Gonzalez Bezanilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1863, 'epuelopez3', 'epuelopez3@yahoo.es', NULL, 1, '2015-03-18 23:09:12.820437', '2015-03-18 23:09:12.820437', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1864, 'lasalinasa', 'danielasalinasa@gmail.com', NULL, 1, '2015-03-18 23:09:12.828923', '2015-03-18 23:09:12.828923', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1865, 'Pedro', 'pedrorajevic@gmail.com', NULL, 1, '2015-03-18 23:09:12.837094', '2015-03-18 23:09:12.837094', 'Rajevic')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1866, 'Juan', 'obras@espaciosinergia.com.ar', NULL, 1, '2015-03-18 23:09:12.845999', '2015-03-18 23:09:12.845999', 'Marigo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1867, 'Soledad', 'sc@espaciosinergia.com.ar', NULL, 1, '2015-03-18 23:09:12.866239', '2015-03-18 23:09:12.866239', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1868, 'Evelyn', 'evelyana@hotmail.com', NULL, 1, '2015-03-18 23:09:12.881485', '2015-03-18 23:09:12.881485', 'Garcia Garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1869, 'Federico', 'niandujuegos@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:12.891461', '2015-03-18 23:09:12.891461', 'Guillermo Klärich')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1870, 'la', 'gerhardt.rs@gmail.com', NULL, 1, '2015-03-18 23:09:12.917988', '2015-03-18 23:09:12.917988', 'lecorot')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1871, 'LAURA', 'cruzmedieval@hotmail.com', NULL, 1, '2015-03-18 23:09:12.933273', '2015-03-18 23:09:12.933273', 'VIRGINIA SANTIAGO ARAGON')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1872, 'Susana', 'seweingast@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:12.942656', '2015-03-18 23:09:12.942656', 'Weingast')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1873, 'vicky', 'centauro_mitominia@hotmail.com', NULL, 1, '2015-03-18 23:09:12.953084', '2015-03-18 23:09:12.953084', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1874, 'Romi', 'rocmti@gmail.com', NULL, 1, '2015-03-18 23:09:12.962047', '2015-03-18 23:09:12.962047', 'Carol')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1875, 'Francisco', 'glezvera@gmail.com', NULL, 1, '2015-03-18 23:09:12.970385', '2015-03-18 23:09:12.970385', 'González-Vera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1876, 'emersson', 'emersox@gmail.com', NULL, 1, '2015-03-18 23:09:12.983637', '2015-03-18 23:09:12.983637', 'pérez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1877, 'Marta', 'martayglesias@yahoo.es', NULL, 1, '2015-03-18 23:09:12.998843', '2015-03-18 23:09:12.998843', 'Yglesias')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1878, 'Rodrigo', 'rgvproducciongrafica@vtr.net', NULL, 1, '2015-03-18 23:09:13.007678', '2015-03-18 23:09:13.007678', 'González Velásquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1879, 'Federico', 'estudiobinocular@gmail.com', NULL, 1, '2015-03-18 23:09:13.016296', '2015-03-18 23:09:13.016296', 'Elton')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1880, 'Enzo', 'cagdecito@gmail.com', NULL, 1, '2015-03-18 23:09:13.032280', '2015-03-18 23:09:13.032280', 'Bravo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1881, 'José', 'cisternas.jose@gmail.com', NULL, 1, '2015-03-18 23:09:13.041653', '2015-03-18 23:09:13.041653', 'Tomás Cisternas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1882, 'Maria', 'mtvallejos@gmail.com', NULL, 1, '2015-03-18 23:09:13.050987', '2015-03-18 23:09:13.050987', 'Teresa Vallejos Araos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1883, 'Mario', 'mlagosbravo@gmail.com', NULL, 1, '2015-03-18 23:09:13.059653', '2015-03-18 23:09:13.059653', 'Lagos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1884, 'david', 'dadaproducciones@gmail.com', NULL, 1, '2015-03-18 23:09:13.068004', '2015-03-18 23:09:13.068004', 'alejandro soto fernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1885, 'Alejandro', 'alejandro.ortuzar@gmail.com', NULL, 1, '2015-03-18 23:09:13.082220', '2015-03-18 23:09:13.082220', 'Ortúzar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1886, 'Miguel', 'alercesmilenarios@hotmail.com', NULL, 1, '2015-03-18 23:09:13.091191', '2015-03-18 23:09:13.091191', 'Angel Merino Tapia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1887, 'Alex', 'jamett09@hotmail.com', NULL, 1, '2015-03-18 23:09:13.100010', '2015-03-18 23:09:13.100010', 'Jamett Venegas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1888, 'Ruth', 'rddl1987@hotmail.com', NULL, 1, '2015-03-18 23:09:13.109589', '2015-03-18 23:09:13.109589', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1889, 'Yolox', 'Yolox@Yolox.com', NULL, 1, '2015-03-18 23:09:13.117799', '2015-03-18 23:09:13.117799', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1890, 'Constanza', 'conigazmuri@gmail.com', NULL, 1, '2015-03-18 23:09:13.132282', '2015-03-18 23:09:13.132282', 'Gazmuri')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1891, 'Claudia', 'sergiclau@gmail.com', NULL, 1, '2015-03-18 23:09:13.141585', '2015-03-18 23:09:13.141585', 'Olivos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1892, 'José', 'jose.andrade.r@gmail.com', NULL, 1, '2015-03-18 23:09:13.150284', '2015-03-18 23:09:13.150284', 'Andrade')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1893, 'axdiseno', 'axdiseno@gmail.com', NULL, 1, '2015-03-18 23:09:13.159527', '2015-03-18 23:09:13.159527', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1894, 'edicionanimita', 'edicionanimita@gmail.com', NULL, 1, '2015-03-18 23:09:13.167763', '2015-03-18 23:09:13.167763', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1895, 'Renso', 'rensozev@hotmail.com', NULL, 1, '2015-03-18 23:09:13.183043', '2015-03-18 23:09:13.183043', 'Castaneda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1896, 'Víctor', 'victor.mahana@gmail.com', NULL, 1, '2015-03-18 23:09:13.192039', '2015-03-18 23:09:13.192039', 'Mahana Nassar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1897, 'Paula', 'pvantunez@gmail.com', NULL, 1, '2015-03-18 23:09:13.200486', '2015-03-18 23:09:13.200486', 'Valenzuela Antúnez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1898, 'María', 'majosita2@yahoo.es', NULL, 1, '2015-03-18 23:09:13.208816', '2015-03-18 23:09:13.208816', 'José Sáenz Reyes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1899, 'Diego', 'diegorvergara@hotmail.com', NULL, 1, '2015-03-18 23:09:13.217574', '2015-03-18 23:09:13.217574', 'Renom Vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1900, 'gabriela', 'jaqay_kani@hotmail.com', NULL, 1, '2015-03-18 23:09:13.232211', '2015-03-18 23:09:13.232211', 'fernanda ramua')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1901, 'Carlos', 'carlosvallenriquez@gmail.com', NULL, 1, '2015-03-18 23:09:13.241472', '2015-03-18 23:09:13.241472', 'Valle Enriquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1902, 'Kata', 'khanssens@gmail.com', NULL, 1, '2015-03-18 23:09:13.250171', '2015-03-18 23:09:13.250171', 'Hanssens')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1903, 'María', 'mpgonzalezdurney@gmail.com', NULL, 1, '2015-03-18 23:09:13.259185', '2015-03-18 23:09:13.259185', 'Paz González Durney')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1904, 'projasja', 'projasja@hotmail.com', NULL, 1, '2015-03-18 23:09:13.268068', '2015-03-18 23:09:13.268068', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1905, 'Artista', 'projasja@gmail.com', NULL, 1, '2015-03-18 23:09:13.281844', '2015-03-18 23:09:13.281844', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1906, 'Gilberto', 'gilberto17_21@hotmail.com', NULL, 1, '2015-03-18 23:09:13.291792', '2015-03-18 23:09:13.291792', 'Rosas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1907, 'manuel', 'artista716@hotmail.com', NULL, 1, '2015-03-18 23:09:13.301371', '2015-03-18 23:09:13.301371', 'rodriguez caceres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1908, 'alejandra', 'paquitas4manos@gmail.com', NULL, 1, '2015-03-18 23:09:13.311207', '2015-03-18 23:09:13.311207', 'panza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1909, 'Marcusses', 'taussmarcusses@gmail.com', NULL, 1, '2015-03-18 23:09:13.319903', '2015-03-18 23:09:13.319903', 'Tauss')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1910, 'Jacques', 'jacques_sterenberg@hotmail.com', NULL, 1, '2015-03-18 23:09:13.331881', '2015-03-18 23:09:13.331881', 'Sterenberg')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1911, 'pablo', 'tronic_kplr@hotmail.com', NULL, 1, '2015-03-18 23:09:13.341745', '2015-03-18 23:09:13.341745', 'patricio poblete arsendiga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1912, 'Bernardita', 'ita_aris@yahoo.com', NULL, 1, '2015-03-18 23:09:13.350898', '2015-03-18 23:09:13.350898', 'Arís')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1913, 'Claudia', 'claudiavenegas@123.cl', NULL, 1, '2015-03-18 23:09:13.359915', '2015-03-18 23:09:13.359915', 'Venegas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1914, 'Ronald', 'ronaldmorrison@hotmail.es', NULL, 1, '2015-03-18 23:09:13.368562', '2015-03-18 23:09:13.368562', 'Morrison')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1915, 'Jose', 'jcarcavilla@gmail.com', NULL, 1, '2015-03-18 23:09:13.382135', '2015-03-18 23:09:13.382135', 'Carcavilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1916, 'Rodrigo', 'rodrigovarez@gmail.com', NULL, 1, '2015-03-18 23:09:13.390741', '2015-03-18 23:09:13.390741', 'Alvarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1917, 'arteemol', 'rosariomartinez@chilearte.com', NULL, 1, '2015-03-18 23:09:13.400379', '2015-03-18 23:09:13.400379', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1918, 'Soledad', 'harleysim@yahoo.com', NULL, 1, '2015-03-18 23:09:13.409547', '2015-03-18 23:09:13.409547', 'Infante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1919, 'juan', 'jleongrafo@gmail.com', NULL, 1, '2015-03-18 23:09:13.418503', '2015-03-18 23:09:13.418503', 'luis leon cortes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1920, 'Columpio', 'galeria@columpiomadrid.com', NULL, 1, '2015-03-18 23:09:13.432286', '2015-03-18 23:09:13.432286', 'galeria de dibujo contemporáneo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1921, 'Marianne', 'caracolosa@gmail.com', NULL, 1, '2015-03-18 23:09:13.441113', '2015-03-18 23:09:13.441113', 'Stenger O.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1922, 'Emanuel', 'manuu.gnonzalez@gmail.com', NULL, 1, '2015-03-18 23:09:13.449856', '2015-03-18 23:09:13.449856', 'Gonzalez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1923, 'Manu', 'manusnot@gmail.com', NULL, 1, '2015-03-18 23:09:13.459221', '2015-03-18 23:09:13.459221', 'Gonzalez Gutierrez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1924, 'Felipe', 'valenzuelaleiva.felipe@gmail.com', NULL, 1, '2015-03-18 23:09:13.468178', '2015-03-18 23:09:13.468178', 'Valenzuela Leiva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1925, 'Milena', 'milenagropper@gmail.com', NULL, 1, '2015-03-18 23:09:13.490263', '2015-03-18 23:09:13.490263', 'Gröpper')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1926, 'Maggie', 'maggie.sierralta@gmail.com', NULL, 1, '2015-03-18 23:09:13.501729', '2015-03-18 23:09:13.501729', 'Sierralta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1927, 'gustavo', 'avioneta2012@gmail.com', NULL, 1, '2015-03-18 23:09:13.575244', '2015-03-18 23:09:13.575244', 'antonio vargas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1928, 'Pablo', 'lincura@gmail.com', NULL, 1, '2015-03-18 23:09:13.596128', '2015-03-18 23:09:13.596128', 'Salvador Lincura')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1929, 'Millan', 'ludem85@hotmail.com', NULL, 1, '2015-03-18 23:09:13.622240', '2015-03-18 23:09:13.622240', 'Ludena')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1930, 'estrellaolivares', 'estrellaolivares@yahoo.es', NULL, 1, '2015-03-18 23:09:13.641781', '2015-03-18 23:09:13.641781', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1931, 'Ricardo', 'claudiobaezam@gmail.com', NULL, 1, '2015-03-18 23:09:13.667204', '2015-03-18 23:09:13.667204', 'Eduardo Baeza Muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1932, 'Diego', 'sr.diego.jebus@gmail.com', NULL, 1, '2015-03-18 23:09:13.701105', '2015-03-18 23:09:13.701105', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1933, 'Isabel', 'marcel_duchamp@hotmail.com', NULL, 1, '2015-03-18 23:09:13.714469', '2015-03-18 23:09:13.714469', 'Santibáñez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1934, 'faraco', 'faracomacias@hotmail.com', NULL, 1, '2015-03-18 23:09:13.801230', '2015-03-18 23:09:13.801230', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1935, 'Daou', 'btaste@gmail.com', NULL, 1, '2015-03-18 23:09:13.828201', '2015-03-18 23:09:13.828201', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1936, 'Felipe', 'felipevisor7@gmail.com', NULL, 1, '2015-03-18 23:09:13.838519', '2015-03-18 23:09:13.838519', 'Vergara Aguilera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1937, 'Pablo', 'guzpablo@gmail.com', NULL, 1, '2015-03-18 23:09:13.848070', '2015-03-18 23:09:13.848070', 'Guzmán S.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1938, 'Boris', 'borisgrns@gmail.com', NULL, 1, '2015-03-18 23:09:13.867438', '2015-03-18 23:09:13.867438', 'de la Vega')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1939, 'Fabian', 'fabianruiz.b@gmail.com', NULL, 1, '2015-03-18 23:09:13.880993', '2015-03-18 23:09:13.880993', 'Eduardo Ruiz Briones')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1940, 'Ale', 'aleacosta@mi.cl', NULL, 1, '2015-03-18 23:09:13.898319', '2015-03-18 23:09:13.898319', 'Acosta Ilustraciones')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1941, 'Huaso', 'tori_cjvv@hotmail.com', NULL, 1, '2015-03-18 23:09:13.913044', '2015-03-18 23:09:13.913044', 'Valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1942, 'barimi', 'barimig@hotmail.com', NULL, 1, '2015-03-18 23:09:13.921485', '2015-03-18 23:09:13.921485', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1943, 'mauricio', 'pezzob73@hotmail.com', NULL, 1, '2015-03-18 23:09:13.934386', '2015-03-18 23:09:13.934386', 'Pezzopane')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1944, 'Felipe', 'dr.ratoz.xD@gmail.com', NULL, 1, '2015-03-18 23:09:13.955878', '2015-03-18 23:09:13.955878', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1945, 'Gilden', 'ktarsis30@yahoo.com', NULL, 1, '2015-03-18 23:09:13.966828', '2015-03-18 23:09:13.966828', '')  (0.3ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1946, 'Geri', 'mihatatu@mail.ru', NULL, 1, '2015-03-18 23:09:13.975847', '2015-03-18 23:09:13.975847', 'Taylor')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1947, 'Ismael', 'documentos.mentales@gmail.com', NULL, 1, '2015-03-18 23:09:13.984223', '2015-03-18 23:09:13.984223', 'Orozco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1948, 'Amanda', 'amanding07@hotmail.com', NULL, 1, '2015-03-18 23:09:13.997730', '2015-03-18 23:09:13.997730', 'rodríguez Solar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1949, 'Fabiola', 'musita.f@gmail.com', NULL, 1, '2015-03-18 23:09:14.011657', '2015-03-18 23:09:14.011657', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1950, 'Raj', 'rajmor@gmail.com', NULL, 1, '2015-03-18 23:09:14.023155', '2015-03-18 23:09:14.023155', 'More')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1951, 'Roger', 'dennymati.s@gmail.com', NULL, 1, '2015-03-18 23:09:14.047133', '2015-03-18 23:09:14.047133', 'Summy')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1952, 'manuel', 'manuelrodriguez71@live.cl', NULL, 1, '2015-03-18 23:09:14.057800', '2015-03-18 23:09:14.057800', 'rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1953, 'manuel', 'manuelrodriguez77@gmail.com', NULL, 1, '2015-03-18 23:09:14.080980', '2015-03-18 23:09:14.080980', 'olavio reodriguez caceres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1954, 'Gonzalo', 'gonzaloper@adinet.com.uy', NULL, 1, '2015-03-18 23:09:14.097018', '2015-03-18 23:09:14.097018', 'Perdomo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1955, 'igor', 'eliuno@hotmail.com', NULL, 1, '2015-03-18 23:09:14.121542', '2015-03-18 23:09:14.121542', 'corrales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1956, 'Martín', 'martintxo2004@gmail.com', NULL, 1, '2015-03-18 23:09:14.134099', '2015-03-18 23:09:14.134099', 'Sánchez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1957, 'Miguel', 'mcm.metrik@gmail.com', NULL, 1, '2015-03-18 23:09:14.147107', '2015-03-18 23:09:14.147107', 'Angel Cornejo Moraga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1958, 'Alejandro', 'info@casonasannicolas.cl', NULL, 1, '2015-03-18 23:09:14.156586', '2015-03-18 23:09:14.156586', 'Godoy')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1959, 'Claudia', 'canobra@vtr.net', NULL, 1, '2015-03-18 23:09:14.165796', '2015-03-18 23:09:14.165796', 'Canobra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1960, 'jaime', 'urbanoty@live.cl', NULL, 1, '2015-03-18 23:09:14.174246', '2015-03-18 23:09:14.174246', 'urbina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1961, 'Roberto', 'romenestra@hotmail.es', NULL, 1, '2015-03-18 23:09:14.196233', '2015-03-18 23:09:14.196233', 'Mendes Estrada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1962, 'Miriam', 'miriamladrondeguevara@hotmail.com', NULL, 1, '2015-03-18 23:09:14.205796', '2015-03-18 23:09:14.205796', 'Ladròn De Guevara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1963, 'Mila', 'milaae@live.cl', NULL, 1, '2015-03-18 23:09:14.214833', '2015-03-18 23:09:14.214833', 'Belén')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1964, 'Luis', 'lucho_patton@hotmail.com', NULL, 1, '2015-03-18 23:09:14.229627', '2015-03-18 23:09:14.229627', 'Mancilla Avila')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1965, 'Manuel', 'manuelfloresn@gmail.com', NULL, 1, '2015-03-18 23:09:14.247267', '2015-03-18 23:09:14.247267', 'Flores N.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1966, 'Marcelo', 'mentequecrea@gmail.com', NULL, 1, '2015-03-18 23:09:14.257561', '2015-03-18 23:09:14.257561', 'Contreras')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1967, 'Jorge', 'rosselarquitecto@hotmail.com', NULL, 1, '2015-03-18 23:09:14.272805', '2015-03-18 23:09:14.272805', 'Ivan Rossel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1968, 'Monga', 'somosmonga@gmail.com', NULL, 1, '2015-03-18 23:09:14.371655', '2015-03-18 23:09:14.371655', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1969, 'Katherine', 'khrdalo@yahoo.es', NULL, 1, '2015-03-18 23:09:14.381409', '2015-03-18 23:09:14.381409', 'Hrdalo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1970, 'Michael', 'simana-79@mail.ru', NULL, 1, '2015-03-18 23:09:14.390978', '2015-03-18 23:09:14.390978', 'Da Silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1971, 'Paulina', 'tallernapols@gmail.com', NULL, 1, '2015-03-18 23:09:14.400725', '2015-03-18 23:09:14.400725', 'Bedrack')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1972, 'Matthew', 'pantherguy456@gmail.com', NULL, 1, '2015-03-18 23:09:14.409947', '2015-03-18 23:09:14.409947', 'Rairden')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1973, 'Luis', 'manosquecrean@gmail.com', NULL, 1, '2015-03-18 23:09:14.431063', '2015-03-18 23:09:14.431063', 'Marcelo Contreras')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1974, 'FA', 'fagarayfoto@gmail.com', NULL, 1, '2015-03-18 23:09:14.441292', '2015-03-18 23:09:14.441292', 'GARAY')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1975, 'Jeff', 'whattheheckisreal@gmail.com', NULL, 1, '2015-03-18 23:09:14.450860', '2015-03-18 23:09:14.450860', 'Dickerson')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1976, 'Mario', 'martin.apaterson@gmail.com', NULL, 1, '2015-03-18 23:09:14.460738', '2015-03-18 23:09:14.460738', 'manganelli')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1977, 'Gabriela', 'gabrielapazfotografia@gmail.com', NULL, 1, '2015-03-18 23:09:14.481341', '2015-03-18 23:09:14.481341', 'Paz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1978, 'Mariel', 'marielbgalarza@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:14.491906', '2015-03-18 23:09:14.491906', 'Galarza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1979, 'Daniella', 'daniellaperbac@yahoo.com', NULL, 1, '2015-03-18 23:09:14.502874', '2015-03-18 23:09:14.502874', 'Perez Bacigalupo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1980, 'PABLO', 'contact.projectt@gmail.com', NULL, 1, '2015-03-18 23:09:14.511177', '2015-03-18 23:09:14.511177', 'GOMEZ GÜBELI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1981, 'Cristóbal', 'kleerabioso@gmail.com', NULL, 1, '2015-03-18 23:09:14.530482', '2015-03-18 23:09:14.530482', 'Betancourt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1982, 'PROYECTO', 'accionsudaca@gmail.com', NULL, 1, '2015-03-18 23:09:14.540090', '2015-03-18 23:09:14.540090', 'ACCION SUDACA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1983, 'Javier', 'javier@moretamirc.cl', NULL, 1, '2015-03-18 23:09:14.548621', '2015-03-18 23:09:14.548621', 'Moreta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1984, 'Carola', 'carolinavergarajunge@gmail.com', NULL, 1, '2015-03-18 23:09:14.557529', '2015-03-18 23:09:14.557529', 'Vergara Junge')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1985, 'sol', 'solrezza@radioscomunitarias.org', NULL, 1, '2015-03-18 23:09:14.566832', '2015-03-18 23:09:14.566832', 'rezza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1986, 'carlos', 'corracorra@gmail.com', NULL, 1, '2015-03-18 23:09:14.579753', '2015-03-18 23:09:14.579753', 'corrales p.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1987, 'Frank', 'fmillard@gmail.com', NULL, 1, '2015-03-18 23:09:14.589639', '2015-03-18 23:09:14.589639', 'Millard')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1988, 'jorge', 'jorgepanchana@gmail.com', NULL, 1, '2015-03-18 23:09:14.598805', '2015-03-18 23:09:14.598805', 'panchana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1989, 'marcia', 'marcia.jaramillo@gmail.com', NULL, 1, '2015-03-18 23:09:14.607949', '2015-03-18 23:09:14.607949', 'jaramillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1990, 'Sebastián', 'bitacora.anacronica@gmail.com', NULL, 1, '2015-03-18 23:09:14.616502', '2015-03-18 23:09:14.616502', 'Valenzuela Valdivia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1991, 'El', 'theadmin@seomasterblog.com', NULL, 1, '2015-03-18 23:09:14.629056', '2015-03-18 23:09:14.629056', 'Matador')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1992, 'Fernando', 'feralemanmalespin@gmail.com', NULL, 1, '2015-03-18 23:09:14.638149', '2015-03-18 23:09:14.638149', 'Aleman')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1993, 'Ryan', 'retroboy@foroseguimiento.com', NULL, 1, '2015-03-18 23:09:14.650513', '2015-03-18 23:09:14.650513', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1994, 'Observatorio', 'observatorio.arte@gmail.com', NULL, 1, '2015-03-18 23:09:14.667249', '2015-03-18 23:09:14.667249', 'de Arte')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1995, 'Outta', 'cboffer@aim.com', NULL, 1, '2015-03-18 23:09:14.687220', '2015-03-18 23:09:14.687220', 'Daloop')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1996, 'jocelyn', 'brazos__d_sol@hotmail.com', NULL, 1, '2015-03-18 23:09:14.697967', '2015-03-18 23:09:14.697967', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1997, 'maggiolo', 'a_maggiolope@gmail.com', NULL, 1, '2015-03-18 23:09:14.714195', '2015-03-18 23:09:14.714195', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1998, 'leoncervantes', 'leoncervantes@hotmail.com', NULL, 1, '2015-03-18 23:09:14.735979', '2015-03-18 23:09:14.735979', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (1999, 'Gustavo', 'laragoz@gmail.com', NULL, 1, '2015-03-18 23:09:14.746094', '2015-03-18 23:09:14.746094', 'Lara Molina vo Lara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2000, 'Marianne', 'mariannevaleria@hotmail.com', NULL, 1, '2015-03-18 23:09:14.796513', '2015-03-18 23:09:14.796513', 'Valeria')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2001, 'necesidad', 'lartistantezana@gmail.com', NULL, 1, '2015-03-18 23:09:14.806415', '2015-03-18 23:09:14.806415', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2002, 'Rodrigo', 'rodrigoaarte@gmail.com', NULL, 1, '2015-03-18 23:09:14.816765', '2015-03-18 23:09:14.816765', 'Alonso Poblete Herrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2003, 'entertainment', 'annajoh.johanson422@googlemail.com', NULL, 1, '2015-03-18 23:09:14.845899', '2015-03-18 23:09:14.845899', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2004, 'Klaus', 'igiveyouhealth2@aim.com', NULL, 1, '2015-03-18 23:09:14.867652', '2015-03-18 23:09:14.867652', 'Rasch')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2005, 'Julio', 'jedc1973@gmail.com', NULL, 1, '2015-03-18 23:09:14.891257', '2015-03-18 23:09:14.891257', 'Enrique Diaz Cambon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2006, 'Edwin', 'velazquezestudio@yahoo.com', NULL, 1, '2015-03-18 23:09:14.931118', '2015-03-18 23:09:14.931118', 'Velazquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2007, 'Eliud', 'tavo_betos99@hotmail.com', NULL, 1, '2015-03-18 23:09:14.945768', '2015-03-18 23:09:14.945768', 'Elizondo Guevara (Yuyito de China)')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2008, 'paloma', 'paloma_rdzg@hotmail.com', NULL, 1, '2015-03-18 23:09:14.957976', '2015-03-18 23:09:14.957976', 'rodríguez guel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2009, 'dcapona', 'dcapona@gmail.com', NULL, 1, '2015-03-18 23:09:14.985582', '2015-03-18 23:09:14.985582', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2010, 'Poli', 'poliplay@gmail.com', NULL, 1, '2015-03-18 23:09:14.995728', '2015-03-18 23:09:14.995728', 'Muji K')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2011, 'Massimiliano', 'mex@fantaproduction.com', NULL, 1, '2015-03-18 23:09:15.011992', '2015-03-18 23:09:15.011992', 'Cammuso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2012, 'Pete', 'whytheobvious@aim.com', NULL, 1, '2015-03-18 23:09:15.059420', '2015-03-18 23:09:15.059420', 'Seaney')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2013, 'Fernando', 'hinostrozaf@gmail.com', NULL, 1, '2015-03-18 23:09:15.086825', '2015-03-18 23:09:15.086825', 'Hinostroza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2014, 'Fernando', 'entrepaisas@yahoo.com', NULL, 1, '2015-03-18 23:09:15.102636', '2015-03-18 23:09:15.102636', 'Henao Díez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2015, 'Fernando', 'fehenao50@yahoo.com', NULL, 1, '2015-03-18 23:09:15.116987', '2015-03-18 23:09:15.116987', 'Henao Díez Blenker')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2016, 'Joaquin', 'joaquin.mukden@mail.udp.cl', NULL, 1, '2015-03-18 23:09:15.130296', '2015-03-18 23:09:15.130296', 'Mukden')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2017, 'Héctor', 'hgallegosc1@gmail.com', NULL, 1, '2015-03-18 23:09:15.149507', '2015-03-18 23:09:15.149507', 'Gallegos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2018, 'Germán', 'givicencio@gmail.com', NULL, 1, '2015-03-18 23:09:15.225217', '2015-03-18 23:09:15.225217', 'Vicencio')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2019, 'RODRIGO', 'rodrigoduran33@gmail.com', NULL, 1, '2015-03-18 23:09:15.246063', '2015-03-18 23:09:15.246063', 'DURAN HUIDOBRO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2020, 'Rubén', 'rubecarrasco@gmail.com', NULL, 1, '2015-03-18 23:09:15.260386', '2015-03-18 23:09:15.260386', 'Carrasco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2021, 'Juan', 'juanjosevg@live.cl', NULL, 1, '2015-03-18 23:09:15.278240', '2015-03-18 23:09:15.278240', 'Jose Velasquez Gonzalez-Tudela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2022, 'micaela', 'micaelaruiz@hotmail.com', NULL, 1, '2015-03-18 23:09:15.289586', '2015-03-18 23:09:15.289586', 'ruiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2023, 'Rocksteady', 'd.sinder.ber@gmail.com', NULL, 1, '2015-03-18 23:09:15.311105', '2015-03-18 23:09:15.311105', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2024, 'José', 'josesalero1602@hotmail.com', NULL, 1, '2015-03-18 23:09:15.327440', '2015-03-18 23:09:15.327440', 'Salero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2025, 'Marco', 'grifhar@hotmail.com', NULL, 1, '2015-03-18 23:09:15.345403', '2015-03-18 23:09:15.345403', 'Cornejo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2026, 'Sammy86', 'jekse86@gmail.com', NULL, 1, '2015-03-18 23:09:15.363575', '2015-03-18 23:09:15.363575', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2027, 'Macarena', 'macarena26molina@gmail.com', NULL, 1, '2015-03-18 23:09:15.378453', '2015-03-18 23:09:15.378453', 'Molina Dufflocq')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2028, 'CLAROSE', 'clarose2730@hotmail.com', NULL, 1, '2015-03-18 23:09:15.389635', '2015-03-18 23:09:15.389635', 'CLAUDIO RODRIGUEZ SEGOVIA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2029, 'Solange', 'thecocho@gmail.com', NULL, 1, '2015-03-18 23:09:15.407526', '2015-03-18 23:09:15.407526', 'Germain Medina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2030, 'elizabeth', 'sakulore@hotmail.com', NULL, 1, '2015-03-18 23:09:15.419218', '2015-03-18 23:09:15.419218', 'lorena')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2031, 'YURIDIA', 'yurarudz@gmail.com', NULL, 1, '2015-03-18 23:09:15.430419', '2015-03-18 23:09:15.430419', 'RUIZ DIAZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2032, 'Galeria', 'galeriapax@gmail.com', NULL, 1, '2015-03-18 23:09:15.439682', '2015-03-18 23:09:15.439682', 'PAX')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2033, 'Malva', 'info@prorigen.com', NULL, 1, '2015-03-18 23:09:15.463277', '2015-03-18 23:09:15.463277', 'Bermúdez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2034, 'Selectores', 'goselec@gmail.com', NULL, 1, '2015-03-18 23:09:15.476977', '2015-03-18 23:09:15.476977', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2035, 'Anibal', 'almibarazucarado@gmail.com', NULL, 1, '2015-03-18 23:09:15.486097', '2015-03-18 23:09:15.486097', 'Simon Sandoval Sandoval')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2036, 'Dania', 'daniavg@hotmail.com', NULL, 1, '2015-03-18 23:09:15.570932', '2015-03-18 23:09:15.570932', 'Valeria Vidal Gallardo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2037, 'ILIANA', 'ilianas1017@yahoo.es', NULL, 1, '2015-03-18 23:09:15.595438', '2015-03-18 23:09:15.595438', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2038, 'Denisse', 'denissefontecilla@gmail.com', NULL, 1, '2015-03-18 23:09:15.619043', '2015-03-18 23:09:15.619043', 'Fontecilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2039, 'Sergio', 'imagen.imagen.imagen@gmail.com', NULL, 1, '2015-03-18 23:09:15.635726', '2015-03-18 23:09:15.635726', 'Urbina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2040, 'NINIA', 'arte@arteninia.webmail.com', NULL, 1, '2015-03-18 23:09:15.648732', '2015-03-18 23:09:15.648732', 'Fernandez Astrada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2041, 'Pablo', 'pablorittern@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:15.674843', '2015-03-18 23:09:15.674843', 'Ritter Navarro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2042, 'Viviana', 'viviana2484@gmail.com', NULL, 1, '2015-03-18 23:09:15.725635', '2015-03-18 23:09:15.725635', 'Ovando Cid')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2043, 'Alejandra', 'alecxa@gmail.com', NULL, 1, '2015-03-18 23:09:15.735403', '2015-03-18 23:09:15.735403', 'del Campo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2044, 'Alejandra', 'nellyctronica@hotmail.com', NULL, 1, '2015-03-18 23:09:15.745273', '2015-03-18 23:09:15.745273', 'Del Campo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2045, 'Rodrigo', 'brenesthames@hotmail.com', NULL, 1, '2015-03-18 23:09:15.767250', '2015-03-18 23:09:15.767250', 'Brenes Thames')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2046, 'leonardo', 'leo.flores.c@gmail.com', NULL, 1, '2015-03-18 23:09:15.776783', '2015-03-18 23:09:15.776783', 'mnuel flores caceres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2047, 'Felipe', 'contacto@experimentourbano.com', NULL, 1, '2015-03-18 23:09:15.845720', '2015-03-18 23:09:15.845720', 'Valdebenito Nuñez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2048, 'susana', 'susana_cp08@hotmail.com', NULL, 1, '2015-03-18 23:09:15.860651', '2015-03-18 23:09:15.860651', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2049, 'Marcelo', 'marcelomainardi@gmail.com', NULL, 1, '2015-03-18 23:09:15.869973', '2015-03-18 23:09:15.869973', 'Fernandez Mainardi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2050, 'Alberto', 'torresayerdi@gmail.com', NULL, 1, '2015-03-18 23:09:15.880168', '2015-03-18 23:09:15.880168', 'Torres Ayerdi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2051, 'luis', 'lumobu@yahoo.com', NULL, 1, '2015-03-18 23:09:15.893025', '2015-03-18 23:09:15.893025', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2052, 'Luis', 'luguimobu@hotmail.com', NULL, 1, '2015-03-18 23:09:15.904061', '2015-03-18 23:09:15.904061', 'Montoya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2053, 'Pau', 'paulipunk@gmail.com', NULL, 1, '2015-03-18 23:09:15.953319', '2015-03-18 23:09:15.953319', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2054, 'Santiago', 'yagoburgos@gmail.com', NULL, 1, '2015-03-18 23:09:15.976689', '2015-03-18 23:09:15.976689', 'Romel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2055, 'Erick', 'visualmassive@gmail.com', NULL, 1, '2015-03-18 23:09:15.986922', '2015-03-18 23:09:15.986922', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2056, 'Montserrat', 'montsecosido@hotmail.com', NULL, 1, '2015-03-18 23:09:15.995618', '2015-03-18 23:09:15.995618', 'Cosidó Soley')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2057, 'Anita', 'aniferlu@hotmail.com', NULL, 1, '2015-03-18 23:09:16.006843', '2015-03-18 23:09:16.006843', 'Fernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2058, 'jonathan', 'artpopulus@hotmail.com', NULL, 1, '2015-03-18 23:09:16.026801', '2015-03-18 23:09:16.026801', 'elbaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2059, 'Lisbeth', 'lisbethfeinberg@hotmail.com', NULL, 1, '2015-03-18 23:09:16.095679', '2015-03-18 23:09:16.095679', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2060, 'Alejzza', '', NULL, 1, '2015-03-18 23:09:16.115575', '2015-03-18 23:09:16.115575', 'Gòmez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2061, 'carlos', 'negrodeluho@hotmail.com', NULL, 1, '2015-03-18 23:09:16.135162', '2015-03-18 23:09:16.135162', 'enrique españa mina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2062, 'María', 'maria.contrerasval@gmail.com', NULL, 1, '2015-03-18 23:09:16.146614', '2015-03-18 23:09:16.146614', 'Contreras')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2063, 'jose', 'jmcf68@gmail.com', NULL, 1, '2015-03-18 23:09:16.156495', '2015-03-18 23:09:16.156495', 'miguel carcamo fonseca')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2064, 'javi', 'javi_gold@hotmail.com', NULL, 1, '2015-03-18 23:09:16.165902', '2015-03-18 23:09:16.165902', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2065, 'marcela', 'mypptal@hotmail.com', NULL, 1, '2015-03-18 23:09:16.226549', '2015-03-18 23:09:16.226549', 'ponce')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2066, 'Julietta', 'julietanievas@gmail.com', NULL, 1, '2015-03-18 23:09:16.238896', '2015-03-18 23:09:16.238896', 'Sol Nievas Rebechi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2067, 'pablo', 'pablo-catado@hotmail.com', NULL, 1, '2015-03-18 23:09:16.257381', '2015-03-18 23:09:16.257381', 'moreno cañado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2068, 'Marcos', 'marcosdibuja@gmail.com', NULL, 1, '2015-03-18 23:09:16.282827', '2015-03-18 23:09:16.282827', 'Navarro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2069, 'Paula', 'paulaquijada@yahoo.es', NULL, 1, '2015-03-18 23:09:16.302151', '2015-03-18 23:09:16.302151', 'Veronica Quijada Valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2070, 'Catalina', 'catalafuente@gmail.com', NULL, 1, '2015-03-18 23:09:16.368261', '2015-03-18 23:09:16.368261', 'Lafuente')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2071, 'Patricio', 'patobocca@gmail.com', NULL, 1, '2015-03-18 23:09:16.394448', '2015-03-18 23:09:16.394448', 'Bocca')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2072, 'Jorge', 'jorgetorosh@gmail.com', NULL, 1, '2015-03-18 23:09:16.424632', '2015-03-18 23:09:16.424632', 'Toro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2073, 'Mirian', 'mbeatriz_ar@hotmail.com', NULL, 1, '2015-03-18 23:09:16.438288', '2015-03-18 23:09:16.438288', 'Beatriz Arce Barrientos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2074, 'Soledad', 'soledadleondelacerda@gmail.com', NULL, 1, '2015-03-18 23:09:16.467980', '2015-03-18 23:09:16.467980', 'León')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2075, 'MarceloDuarte', 'artsduarte@gmail.com', NULL, 1, '2015-03-18 23:09:16.478907', '2015-03-18 23:09:16.478907', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2076, 'Silvestre', 'austral87@gmail.com', NULL, 1, '2015-03-18 23:09:16.488095', '2015-03-18 23:09:16.488095', 'Abud')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2077, 'Constanza', 'contyragal@gmail.com', NULL, 1, '2015-03-18 23:09:16.498069', '2015-03-18 23:09:16.498069', 'Ragal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2078, 'Sergio', 'sergiolopezfotografo@gmail.com', NULL, 1, '2015-03-18 23:09:16.507330', '2015-03-18 23:09:16.507330', 'López R')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2079, 'paola', 'psanpastor@gmail.com', NULL, 1, '2015-03-18 23:09:16.524553', '2015-03-18 23:09:16.524553', 'estrada perone')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2080, 'Jacqueline', 'jakeline.herrera@mail.com', NULL, 1, '2015-03-18 23:09:16.534271', '2015-03-18 23:09:16.534271', 'Herrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2081, 'Deysi', 'mafalda623@gmail.com', NULL, 1, '2015-03-18 23:09:16.552928', '2015-03-18 23:09:16.552928', 'Cruz Vásquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2082, 'Arturo', 'trybal@msn.com', NULL, 1, '2015-03-18 23:09:16.563205', '2015-03-18 23:09:16.563205', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2083, 'Guillermo', 'coloresmagikos@gmail.com', NULL, 1, '2015-03-18 23:09:16.575054', '2015-03-18 23:09:16.575054', 'González-García')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2084, 'karol', 'stop_paradisio@live.cl', NULL, 1, '2015-03-18 23:09:16.583813', '2015-03-18 23:09:16.583813', 'arcioni benidorm')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2085, 'irene', 'irene.abujatum@gmail.com', NULL, 1, '2015-03-18 23:09:16.593038', '2015-03-18 23:09:16.593038', 'abujatum')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2086, 'Felipe', 'manxanaster@gmail.com', NULL, 1, '2015-03-18 23:09:16.612362', '2015-03-18 23:09:16.612362', 'Alfonso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2087, 'Andrea', 'spoerer.andrea@gmail.com', NULL, 1, '2015-03-18 23:09:16.626912', '2015-03-18 23:09:16.626912', 'Spoerer')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2088, 'JESSICA', 'lajortacktaich@gmail.com', NULL, 1, '2015-03-18 23:09:16.636268', '2015-03-18 23:09:16.636268', 'JORTACK-TAICH DAWSON')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2089, 'Natalia', 'natamontesv@gmail.com', NULL, 1, '2015-03-18 23:09:16.646043', '2015-03-18 23:09:16.646043', 'Montes Viviani')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2090, 'maria', 'mafesoar@hotmail.com', NULL, 1, '2015-03-18 23:09:16.654578', '2015-03-18 23:09:16.654578', 'fernanda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2091, 'Elisa', 'lagarliza@gmail.com', NULL, 1, '2015-03-18 23:09:16.667602', '2015-03-18 23:09:16.667602', 'Díaz Browne')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2092, 'Francisca', 'amarantastravi@hotmail.com', NULL, 1, '2015-03-18 23:09:16.690747', '2015-03-18 23:09:16.690747', 'Gutiérrez Gagliardi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2093, 'deily', 'deilygo@gmail.com', NULL, 1, '2015-03-18 23:09:16.713625', '2015-03-18 23:09:16.713625', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2094, 'ARSENIO', 'tunuxtu@hotmail.com', NULL, 1, '2015-03-18 23:09:16.725060', '2015-03-18 23:09:16.725060', 'FELIX')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2095, 'Pogo', 'pogoart1@gmail.com', NULL, 1, '2015-03-18 23:09:16.734738', '2015-03-18 23:09:16.734738', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2096, 'José', 'jlos23@hotmail.com', NULL, 1, '2015-03-18 23:09:16.758045', '2015-03-18 23:09:16.758045', 'Stuardo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2097, 'Matilde', 'matildecamposh@gmail.com', NULL, 1, '2015-03-18 23:09:16.774351', '2015-03-18 23:09:16.774351', 'Campos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2098, 'Andrea', 'amae_04@hotmail.com', NULL, 1, '2015-03-18 23:09:16.801596', '2015-03-18 23:09:16.801596', 'Aguilar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2099, 'nico', 'yosoypeligro@gmail.com', NULL, 1, '2015-03-18 23:09:16.859821', '2015-03-18 23:09:16.859821', 'aguirre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2100, 'Cruz', 'cruzpainemilla@gmail.com', NULL, 1, '2015-03-18 23:09:16.870778', '2015-03-18 23:09:16.870778', 'Painemilla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2101, 'Christian', 'czamoradg@gmail.com', NULL, 1, '2015-03-18 23:09:17.564933', '2015-03-18 23:09:17.564933', 'Zamora')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2102, 'luis', 'info@luismontull.com', NULL, 1, '2015-03-18 23:09:17.575583', '2015-03-18 23:09:17.575583', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2103, 'soledad', 'soledadbravovaldivieso@gmail.com', NULL, 1, '2015-03-18 23:09:17.584641', '2015-03-18 23:09:17.584641', 'bravo valdivieso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2104, 'Angie', 'info@angieville.com.ar', NULL, 1, '2015-03-18 23:09:17.595493', '2015-03-18 23:09:17.595493', 'Villé')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2105, 'Gabriel', 'gaflores70@gmail.com', NULL, 1, '2015-03-18 23:09:17.624001', '2015-03-18 23:09:17.624001', 'Flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2106, 'catalina', 'catalinasilvaguzman@hotmail.com', NULL, 1, '2015-03-18 23:09:17.633596', '2015-03-18 23:09:17.633596', 'silva guzman')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2107, 'Julia', 'super_yukito@hotmail.com', NULL, 1, '2015-03-18 23:09:17.642576', '2015-03-18 23:09:17.642576', 'Romero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2108, 'Jesús', 'auxi_ta_1@hotmail.com', NULL, 1, '2015-03-18 23:09:17.651399', '2015-03-18 23:09:17.651399', 'Vázquez Rodríguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2109, 'LaMaría', 'lamaria.arte@gmail.com', NULL, 1, '2015-03-18 23:09:17.660639', '2015-03-18 23:09:17.660639', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2110, 'Carolina', 'caro.rodriguezpino@gmail.com', NULL, 1, '2015-03-18 23:09:17.672732', '2015-03-18 23:09:17.672732', 'Rodríguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2111, 'Roberto', 'robertolopezzamo@hotmail.com', NULL, 1, '2015-03-18 23:09:17.681173', '2015-03-18 23:09:17.681173', 'Zamo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2112, 'Francisca', 'ataxika@gmail.com', NULL, 1, '2015-03-18 23:09:17.691691', '2015-03-18 23:09:17.691691', 'Leyton Garate')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2113, 'Alejandra', 'alegarcialira@gmail.com', NULL, 1, '2015-03-18 23:09:17.701091', '2015-03-18 23:09:17.701091', 'mª Garcia Lira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2114, 'Mario', 'armariox@hotmail.com', NULL, 1, '2015-03-18 23:09:17.709372', '2015-03-18 23:09:17.709372', 'Moreno Tapia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2115, 'Avencio', 'infogradualhate@yahoo.es', NULL, 1, '2015-03-18 23:09:17.806815', '2015-03-18 23:09:17.806815', 'DM')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2116, 'Miguel', 'miguel@delanu.cl', NULL, 1, '2015-03-18 23:09:17.817132', '2015-03-18 23:09:17.817132', 'De Lanú')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2117, 'miguel', 'miguel.michelson@metrikco.com', NULL, 1, '2015-03-18 23:09:17.825591', '2015-03-18 23:09:17.825591', 'test')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2118, 'Demian', 'demian.schopf@gmail.com', NULL, 1, '2015-03-18 23:09:17.835249', '2015-03-18 23:09:17.835249', 'Schopf')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2119, 'Federico', 'miaslanides@mail.com', NULL, 1, '2015-03-18 23:09:17.844390', '2015-03-18 23:09:17.844390', 'Bousquet')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2120, 'Graciela', 'duran.troise@gmail.com', NULL, 1, '2015-03-18 23:09:17.945969', '2015-03-18 23:09:17.945969', 'Duran-Troise')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2121, 'Federico', 'miaslanides@gmail.com', NULL, 1, '2015-03-18 23:09:17.955807', '2015-03-18 23:09:17.955807', 'D. Bousquet')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2122, 'jose', 'jomiac@hotmail.com', NULL, 1, '2015-03-18 23:09:17.971037', '2015-03-18 23:09:17.971037', 'miguel acevedo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2123, 'Maria', 'ignaciatrucco@gmail.com', NULL, 1, '2015-03-18 23:09:17.980205', '2015-03-18 23:09:17.980205', 'Ignacia Trucco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2124, 'Andrés', 'aplikado79@hotmail.com', NULL, 1, '2015-03-18 23:09:18.005877', '2015-03-18 23:09:18.005877', 'Tiznado Riquelme')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2125, 'Gianpierre', 'gianpierre_yovera@hotmail.com', NULL, 1, '2015-03-18 23:09:18.021836', '2015-03-18 23:09:18.021836', 'Juan Manuel Yovera Infanzon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2126, 'violeta', 'violetachq@gmail.com', NULL, 1, '2015-03-18 23:09:18.030302', '2015-03-18 23:09:18.030302', 'chiang')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2127, 'DENST', 'denst.aa@gmail.com', NULL, 1, '2015-03-18 23:09:18.039550', '2015-03-18 23:09:18.039550', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2128, 'Ariel', 'bbkito@gmail.com', NULL, 1, '2015-03-18 23:09:18.054651', '2015-03-18 23:09:18.054651', 'Eduardo Quiroz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2129, 'Juan', 'rivas1981_4@hotmail.com', NULL, 1, '2015-03-18 23:09:18.063454', '2015-03-18 23:09:18.063454', 'Carlos Rivas Fuentes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2130, 'Jimena', 'zapata.jimena@gmail.com', NULL, 1, '2015-03-18 23:09:18.072547', '2015-03-18 23:09:18.072547', 'Zapata')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2131, 'Alexander', 'artutil@yandex.ru', NULL, 1, '2015-03-18 23:09:18.081665', '2015-03-18 23:09:18.081665', 'Seliverstov')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2132, 'Claudia', 'claukiedis@gmail.com', NULL, 1, '2015-03-18 23:09:18.106039', '2015-03-18 23:09:18.106039', 'Aldea Bascuñan')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2133, 'Ana', 'ana_migarcia@hotmail.com', NULL, 1, '2015-03-18 23:09:18.115830', '2015-03-18 23:09:18.115830', 'Garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2134, 'Armando', 'axxtlan@gmail.com', NULL, 1, '2015-03-18 23:09:18.125661', '2015-03-18 23:09:18.125661', '"freger" Ruiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2135, 'liliana', 'liliananeret@yahoo.com', NULL, 1, '2015-03-18 23:09:18.134442', '2015-03-18 23:09:18.134442', 'neret')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2136, 'sonia', 'soniakrammcasas@gmail.com', NULL, 1, '2015-03-18 23:09:18.143398', '2015-03-18 23:09:18.143398', 'kramm casas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2137, 'Michelle', 'michelleleon286@gmail.com', NULL, 1, '2015-03-18 23:09:18.155015', '2015-03-18 23:09:18.155015', 'Leon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2138, 'Ricardo', 'ricardosilveira55@hotmail.com', NULL, 1, '2015-03-18 23:09:18.163496', '2015-03-18 23:09:18.163496', 'G. Silveira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2139, 'Pablo', 'pablo@pablomontt.com', NULL, 1, '2015-03-18 23:09:18.172509', '2015-03-18 23:09:18.172509', 'Montt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2140, 'María', 'm.j.olivos@gmail.com', NULL, 1, '2015-03-18 23:09:18.181374', '2015-03-18 23:09:18.181374', 'Jesús Olivos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2141, 'camila', 'metalvalparaiso@gmail.com', NULL, 1, '2015-03-18 23:09:18.190533', '2015-03-18 23:09:18.190533', 'castillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2142, 'Rebeca', 'bekydiaz8@hotmail.com', NULL, 1, '2015-03-18 23:09:18.204430', '2015-03-18 23:09:18.204430', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2143, 'Maria', 'pazrodriguez10@123.cl', NULL, 1, '2015-03-18 23:09:18.214253', '2015-03-18 23:09:18.214253', 'Paz Rodriguez Budge')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2144, 'Constanza', 'coni.cabrera@gmail.com', NULL, 1, '2015-03-18 23:09:18.239545', '2015-03-18 23:09:18.239545', 'Cabrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2145, 'Rosario', 'rosarioperriello@gmail.com', NULL, 1, '2015-03-18 23:09:18.254446', '2015-03-18 23:09:18.254446', 'Perriello')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2146, 'Antonio', 'apm@perezmelero.com', NULL, 1, '2015-03-18 23:09:18.263227', '2015-03-18 23:09:18.263227', 'PEREZ MELERO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2147, 'Cristobal', 'cristobalcalvor@gmail.com', NULL, 1, '2015-03-18 23:09:18.272195', '2015-03-18 23:09:18.272195', 'Calvo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2148, 'macarena', 'macarenaestella@gmail.com', NULL, 1, '2015-03-18 23:09:18.280824', '2015-03-18 23:09:18.280824', 'estella')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2149, 'Mateusz', 'wisniewski.mateusz@yahoo.com', NULL, 1, '2015-03-18 23:09:18.290577', '2015-03-18 23:09:18.290577', 'Wisniewski')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2150, 'luz', 'cuncunainjapi_989@hotmail.com', NULL, 1, '2015-03-18 23:09:18.303153', '2015-03-18 23:09:18.303153', 'maria fuentes lozier')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2151, 'claudia', 'claudia.contreras.saez@gmail.com', NULL, 1, '2015-03-18 23:09:18.312332', '2015-03-18 23:09:18.312332', 'a. contreras sáez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2152, 'angela', 'angelafabregas@gmail.com', NULL, 1, '2015-03-18 23:09:18.321360', '2015-03-18 23:09:18.321360', 'fabregas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2153, 'Daniel', 'pavioloinstru@gmail.com', NULL, 1, '2015-03-18 23:09:18.331106', '2015-03-18 23:09:18.331106', 'Paviolo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2154, 'KaKa', 'sepulvedakatia@gmail.com', NULL, 1, '2015-03-18 23:09:18.339747', '2015-03-18 23:09:18.339747', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2155, 'INES', 'inesdirube@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:18.354853', '2015-03-18 23:09:18.354853', 'DIRUBE')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2156, 'Rafael', 'rafaelm-figuereo21@hotmail.com', NULL, 1, '2015-03-18 23:09:18.364055', '2015-03-18 23:09:18.364055', 'Miguel Figuereo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2157, 'Tomás', 'info@tomasrodriguez.cl', NULL, 1, '2015-03-18 23:09:18.373618', '2015-03-18 23:09:18.373618', 'Rodríguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2158, 'Francisco', 'fco_apolo@hotmail.com', NULL, 1, '2015-03-18 23:09:18.382792', '2015-03-18 23:09:18.382792', 'Tureo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2159, 'Joaquin', 'joaquin.mukden@gmail.com', NULL, 1, '2015-03-18 23:09:18.392112', '2015-03-18 23:09:18.392112', 'Mukden V')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2160, 'Francisco', 'ninaciervo@gmail.com', NULL, 1, '2015-03-18 23:09:18.404337', '2015-03-18 23:09:18.404337', 'Dussourd')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2161, 'Juan', 'juancarlosa430@gmail.com', NULL, 1, '2015-03-18 23:09:18.413264', '2015-03-18 23:09:18.413264', 'Carlos Álvarez Flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2162, 'sergio', 'sergioo_15_15@hotmail.com', NULL, 1, '2015-03-18 23:09:18.423047', '2015-03-18 23:09:18.423047', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2163, 'Magdalena', 'dalais@gmail.com', NULL, 1, '2015-03-18 23:09:18.432294', '2015-03-18 23:09:18.432294', 'Muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2164, 'marta', 'contact@martarebora.it', NULL, 1, '2015-03-18 23:09:18.441271', '2015-03-18 23:09:18.441271', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2165, 'Eduardo', 'rosaspintor@gmail.com', NULL, 1, '2015-03-18 23:09:18.453287', '2015-03-18 23:09:18.453287', 'Rosas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2166, 'Mónica', 'monicaflrs8@gmail.com', NULL, 1, '2015-03-18 23:09:18.462441', '2015-03-18 23:09:18.462441', 'Flores A.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2167, 'Johanna', 'johia_dellafiori@hotmail.com', NULL, 1, '2015-03-18 23:09:18.471933', '2015-03-18 23:09:18.471933', 'Alvarez Dellafiori')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2168, 'rodrigo', 'rodundergraff@gmail.com', NULL, 1, '2015-03-18 23:09:18.481140', '2015-03-18 23:09:18.481140', 'saavedra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2169, 'Gustavo', 'gustavolaplaya@gmail.com', NULL, 1, '2015-03-18 23:09:18.490501', '2015-03-18 23:09:18.490501', 'Cáceres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2170, 'Álvaro', 'jimenezz@hotmail.com', NULL, 1, '2015-03-18 23:09:18.503261', '2015-03-18 23:09:18.503261', 'González')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2171, 'artista', 'robertmorls66@gmail.com', NULL, 1, '2015-03-18 23:09:18.512730', '2015-03-18 23:09:18.512730', 'plastico ROBERTO MORALES')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2172, 'artista', 'robertmorls66@hotmail.com', NULL, 1, '2015-03-18 23:09:18.527338', '2015-03-18 23:09:18.527338', 'plastico roberto morales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2173, 'Gabriel', 'kamikase3@hotmail.com', NULL, 1, '2015-03-18 23:09:18.538092', '2015-03-18 23:09:18.538092', 'Moztasa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2174, 'Tomás', 'andreu@galeriaanimal.com', NULL, 1, '2015-03-18 23:09:18.552901', '2015-03-18 23:09:18.552901', 'Andreu')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2175, 'Le', 'felipe_masters@hotmail.com', NULL, 1, '2015-03-18 23:09:18.562120', '2015-03-18 23:09:18.562120', 'Neuf Michy Art')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2176, 'Samantha', 'samykocking@hotmail.com', NULL, 1, '2015-03-18 23:09:18.572689', '2015-03-18 23:09:18.572689', 'Kocking')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2177, 'Isabel', 'candplastique@gmail.com', NULL, 1, '2015-03-18 23:09:18.581400', '2015-03-18 23:09:18.581400', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2178, 'alessandra', 'a_merello@hotmail.com', NULL, 1, '2015-03-18 23:09:18.590934', '2015-03-18 23:09:18.590934', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2179, 'Italo', 'iluvatar325@hotmail.com', NULL, 1, '2015-03-18 23:09:18.603440', '2015-03-18 23:09:18.603440', 'Garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2180, 'Denisse', 'denisse.bustamante@hotmail.com', NULL, 1, '2015-03-18 23:09:18.613207', '2015-03-18 23:09:18.613207', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2181, 'Belen', 'belenbulgheroni@gmail.com', NULL, 1, '2015-03-18 23:09:18.622425', '2015-03-18 23:09:18.622425', 'Bulgheroni')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2182, 'Waltraud', 'info@waltraudmaczassek.com', NULL, 1, '2015-03-18 23:09:18.631903', '2015-03-18 23:09:18.631903', 'Maczassek')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2183, 'adrian', 'zaines326@gmail.com', NULL, 1, '2015-03-18 23:09:18.688760', '2015-03-18 23:09:18.688760', '"zaines" valenzuela berrios')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2184, 'Gabriel', 'gabriel.abo82@gmail.com', NULL, 1, '2015-03-18 23:09:18.703551', '2015-03-18 23:09:18.703551', 'Aguayo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2185, 'Catherine', 'caty.pinto.gutierrez@gmail.com', NULL, 1, '2015-03-18 23:09:18.712520', '2015-03-18 23:09:18.712520', 'Pinto-Gutiérrez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2186, 'Lennon', 'fxdrako@yahoo.es', NULL, 1, '2015-03-18 23:09:18.721866', '2015-03-18 23:09:18.721866', 'Merino Monje')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2187, 'Alirio', 'alirioinfante15@gmail.com', NULL, 1, '2015-03-18 23:09:18.731917', '2015-03-18 23:09:18.731917', 'Infante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2188, 'laura', 'rebekatrisot@gmail.com', NULL, 1, '2015-03-18 23:09:18.740674', '2015-03-18 23:09:18.740674', 'trisot')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2189, 'Macarena', 'macatrella@hotmail.com', NULL, 1, '2015-03-18 23:09:18.752456', '2015-03-18 23:09:18.752456', 'Zuñiga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2190, 'Horacio', 'Hiluxxion@juno.com', NULL, 1, '2015-03-18 23:09:18.763543', '2015-03-18 23:09:18.763543', 'Molina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2191, 'Constanza', 'conny_ls@hotmail.com', NULL, 1, '2015-03-18 23:09:18.773150', '2015-03-18 23:09:18.773150', 'López')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2192, 'JoséCarlos', 'lic.art.vis.exp.foto@live.com.mx', NULL, 1, '2015-03-18 23:09:18.783628', '2015-03-18 23:09:18.783628', 'Yañez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2193, 'Sebastian', 'sebastianpzamora@gmail.com', NULL, 1, '2015-03-18 23:09:18.802715', '2015-03-18 23:09:18.802715', 'Peña Zamora')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2194, 'Francisco', 'panchomelo@mac.com', NULL, 1, '2015-03-18 23:09:18.812483', '2015-03-18 23:09:18.812483', 'Melo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2195, 'Álex', 'jamettvenegas@gmail.com', NULL, 1, '2015-03-18 23:09:18.843079', '2015-03-18 23:09:18.843079', 'Fabián')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2196, 'felipe', 'recuperaelsilencio10@gmail.com', NULL, 1, '2015-03-18 23:09:18.853623', '2015-03-18 23:09:18.853623', 'carrasco (piri)')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2197, 'Irina', 'artesirina@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:18.863778', '2015-03-18 23:09:18.863778', 'Shutova')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2198, 'Paula', 'paulavltaller@gmail.com', NULL, 1, '2015-03-18 23:09:18.889704', '2015-03-18 23:09:18.889704', 'Vergara Lira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2199, 'Stephanie', 'stephanievmc@hotmail.com', NULL, 1, '2015-03-18 23:09:18.902769', '2015-03-18 23:09:18.902769', 'Cabrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2200, 'Monica', 'perezmoni@gmail.com', NULL, 1, '2015-03-18 23:09:18.913578', '2015-03-18 23:09:18.913578', 'Perez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2201, 'Daniela', 'daniela.walker.f@gmail.com', NULL, 1, '2015-03-18 23:09:18.923584', '2015-03-18 23:09:18.923584', 'Walker')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2202, 'Feliberto', 'elkcon13@hotmail.com', NULL, 1, '2015-03-18 23:09:18.932818', '2015-03-18 23:09:18.932818', 'de Jesus Pichardo Valerio')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2203, 'Suyai', 'suyaiota@gmail.com', NULL, 1, '2015-03-18 23:09:18.976342', '2015-03-18 23:09:18.976342', 'Otaño')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2204, 'julio', 'neoprotoconceptual@gmail.com', NULL, 1, '2015-03-18 23:09:18.990714', '2015-03-18 23:09:18.990714', 'cesar briones moreno')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2205, 'Claudio', 'ccxxs@hotmail.com', NULL, 1, '2015-03-18 23:09:19.001730', '2015-03-18 23:09:19.001730', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2206, 'maría', 'mluzcovarrubias@gmail.com', NULL, 1, '2015-03-18 23:09:19.010415', '2015-03-18 23:09:19.010415', 'luz covarrubias')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2207, 'Andrea', 'starkahbl@hotmail.com', NULL, 1, '2015-03-18 23:09:19.020605', '2015-03-18 23:09:19.020605', 'Stark')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2208, 'gustavo', 'gustavrios@hotmail.com', NULL, 1, '2015-03-18 23:09:19.079780', '2015-03-18 23:09:19.079780', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2209, 'Jose', 'joserafael_cch@hotmail.com', NULL, 1, '2015-03-18 23:09:19.091713', '2015-03-18 23:09:19.091713', 'Rafael Cordero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2210, 'PAULINA', 'paulinaw1@gmail.com', NULL, 1, '2015-03-18 23:09:19.101368', '2015-03-18 23:09:19.101368', 'WAGEMANN')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2211, 'Silvia', 'marquezpease@att.net', NULL, 1, '2015-03-18 23:09:19.111045', '2015-03-18 23:09:19.111045', 'Marquez Pease')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2212, 'flor', 'rincondelarte@hotmail.com', NULL, 1, '2015-03-18 23:09:19.136535', '2015-03-18 23:09:19.136535', 'Soiza Robledo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2213, 'pablo', 'pabloregalante@hotmail.com', NULL, 1, '2015-03-18 23:09:19.147263', '2015-03-18 23:09:19.147263', 'pérez regalante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2214, 'Maria', 'fernanda.pringles@hotmail.com', NULL, 1, '2015-03-18 23:09:19.180638', '2015-03-18 23:09:19.180638', 'Fernanda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2215, 'Tulio', 'tulioperaza@yahoo.it', NULL, 1, '2015-03-18 23:09:19.192081', '2015-03-18 23:09:19.192081', 'Peraza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2216, 'Matías', 'matiasacuna.cl@gmail.com', NULL, 1, '2015-03-18 23:09:19.222289', '2015-03-18 23:09:19.222289', 'Acuña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2217, 'vicente', 'dagas969@hotmail.com', NULL, 1, '2015-03-18 23:09:19.235530', '2015-03-18 23:09:19.235530', 'ibañez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2218, 'Thomas', 'tomk32@gmx.de', NULL, 1, '2015-03-18 23:09:19.281924', '2015-03-18 23:09:19.281924', 'R. Koll')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2219, 'camilo', '3colores@gmail.com', NULL, 1, '2015-03-18 23:09:19.300854', '2015-03-18 23:09:19.300854', 'ortega prieto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2220, 'Mauricio', 'mostornol@osku.cl', NULL, 1, '2015-03-18 23:09:19.331691', '2015-03-18 23:09:19.331691', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2221, 'alexander', 'ale.legar@hotmail.com', NULL, 1, '2015-03-18 23:09:19.345790', '2015-03-18 23:09:19.345790', 'de los santos garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2222, 'ValBD', 'respirovisual@gmail.com', NULL, 1, '2015-03-18 23:09:19.355505', '2015-03-18 23:09:19.355505', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2223, 'charly', 'charlot1935@hotmail.com', NULL, 1, '2015-03-18 23:09:19.365002', '2015-03-18 23:09:19.365002', 'vargas martinez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2224, 'Mauro', 'mpescev@gmail.com', NULL, 1, '2015-03-18 23:09:19.384613', '2015-03-18 23:09:19.384613', 'Pesce')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2225, 'Yoya', 'yoya.zamora.manzur@gmail.com', NULL, 1, '2015-03-18 23:09:19.393666', '2015-03-18 23:09:19.393666', 'Zamora Manzur')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2226, 'JUAN', 'elmerello@gmail.com', NULL, 1, '2015-03-18 23:09:19.402968', '2015-03-18 23:09:19.402968', 'PABLO MERELLO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2227, 'Elicio', 'martinezcorcueraelicio@yahoo.es', NULL, 1, '2015-03-18 23:09:19.413371', '2015-03-18 23:09:19.413371', 'martinez Corcuera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2228, 'DGKarlaKano', 'cancanxoxo@hotmail.com', NULL, 1, '2015-03-18 23:09:19.424110', '2015-03-18 23:09:19.424110', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2229, 'olga', 'olgalu_1020@hotmail.com', NULL, 1, '2015-03-18 23:09:19.446538', '2015-03-18 23:09:19.446538', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2230, 'Paola', 'zukujnomo@hotmail.com', NULL, 1, '2015-03-18 23:09:19.473521', '2015-03-18 23:09:19.473521', 'Beatriz González Farias')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2231, 'René', 'sr.antipirina@gmail.com', NULL, 1, '2015-03-18 23:09:19.491958', '2015-03-18 23:09:19.491958', 'Valiente')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2232, 'Miguel', 'mra_mexicano@hotmail.com', NULL, 1, '2015-03-18 23:09:19.502718', '2015-03-18 23:09:19.502718', 'Angel Reyes Arreola')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2233, 'iri', 'yo_nunca@hotmail.com', NULL, 1, '2015-03-18 23:09:19.512217', '2015-03-18 23:09:19.512217', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2234, 'Abril', 'abrilmontealegre@hotmail.com', NULL, 1, '2015-03-18 23:09:19.521713', '2015-03-18 23:09:19.521713', 'Montealegre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2235, 'Jorge', 'nammaste@gmail.com', NULL, 1, '2015-03-18 23:09:19.593344', '2015-03-18 23:09:19.593344', 'Marcos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2236, 'Paola', 'paolavergottini@hotmail.com', NULL, 1, '2015-03-18 23:09:19.622038', '2015-03-18 23:09:19.622038', 'Vergottini')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2237, 'celso', 'celsotrufel@hotmail.com', NULL, 1, '2015-03-18 23:09:19.637937', '2015-03-18 23:09:19.637937', 'trufel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2238, 'EDGARD', 'edgardgamboa@hotmail.com', NULL, 1, '2015-03-18 23:09:19.650911', '2015-03-18 23:09:19.650911', 'GAMBOA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2239, 'alejandra', 'alenubu@hotmail.com', NULL, 1, '2015-03-18 23:09:19.660678', '2015-03-18 23:09:19.660678', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2240, 'HUBERT', 'hubertcano@yahoo.com', NULL, 1, '2015-03-18 23:09:19.669201', '2015-03-18 23:09:19.669201', 'CAÑO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2241, 'Greg', 'gredwest27@yahoo.com.ve', NULL, 1, '2015-03-18 23:09:19.679484', '2015-03-18 23:09:19.679484', 'Rosales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2242, 'Nelly', 'nellyjosefina.go@gmail.com', NULL, 1, '2015-03-18 23:09:19.688811', '2015-03-18 23:09:19.688811', 'Josefina Gonzalez Ortiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2243, 'Ximena', 'xitalope@hotmail.com', NULL, 1, '2015-03-18 23:09:19.701163', '2015-03-18 23:09:19.701163', 'Fernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2244, 'miguel', 'mmolinasaldivia@gmail.com', NULL, 1, '2015-03-18 23:09:19.712389', '2015-03-18 23:09:19.712389', 'molina saldivia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2245, 'Andrés', 'lihnterna@hotmail.com', NULL, 1, '2015-03-18 23:09:19.724190', '2015-03-18 23:09:19.724190', 'Urzúa de la Sotta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2246, 'Helena', 'helena.helenahlm@gmail.com', NULL, 1, '2015-03-18 23:09:19.734474', '2015-03-18 23:09:19.734474', 'Losada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2247, 'Jose', 'j.castillo.norambuena@gmail.com', NULL, 1, '2015-03-18 23:09:19.750500', '2015-03-18 23:09:19.750500', 'Castillo Norambuena')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2248, 'Alejandro', 'ayurac@mclarens.cl', NULL, 1, '2015-03-18 23:09:19.773960', '2015-03-18 23:09:19.773960', 'Yurac')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2249, 'Diego', 'diego.celedon@gmail.com', NULL, 1, '2015-03-18 23:09:19.784324', '2015-03-18 23:09:19.784324', 'Celedón')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2250, 'Roberto', 'robobertobmc@hotmail.com', NULL, 1, '2015-03-18 23:09:19.799964', '2015-03-18 23:09:19.799964', 'Barrios')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2251, 'Rodrigo', 'rodver.89@gmail.com', NULL, 1, '2015-03-18 23:09:19.809444', '2015-03-18 23:09:19.809444', 'Vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2252, 'Rodrigo', 'rgarcia@duratex.com.mx', NULL, 1, '2015-03-18 23:09:19.817732', '2015-03-18 23:09:19.817732', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2253, 'Isabel', 'isabel@thebraun.com', NULL, 1, '2015-03-18 23:09:19.826827', '2015-03-18 23:09:19.826827', 'M. Fernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2254, 'Ender', 'isrodriguez44@gmail.com', NULL, 1, '2015-03-18 23:09:19.836141', '2015-03-18 23:09:19.836141', 'Rodríguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2255, 'mane', 'mariainesmoragam@gmail.com', NULL, 1, '2015-03-18 23:09:19.849955', '2015-03-18 23:09:19.849955', 'moraga m')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2256, 'Juan', 'juanjoselizama@gmail.com', NULL, 1, '2015-03-18 23:09:19.913298', '2015-03-18 23:09:19.913298', 'José Lizama Ovalle')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2257, 'Ramiro', 'rpeonveiga@gmail.com', NULL, 1, '2015-03-18 23:09:19.934297', '2015-03-18 23:09:19.934297', 'Peon-Veiga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2258, 'David', 'Lecktor_8AD@hotmail.com', NULL, 1, '2015-03-18 23:09:19.965802', '2015-03-18 23:09:19.965802', 'Angel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2259, 'yiyi', 'yiyizak@gmail.com', NULL, 1, '2015-03-18 23:09:19.995178', '2015-03-18 23:09:19.995178', 'zakowicz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2260, 'rosaria', 'sdesigner@virgilio.it', NULL, 1, '2015-03-18 23:09:20.019855', '2015-03-18 23:09:20.019855', 'isabella cavallaro bustamante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2261, 'Eduardo', 'eduardozepeda@hotmail.com', NULL, 1, '2015-03-18 23:09:20.045567', '2015-03-18 23:09:20.045567', 'Zepeda Palma')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2262, '©THE', 'ceballalex@hotmail.com', NULL, 1, '2015-03-18 23:09:20.070905', '2015-03-18 23:09:20.070905', 'ALEX CEBALL STUDIO_WORLDWIDE_')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2263, 'Francisco', 'francisco.sanchu15@gmail.com', NULL, 1, '2015-03-18 23:09:20.101715', '2015-03-18 23:09:20.101715', 'Pino Leiva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2264, 'cristobal', 'manray75@hotmail.com', NULL, 1, '2015-03-18 23:09:20.134293', '2015-03-18 23:09:20.134293', 'perez calvo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2265, 'LANDRY', 'danny.landry@gmail.com', NULL, 1, '2015-03-18 23:09:20.161117', '2015-03-18 23:09:20.161117', 'ART')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2266, 'ricardo', 'contacto@graficamaxva.cl', NULL, 1, '2015-03-18 23:09:20.191018', '2015-03-18 23:09:20.191018', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2267, 'Leslie', 'meriyeim@gmail.com', NULL, 1, '2015-03-18 23:09:20.219440', '2015-03-18 23:09:20.219440', 'Balaguer')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2268, 'miguel', 'miguel.gamboahuerta@gmail.com', NULL, 1, '2015-03-18 23:09:20.233929', '2015-03-18 23:09:20.233929', 'gamboa huerta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2269, 'jorge', 'rossearquitecto@hotmail.com', NULL, 1, '2015-03-18 23:09:20.265236', '2015-03-18 23:09:20.265236', 'rossel s')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2270, 'Victor', 'vitorius7@yahoo.com', NULL, 1, '2015-03-18 23:09:20.276113', '2015-03-18 23:09:20.276113', 'Femenías von Willigmann')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2271, 'Amaranta', 'amaranta.espinoza@gmail.com', NULL, 1, '2015-03-18 23:09:20.348620', '2015-03-18 23:09:20.348620', 'Ursula Espinoza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2272, 'Musa', 'arturomusa@hotmail.com', NULL, 1, '2015-03-18 23:09:20.379890', '2015-03-18 23:09:20.379890', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2273, 'Ernesto', 'buitredelespacio@hotmail.com', NULL, 1, '2015-03-18 23:09:20.496291', '2015-03-18 23:09:20.496291', 'Loza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2274, 'Italo', 'interruptorno@gmail.com', NULL, 1, '2015-03-18 23:09:20.506286', '2015-03-18 23:09:20.506286', 'Contador')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2275, 'Jimena', 'jimena.villaseca@gmail.com', NULL, 1, '2015-03-18 23:09:20.515222', '2015-03-18 23:09:20.515222', 'Villaseca')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2276, 'Claudio', 'claudiografic@yahoo.com', NULL, 1, '2015-03-18 23:09:20.525271', '2015-03-18 23:09:20.525271', 'Paolasso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2277, 'ARTESANO', 'castillocamposjuan@gmail.com', NULL, 1, '2015-03-18 23:09:20.534182', '2015-03-18 23:09:20.534182', 'STENCIL')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2278, 'juan', 'juank_0516@gmail.com', NULL, 1, '2015-03-18 23:09:20.548189', '2015-03-18 23:09:20.548189', 'camilo arevalo cubides')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2279, 'César', 'cesar_ko@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:20.558140', '2015-03-18 23:09:20.558140', 'Cortés Vega')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2280, 'martha', 'mitasoto@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:20.578595', '2015-03-18 23:09:20.578595', 'soto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2281, 'Verónica', 'veronica.comino@gmail.com', NULL, 1, '2015-03-18 23:09:20.601271', '2015-03-18 23:09:20.601271', 'Comino García')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2282, 'Ignacio', 'tallermarchant@gmail.com', NULL, 1, '2015-03-18 23:09:20.629238', '2015-03-18 23:09:20.629238', 'Bustos Marchant')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2283, 'Cata', 'catavegaphotos@gmail.com', NULL, 1, '2015-03-18 23:09:20.648101', '2015-03-18 23:09:20.648101', 'Vega Photos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2284, 'silvina', 'nellarpavesio@fibertel.com.ar', NULL, 1, '2015-03-18 23:09:20.657141', '2015-03-18 23:09:20.657141', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2285, 'luis', 'acrio_2008@hotmail.com', NULL, 1, '2015-03-18 23:09:20.666735', '2015-03-18 23:09:20.666735', 'jgerardo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2286, 'Hugo', 'infohugortiz@gmail.com', NULL, 1, '2015-03-18 23:09:20.675527', '2015-03-18 23:09:20.675527', 'Ortíz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2287, 'calin', 'calinutigret@yahoo.com', NULL, 1, '2015-03-18 23:09:20.684394', '2015-03-18 23:09:20.684394', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2288, 'Juan', 'ampuero.juancarlos@gmail.com', NULL, 1, '2015-03-18 23:09:20.698467', '2015-03-18 23:09:20.698467', 'Carlos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2289, 'Maria', 'marust09@gmail.com', NULL, 1, '2015-03-18 23:09:20.707652', '2015-03-18 23:09:20.707652', 'Eugenia Semprun')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2290, 'antonieta', 'antonietarrpp@gmail.com', NULL, 1, '2015-03-18 23:09:20.719730', '2015-03-18 23:09:20.719730', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2291, 'Sergio', 'chechonouvel@gmail.com', NULL, 1, '2015-03-18 23:09:20.729227', '2015-03-18 23:09:20.729227', 'Nouvel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2292, 'Magdalena', 'maida.yolin@gmail.com', NULL, 1, '2015-03-18 23:09:20.748171', '2015-03-18 23:09:20.748171', 'Yolin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2293, 'Hayfer', 'hayferbrea@gmail.com', NULL, 1, '2015-03-18 23:09:20.757928', '2015-03-18 23:09:20.757928', 'Brea')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2294, 'Ara', 'arakoshiro@gmail.com', NULL, 1, '2015-03-18 23:09:20.779109', '2015-03-18 23:09:20.779109', 'Koshiro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2295, 'emilio', 'eethit@hotmail.com', NULL, 1, '2015-03-18 23:09:20.798827', '2015-03-18 23:09:20.798827', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2296, 'estela', 'estela@artedelvalle.cl', NULL, 1, '2015-03-18 23:09:20.812536', '2015-03-18 23:09:20.812536', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2297, 'estela', 'esteladelvalle@gmail.com', NULL, 1, '2015-03-18 23:09:20.840595', '2015-03-18 23:09:20.840595', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2298, 'Yolanda', 'infoyolandavela@gmail.com', NULL, 1, '2015-03-18 23:09:20.852237', '2015-03-18 23:09:20.852237', 'Vela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2299, 'Alfredo', 'rojas.alfredo@tie.cl', NULL, 1, '2015-03-18 23:09:20.860995', '2015-03-18 23:09:20.860995', 'Rojas Bouey')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2300, 'o', 'cristina.coello@gmail.com', NULL, 1, '2015-03-18 23:09:20.877026', '2015-03-18 23:09:20.877026', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2301, 'Soledad', 'm.soledad.sairafi@gmail.com', NULL, 1, '2015-03-18 23:09:20.887119', '2015-03-18 23:09:20.887119', 'Sairafi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2302, 'Ana', 'animiranda@mirandaqiuiroz.cl', NULL, 1, '2015-03-18 23:09:20.898842', '2015-03-18 23:09:20.898842', 'Maria Miranda Quiroz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2303, 'Antonio', 'antoniogalazm@gmail.com', NULL, 1, '2015-03-18 23:09:20.980483', '2015-03-18 23:09:20.980483', 'Galaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2304, 'Elena', 'elena.erre@hotmail.com', NULL, 1, '2015-03-18 23:09:21.002606', '2015-03-18 23:09:21.002606', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2305, 'diego', 'diego.tejada.gamboa@gmail.com', NULL, 1, '2015-03-18 23:09:21.029930', '2015-03-18 23:09:21.029930', 'rodrigo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2306, 'Antonia', 'antoniaarriagada@gmail.com', NULL, 1, '2015-03-18 23:09:21.047331', '2015-03-18 23:09:21.047331', 'Arriagada Monreal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2307, 'Karina', 'billa_arquitecto@yahoo.cl', NULL, 1, '2015-03-18 23:09:21.056939', '2015-03-18 23:09:21.056939', 'Billa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2308, 'Fernando', 'contacto@waldenuno.es', NULL, 1, '2015-03-18 23:09:21.066147', '2015-03-18 23:09:21.066147', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2309, 'Sebastián', 'sbaudrand@gmail.com', NULL, 1, '2015-03-18 23:09:21.075150', '2015-03-18 23:09:21.075150', 'Baudrand')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2310, 'manuel', 'bizarredream2002@hotmail.com', NULL, 1, '2015-03-18 23:09:21.084935', '2015-03-18 23:09:21.084935', 'romero ochoa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2311, 'Juana', 'juanade_22@hotmail.com', NULL, 1, '2015-03-18 23:09:21.104682', '2015-03-18 23:09:21.104682', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2312, 'ronnie', 'ronniematteorodriguez@gmail.com', NULL, 1, '2015-03-18 23:09:21.115340', '2015-03-18 23:09:21.115340', 'matteo rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2313, 'Joaquin', 'maldok@hotmail.com', NULL, 1, '2015-03-18 23:09:21.124936', '2015-03-18 23:09:21.124936', 'Maldonado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2314, 'Guillermo', 'guillermomunoz@live.cl', NULL, 1, '2015-03-18 23:09:21.148952', '2015-03-18 23:09:21.148952', 'Muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2315, 'Nicolás', 'nicolasbasaure84@gmail.com', NULL, 1, '2015-03-18 23:09:21.184533', '2015-03-18 23:09:21.184533', 'Basaure Gutiérrez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2316, 'andres', 'peralta.andres@gmail.com', NULL, 1, '2015-03-18 23:09:21.205496', '2015-03-18 23:09:21.205496', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2317, 'maria', 'bustamante.olguin@gmail.com', NULL, 1, '2015-03-18 23:09:21.234168', '2015-03-18 23:09:21.234168', 'jose bustamante olguin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2318, 'Constanza', 'mcbricen@gmail.com', NULL, 1, '2015-03-18 23:09:21.254045', '2015-03-18 23:09:21.254045', 'Briceño')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2319, 'JAIME', 'Posa.artista@gmail.com', NULL, 1, '2015-03-18 23:09:21.276246', '2015-03-18 23:09:21.276246', 'POSA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2320, 'Etienne', 'e.cristoffanini@gmail.com', NULL, 1, '2015-03-18 23:09:21.292664', '2015-03-18 23:09:21.292664', 'Cristoffanini-Ross')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2321, 'jael', 'jaelverdugo@gmail.com', NULL, 1, '2015-03-18 23:09:21.321455', '2015-03-18 23:09:21.321455', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2322, 'Rodrigo', 'rodrigo@zamora.cl', NULL, 1, '2015-03-18 23:09:21.331893', '2015-03-18 23:09:21.331893', 'Zamora')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2323, 'Abril', 'abrilandrade@yahoo.com', NULL, 1, '2015-03-18 23:09:21.346979', '2015-03-18 23:09:21.346979', 'Andrade Griffith')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2324, 'Marlena', 'marlena.prez@hotmail.com', NULL, 1, '2015-03-18 23:09:21.357328', '2015-03-18 23:09:21.357328', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2325, 'lino', 'cazador-de-dioses@hotmail.com', NULL, 1, '2015-03-18 23:09:21.367328', '2015-03-18 23:09:21.367328', 'fernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2326, 'Carlos', 'carlos.marti@itelefonica.com.br', NULL, 1, '2015-03-18 23:09:21.377145', '2015-03-18 23:09:21.377145', 'Marti Formento')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2327, 'Danae', 'sexo-pudor-y-donas@hotmail.com', NULL, 1, '2015-03-18 23:09:21.403376', '2015-03-18 23:09:21.403376', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2328, 'RODRIGO', 'RODRIGO_COMICS@HOTMAIL.COM', NULL, 1, '2015-03-18 23:09:21.413326', '2015-03-18 23:09:21.413326', 'ARAYA SALAS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2329, 'mario', 'm_sanchez200@yahoo.es', NULL, 1, '2015-03-18 23:09:21.440357', '2015-03-18 23:09:21.440357', 'sanchez rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2330, 'memmo', 'lillollillo@libero.it', NULL, 1, '2015-03-18 23:09:21.459734', '2015-03-18 23:09:21.459734', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2331, 'RUFO', 'rufo_milfuegos@hotmail.com', NULL, 1, '2015-03-18 23:09:21.470308', '2015-03-18 23:09:21.470308', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2332, 'patricio', 'anibal.osses@gmail.com', NULL, 1, '2015-03-18 23:09:21.496423', '2015-03-18 23:09:21.496423', 'osses')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2333, 'Carlos', 'aeroc27@hotmail.com', NULL, 1, '2015-03-18 23:09:21.505732', '2015-03-18 23:09:21.505732', 'González')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2334, 'florencia', 'flore.montero@gmail.com', NULL, 1, '2015-03-18 23:09:21.534230', '2015-03-18 23:09:21.534230', 'montero murrie')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2335, 'silvina', 'silvinagardonio@gmail.com', NULL, 1, '2015-03-18 23:09:22.282268', '2015-03-18 23:09:22.282268', 'gardonio')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2336, 'Nathalie', 'nathalieniniel@gmail.com', NULL, 1, '2015-03-18 23:09:22.370697', '2015-03-18 23:09:22.370697', 'Le Feuvre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2337, 'Daniela', 'pequisbaldo@gmail.com', NULL, 1, '2015-03-18 23:09:22.381684', '2015-03-18 23:09:22.381684', 'Riquelme Garrido')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2338, 'naheda', 'ladama64@hotmail.com', NULL, 1, '2015-03-18 23:09:22.391843', '2015-03-18 23:09:22.391843', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2339, 'Paula', 'paulatsb@terra.cl', NULL, 1, '2015-03-18 23:09:22.401355', '2015-03-18 23:09:22.401355', 'Solís Burgos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2340, 'GIULIANO', 'zampezeatelier@gmail.com', NULL, 1, '2015-03-18 23:09:22.428299', '2015-03-18 23:09:22.428299', 'ZAMPEZE ASEM')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2341, 'matilda', 'matildaz70@hotmail.com', NULL, 1, '2015-03-18 23:09:22.437376', '2015-03-18 23:09:22.437376', 'zapata')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2342, 'Roberto', 'robertodgiusti@hotmail.com', NULL, 1, '2015-03-18 23:09:22.447371', '2015-03-18 23:09:22.447371', 'Daniel Giusti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2343, 'Gonzalo', 'lost.beat@gmail.com', NULL, 1, '2015-03-18 23:09:22.456918', '2015-03-18 23:09:22.456918', 'Fernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2344, 'Constanza', 'coni.blen@hotmail.com', NULL, 1, '2015-03-18 23:09:22.465582', '2015-03-18 23:09:22.465582', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2345, 'Jorge', 'jlabarca@vtr.net', NULL, 1, '2015-03-18 23:09:22.478027', '2015-03-18 23:09:22.478027', 'Labarca van Rysselberghe')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2346, 'cristian', 'cgvidalopez@hotmail.com', NULL, 1, '2015-03-18 23:09:22.487085', '2015-03-18 23:09:22.487085', 'vidal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2347, 'varticeanu', 'artalin@list.ru', NULL, 1, '2015-03-18 23:09:22.495877', '2015-03-18 23:09:22.495877', 'alin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2348, 'varticeanu', 'alin.777@maill.ru', NULL, 1, '2015-03-18 23:09:22.834868', '2015-03-18 23:09:22.834868', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2349, 'CARLOS', 'ccares@gmail.com', NULL, 1, '2015-03-18 23:09:23.027523', '2015-03-18 23:09:23.027523', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2350, 'sancancino', 'cancinosilva.san@gmail.com', NULL, 1, '2015-03-18 23:09:23.036861', '2015-03-18 23:09:23.036861', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2351, 'Roberto', 'rogonma.81@hotmail.com', NULL, 1, '2015-03-18 23:09:23.046624', '2015-03-18 23:09:23.046624', 'González Martínez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2352, 'yuricel', 'yuricelm@gmail.com', NULL, 1, '2015-03-18 23:09:23.055576', '2015-03-18 23:09:23.055576', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2353, 'Miguel', 'circoatellier@gmail.com', NULL, 1, '2015-03-18 23:09:23.064807', '2015-03-18 23:09:23.064807', 'Muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2354, 'diego', 'masescultura@gmail.com', NULL, 1, '2015-03-18 23:09:23.075744', '2015-03-18 23:09:23.075744', 'arenas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2355, 'Roberta', 'roberta.requena@gmail.com', NULL, 1, '2015-03-18 23:09:23.084981', '2015-03-18 23:09:23.084981', 'Requena')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2356, 'Francisca', 'tiscaserigrafia@gmail.com', NULL, 1, '2015-03-18 23:09:23.094300', '2015-03-18 23:09:23.094300', 'Corvera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2357, 'Nestor', 'ncabello@hotmail.com', NULL, 1, '2015-03-18 23:09:23.102775', '2015-03-18 23:09:23.102775', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2358, 'Tomás', 'ottoclowns@yahoo.es', NULL, 1, '2015-03-18 23:09:23.111969', '2015-03-18 23:09:23.111969', 'Anguita')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2359, 'Camila', 'kmilabr@gmail.com', NULL, 1, '2015-03-18 23:09:23.125245', '2015-03-18 23:09:23.125245', 'José Bardehle Ruiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2360, 'Andrea', 'abalvare@uc.cl', NULL, 1, '2015-03-18 23:09:23.134502', '2015-03-18 23:09:23.134502', 'Álvarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2361, 'christian', 'demati96@hotmail.es', NULL, 1, '2015-03-18 23:09:23.143562', '2015-03-18 23:09:23.143562', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2362, 'Juan', 'juan_antes@hotmail.com', NULL, 1, '2015-03-18 23:09:23.152270', '2015-03-18 23:09:23.152270', 'Carlos Amaya')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2363, 'Carlos', 'carlos.marti@bol.com.br', NULL, 1, '2015-03-18 23:09:23.160742', '2015-03-18 23:09:23.160742', 'Marti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2364, 'Ingrid', 'iimirandad@gmail.com', NULL, 1, '2015-03-18 23:09:23.175490', '2015-03-18 23:09:23.175490', 'Miranda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2365, 'maurocarvajal', 'maurocarvajal74@gmail.com', NULL, 1, '2015-03-18 23:09:23.185048', '2015-03-18 23:09:23.185048', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2366, 'Cynthia', 'cinti.pas@hotmail.com', NULL, 1, '2015-03-18 23:09:23.193769', '2015-03-18 23:09:23.193769', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2367, 'Eugenia', 'mirandaeugenia@yahoo.es', NULL, 1, '2015-03-18 23:09:23.202255', '2015-03-18 23:09:23.202255', 'Miranda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2368, 'Jhoffre', 'coffre28@hotmail.com', NULL, 1, '2015-03-18 23:09:23.211193', '2015-03-18 23:09:23.211193', 'Flores Miranda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2369, 'maria', 'mariagiljirado@hotmail.com', NULL, 1, '2015-03-18 23:09:23.225761', '2015-03-18 23:09:23.225761', 'gil jjurado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2370, 'jesus', 'jesusversusjesus@gmail.com', NULL, 1, '2015-03-18 23:09:23.234283', '2015-03-18 23:09:23.234283', 'roman')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2371, 'Ruben', 'lartigue22@hotmail.com', NULL, 1, '2015-03-18 23:09:23.243433', '2015-03-18 23:09:23.243433', 'Lartigue')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2372, 'cristobal', 'lemort.art@gmail.com', NULL, 1, '2015-03-18 23:09:23.251794', '2015-03-18 23:09:23.251794', 'guajardo arriagada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2373, 'Stanislav', 'stanislav.batalov.art@gmail.com', NULL, 1, '2015-03-18 23:09:23.260716', '2015-03-18 23:09:23.260716', 'Batalov')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2374, 'Conchita', 'conchitamedina_49@hotmail.com', NULL, 1, '2015-03-18 23:09:23.275248', '2015-03-18 23:09:23.275248', 'Medina Amaro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2375, 'juan', 'juvasque@gmail.com', NULL, 1, '2015-03-18 23:09:23.284694', '2015-03-18 23:09:23.284694', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2376, 'felipe', 'felipegalazpacheco@gmail.com', NULL, 1, '2015-03-18 23:09:23.293631', '2015-03-18 23:09:23.293631', 'galaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2377, 'Miguel', 'letra.usada@gmail.com', NULL, 1, '2015-03-18 23:09:23.302935', '2015-03-18 23:09:23.302935', 'Arturo Mejía')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2378, 'meditativa', 'meditativa@hotmail.com', NULL, 1, '2015-03-18 23:09:23.312180', '2015-03-18 23:09:23.312180', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2379, 'Juan', 'juanmege@gmail.com', NULL, 1, '2015-03-18 23:09:23.326131', '2015-03-18 23:09:23.326131', 'Carlos Mege')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2380, 'Elsa', 'dhsb01@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:23.334915', '2015-03-18 23:09:23.334915', 'Net')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2381, 'Graciela', 'dhuerta@vyh-sistemas.com.ar', NULL, 1, '2015-03-18 23:09:23.343681', '2015-03-18 23:09:23.343681', 'Net')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2382, 'Sergio', 'sergio_e_v@hotmail.com', NULL, 1, '2015-03-18 23:09:23.353191', '2015-03-18 23:09:23.353191', 'Alejandro Espinoza Veas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2383, 'arte', 'arteisabelaninat@gmail.com', NULL, 1, '2015-03-18 23:09:23.363249', '2015-03-18 23:09:23.363249', 'isabel aninat')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2384, 'Maria', 'mariaignaciafell@gmail.com', NULL, 1, '2015-03-18 23:09:23.375186', '2015-03-18 23:09:23.375186', 'Ignacia Fell')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2385, 'Franco', 'drakemarinafrance@yahoo.fr', NULL, 1, '2015-03-18 23:09:23.383640', '2015-03-18 23:09:23.383640', 'Salas Borquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2386, 'Manuel', 'manuparrasensi@gmail.com', NULL, 1, '2015-03-18 23:09:23.393691', '2015-03-18 23:09:23.393691', 'Parra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2387, 'Millaray', 'millarayv@gmail.com', NULL, 1, '2015-03-18 23:09:23.402935', '2015-03-18 23:09:23.402935', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2388, 'adriana', 'kruzarte@gmail.com', NULL, 1, '2015-03-18 23:09:23.412239', '2015-03-18 23:09:23.412239', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2389, 'MARIA', 'mjose.miranda.jara@gmail.com', NULL, 1, '2015-03-18 23:09:23.424788', '2015-03-18 23:09:23.424788', 'JOSE MIRANDA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2390, 'Maite', 'maite.awad@gmail.com', NULL, 1, '2015-03-18 23:09:23.434553', '2015-03-18 23:09:23.434553', 'Awad Lobato')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2391, 'Gisela', 'g.verdessi@gmail.com', NULL, 1, '2015-03-18 23:09:23.443666', '2015-03-18 23:09:23.443666', 'Verdessi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2392, 'Camila', 'camilalobosd@gmail.com', NULL, 1, '2015-03-18 23:09:23.453141', '2015-03-18 23:09:23.453141', 'Lobos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2393, 'Rodrigo', 'rodrigobelloz@gmail.com', NULL, 1, '2015-03-18 23:09:23.462256', '2015-03-18 23:09:23.462256', 'Bello')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2394, 'Carlo', 'arte/cota@yahoo.es', NULL, 1, '2015-03-18 23:09:23.475469', '2015-03-18 23:09:23.475469', 'Carrasco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2395, 'wilson', 'sociolegista.w@gmail.com', NULL, 1, '2015-03-18 23:09:23.485192', '2015-03-18 23:09:23.485192', 'nogueira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2396, 'Samuel', 'samueltoro@gmail.com', NULL, 1, '2015-03-18 23:09:23.493718', '2015-03-18 23:09:23.493718', 'Toro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2397, 'Edith', 'abrasivo@gmail.com', NULL, 1, '2015-03-18 23:09:23.503156', '2015-03-18 23:09:23.503156', 'Medina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2398, 'Alejandra', 'azermeno@alejandrazermeno.com', NULL, 1, '2015-03-18 23:09:23.512176', '2015-03-18 23:09:23.512176', 'Zermeño')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2399, 'daniel', 'danieldepix@gmail.com', NULL, 1, '2015-03-18 23:09:23.524755', '2015-03-18 23:09:23.524755', 'sanz depix')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2400, 'Guillermo', 'gguillermogonzalez@gmail.com', NULL, 1, '2015-03-18 23:09:23.533772', '2015-03-18 23:09:23.533772', 'González')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2401, 'raiza', 'lamaslinda1523@hotmail.com', NULL, 1, '2015-03-18 23:09:23.542869', '2015-03-18 23:09:23.542869', 'elena bustamante mata')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2402, 'Cristobal', 'cristobal.villanueva@gmail.com', NULL, 1, '2015-03-18 23:09:23.552233', '2015-03-18 23:09:23.552233', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2403, 'Angélica', 'angelicasanchez@live.com.mx', NULL, 1, '2015-03-18 23:09:23.561499', '2015-03-18 23:09:23.561499', 'Sánchez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2404, 'Zara', 'zaratrejointeriores@gmail.com', NULL, 1, '2015-03-18 23:09:23.574237', '2015-03-18 23:09:23.574237', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2405, 'Nicky', 'nickychiarello@gmail.com', NULL, 1, '2015-03-18 23:09:23.582914', '2015-03-18 23:09:23.582914', 'Chiarello')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2406, 'Daniel', 'dagaf79@gmail.com', NULL, 1, '2015-03-18 23:09:23.592350', '2015-03-18 23:09:23.592350', 'Abraham Garcia Arellano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2407, 'Sergio', 'aguilarios@gmail.com', NULL, 1, '2015-03-18 23:09:23.602023', '2015-03-18 23:09:23.602023', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2408, 'adriana', 'kruznana@gmail.com', NULL, 1, '2015-03-18 23:09:23.610961', '2015-03-18 23:09:23.610961', 'cruz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2409, 'carlos', 'carlosmir22@hotmail.com', NULL, 1, '2015-03-18 23:09:23.624109', '2015-03-18 23:09:23.624109', 'mir')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2410, 'c', 'carlosmir@carlosmir.com', NULL, 1, '2015-03-18 23:09:23.633261', '2015-03-18 23:09:23.633261', 'mir')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2411, 'Ibar', 'ibar_laserena@hotmail.com', NULL, 1, '2015-03-18 23:09:23.642012', '2015-03-18 23:09:23.642012', 'Ricardo Morgado Malebran')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2412, 'Francisco', 'panxo.kandalaft@hotmail.com', NULL, 1, '2015-03-18 23:09:23.652010', '2015-03-18 23:09:23.652010', 'Javier Kandalaft Ruminot')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2413, 'arnaldo', 'arnaldocarrascovergara@gmail.com', NULL, 1, '2015-03-18 23:09:23.661203', '2015-03-18 23:09:23.661203', 'carrasco vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2414, 'pol', 'hola@pollion7.com', NULL, 1, '2015-03-18 23:09:23.675134', '2015-03-18 23:09:23.675134', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2415, 'Daniela', 'arcillablanca@gmail.com', NULL, 1, '2015-03-18 23:09:23.684450', '2015-03-18 23:09:23.684450', 'Díaz Guerrero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2416, 'GREGORIO', 'acwiwari@hotmail.com', NULL, 1, '2015-03-18 23:09:23.693819', '2015-03-18 23:09:23.693819', 'SULCA CHAVEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2417, 'David', 'vichideleon@hotmail.com', NULL, 1, '2015-03-18 23:09:23.703368', '2015-03-18 23:09:23.703368', 'de Leon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2418, 'Rattha', 'ratthagallery@gmail.com', NULL, 1, '2015-03-18 23:09:23.712839', '2015-03-18 23:09:23.712839', 'Gallery')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2419, 'Isabel', 'isabelfabiola@gmail.com', NULL, 1, '2015-03-18 23:09:23.740191', '2015-03-18 23:09:23.740191', 'Urra')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2420, 'Natalia', 'betancourt.beta@gmail.com', NULL, 1, '2015-03-18 23:09:23.753955', '2015-03-18 23:09:23.753955', 'Betancourt Cofre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2421, 'Julio', 'afretme@live.cl', NULL, 1, '2015-03-18 23:09:23.766175', '2015-03-18 23:09:23.766175', 'Chávez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2422, 'Deysi', 'mafalda623@hotmail.com', NULL, 1, '2015-03-18 23:09:23.777147', '2015-03-18 23:09:23.777147', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2423, 'Natalia', 'dosmascinco@gmail.com', NULL, 1, '2015-03-18 23:09:23.787105', '2015-03-18 23:09:23.787105', 'Díaz Salvo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2424, 'P.', 'pcatalina.va@gmail.com', NULL, 1, '2015-03-18 23:09:23.796626', '2015-03-18 23:09:23.796626', 'VALENZULA ANTÚNEZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2425, 'Marie', 'maecarlsson6@hotmail.com', NULL, 1, '2015-03-18 23:09:23.806350', '2015-03-18 23:09:23.806350', 'Aileen Carlsson')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2426, 'ANTONELA', 'antonelafrancesia@hotmail.com', NULL, 1, '2015-03-18 23:09:23.909873', '2015-03-18 23:09:23.909873', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2427, 'Isidora', 'issy.rtg@gmail.com', NULL, 1, '2015-03-18 23:09:23.919143', '2015-03-18 23:09:23.919143', 'Ortega')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2428, 'patricio', 'guerra2254@yahoo.com', NULL, 1, '2015-03-18 23:09:23.942040', '2015-03-18 23:09:23.942040', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2429, 'cesar', 'cjmecanics@hotmail.com', NULL, 1, '2015-03-18 23:09:23.957528', '2015-03-18 23:09:23.957528', 'alfredo jiliberto vasquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2430, 'Pablo', 'goldenpe@gmail.com', NULL, 1, '2015-03-18 23:09:23.974031', '2015-03-18 23:09:23.974031', 'Goldenberg')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2431, 'ANDRES', 'andresovalleny@gmail.com', NULL, 1, '2015-03-18 23:09:23.983320', '2015-03-18 23:09:23.983320', 'OVALLE')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2432, 'Gaspar', 'gasparalvarez@alugar.cl', NULL, 1, '2015-03-18 23:09:23.992841', '2015-03-18 23:09:23.992841', 'Alvarez Requena')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2433, 'Julio', 'abbig2000@yahoo.com', NULL, 1, '2015-03-18 23:09:24.007652', '2015-03-18 23:09:24.007652', 'Enrique Díaz Cambón')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2434, 'Carina', 'kubeda@gmail.com', NULL, 1, '2015-03-18 23:09:24.017745', '2015-03-18 23:09:24.017745', 'Úbeda Chacana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2435, 'carolina', 'carolinadasilva84@hotmail.com', NULL, 1, '2015-03-18 23:09:24.029087', '2015-03-18 23:09:24.029087', 'da silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2436, 'Franco', 'deep_kover@hotmail.com', NULL, 1, '2015-03-18 23:09:24.040948', '2015-03-18 23:09:24.040948', 'Munoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2437, 'Hugo', 'arpon@vtr.net', NULL, 1, '2015-03-18 23:09:24.057529', '2015-03-18 23:09:24.057529', 'Francisco Quintero Miño')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2438, 'Camila', 'cami.naif@hotmail.cl', NULL, 1, '2015-03-18 23:09:24.066724', '2015-03-18 23:09:24.066724', 'Ramírez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2439, 'Francisca', 'fcostabombal@gmail.com', NULL, 1, '2015-03-18 23:09:24.092127', '2015-03-18 23:09:24.092127', 'Costa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2440, 'Daniel', 'villapeutica@gmail.com', NULL, 1, '2015-03-18 23:09:24.135702', '2015-03-18 23:09:24.135702', 'Reyes León')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2441, 'Enrique', 'schiaffaformas@hotmail.com', NULL, 1, '2015-03-18 23:09:24.161580', '2015-03-18 23:09:24.161580', 'Schiaffarino Riera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2442, 'Carlos', 'carlos.gr57@gmail.com', NULL, 1, '2015-03-18 23:09:24.180599', '2015-03-18 23:09:24.180599', 'G.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2443, 'rodrigo', 'rodrigobaez4@msn.com', NULL, 1, '2015-03-18 23:09:24.190804', '2015-03-18 23:09:24.190804', 'baez atienza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2444, 'Tarix', 'tarix.sep@gmail.coom', NULL, 1, '2015-03-18 23:09:24.206675', '2015-03-18 23:09:24.206675', 'Sepúlveda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2445, 'Mujer', 'mujermapocho@gmail.com', NULL, 1, '2015-03-18 23:09:24.216268', '2015-03-18 23:09:24.216268', 'Mapocho')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2446, 'María', 'mjmunoz.arte@gmail.com', NULL, 1, '2015-03-18 23:09:24.258117', '2015-03-18 23:09:24.258117', 'José Muñoz Quezada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2447, 'Alberto', 'topazred@gmail.com', NULL, 1, '2015-03-18 23:09:24.276656', '2015-03-18 23:09:24.276656', 'Thirion')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2448, 'Carina', 'carinapuffez@gmail.com', NULL, 1, '2015-03-18 23:09:24.296140', '2015-03-18 23:09:24.296140', 'Puffe')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2449, 'josefina', 'jweskamp@hotmail.com', NULL, 1, '2015-03-18 23:09:24.331416', '2015-03-18 23:09:24.331416', 'weskamp')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2450, 'Manos', 'dga_79@gmail.com', NULL, 1, '2015-03-18 23:09:24.356925', '2015-03-18 23:09:24.356925', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2451, 'Veronica', 'veronica.guarda@gmail.com', NULL, 1, '2015-03-18 23:09:24.403860', '2015-03-18 23:09:24.403860', 'Guarda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2452, 'Diana', 'dianaprofilio@gmail.com', NULL, 1, '2015-03-18 23:09:24.431138', '2015-03-18 23:09:24.431138', 'Profilio')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2453, 'Susana', 'castisusana@gmail.com', NULL, 1, '2015-03-18 23:09:24.457913', '2015-03-18 23:09:24.457913', 'Castillo López')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2454, 'Glen', 'glenlizardi@gmail.com', NULL, 1, '2015-03-18 23:09:24.492080', '2015-03-18 23:09:24.492080', 'Lizardi Flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2455, 'Beatriz', 'mdcaral@une.net.co', NULL, 1, '2015-03-18 23:09:24.512857', '2015-03-18 23:09:24.512857', 'E Hoyos H')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2456, 'Milagro', 'mmilagro.albornoz@gmail.com', NULL, 1, '2015-03-18 23:09:24.535546', '2015-03-18 23:09:24.535546', 'Albornoz Castro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2457, 'Magdalena', 'm@magdalenaerrazuriz.cl', NULL, 1, '2015-03-18 23:09:24.563830', '2015-03-18 23:09:24.563830', 'Errázuriz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2458, 'Artistas', 'culturasantander@gmail.com', NULL, 1, '2015-03-18 23:09:24.591928', '2015-03-18 23:09:24.591928', 'Zona Oriente')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2459, 'Antonia', 'azbanado@uc.cl', NULL, 1, '2015-03-18 23:09:24.617220', '2015-03-18 23:09:24.617220', 'Paz Bañados Ramirez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2460, 'Genaro', 'Genaroalbaino@gmail.com', NULL, 1, '2015-03-18 23:09:24.634498', '2015-03-18 23:09:24.634498', 'Albaíno')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2461, 'consuelo', 'consuelowalker@gmail.com', NULL, 1, '2015-03-18 23:09:24.667384', '2015-03-18 23:09:24.667384', 'walker')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2462, 'Karina', 'karinacasta@gmail.com', NULL, 1, '2015-03-18 23:09:24.689900', '2015-03-18 23:09:24.689900', 'Castañeda Zúñiga')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2463, 'sergio', 's.m.gallardo71@gmail.com', NULL, 1, '2015-03-18 23:09:24.712768', '2015-03-18 23:09:24.712768', 'marcelo gallardo paredes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2464, 'Manuel', 'polysix@gmail.com', NULL, 1, '2015-03-18 23:09:24.735064', '2015-03-18 23:09:24.735064', 'Rojas Morales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2465, 'Constanza', 'cotibriceno@gmail.com', NULL, 1, '2015-03-18 23:09:24.756039', '2015-03-18 23:09:24.756039', 'Briceño')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2466, 'Vanessa', 'sanzvane@gmail.com', NULL, 1, '2015-03-18 23:09:24.789116', '2015-03-18 23:09:24.789116', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2467, 'Pedro', 'pet_punk@hotmail.com', NULL, 1, '2015-03-18 23:09:24.804763', '2015-03-18 23:09:24.804763', 'ricardo Duran')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2468, 'Angel', 'martinodanza@gmail.com', NULL, 1, '2015-03-18 23:09:24.820862', '2015-03-18 23:09:24.820862', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2469, 'raphaelherrande', 'pufhjlkfj@qq.com', NULL, 1, '2015-03-18 23:09:24.835450', '2015-03-18 23:09:24.835450', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2470, 'Carlos', 'lithium.rei@gmail.com', NULL, 1, '2015-03-18 23:09:24.856188', '2015-03-18 23:09:24.856188', 'Valdes Flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2471, 'elinoreshelquis', 'yaoxian14099949@163.com', NULL, 1, '2015-03-18 23:09:24.873783', '2015-03-18 23:09:24.873783', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2472, 'christinaesenwe', 'yuenao25931650@163.com', NULL, 1, '2015-03-18 23:09:24.891645', '2015-03-18 23:09:24.891645', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2473, 'damarissewester', 'susuovbchft@21cn.com', NULL, 1, '2015-03-18 23:09:24.912236', '2015-03-18 23:09:24.912236', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2474, 'winstonkoenemun', 'itszwowup@qq.com', NULL, 1, '2015-03-18 23:09:24.941706', '2015-03-18 23:09:24.941706', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2475, 'janaemagrath', 'wuniangwnh@eyou.com', NULL, 1, '2015-03-18 23:09:24.955471', '2015-03-18 23:09:24.955471', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2476, 'arnulfogoldrich', 'zan51183@tom.com', NULL, 1, '2015-03-18 23:09:24.965593', '2015-03-18 23:09:24.965593', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2477, 'theodoramarsigl', 'hezhecqhntc@21cn.com', NULL, 1, '2015-03-18 23:09:24.975080', '2015-03-18 23:09:24.975080', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2478, 'loraleewlodarcz', 'conolemodlin@sohu.com', NULL, 1, '2015-03-18 23:09:24.985458', '2015-03-18 23:09:24.985458', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2479, 'allenagaldamez', 'shun7994370@163.com', NULL, 1, '2015-03-18 23:09:25.004302', '2015-03-18 23:09:25.004302', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2480, 'martywenzell', 'seeboldpace@sohu.com', NULL, 1, '2015-03-18 23:09:25.015516', '2015-03-18 23:09:25.015516', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2481, 'louiedeaton', 'bnlurwdxx@qq.com', NULL, 1, '2015-03-18 23:09:25.079665', '2015-03-18 23:09:25.079665', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2482, 'theaonorato', 'pinggu363431761@163.com', NULL, 1, '2015-03-18 23:09:25.101938', '2015-03-18 23:09:25.101938', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2483, 'Jonathan', 'mxgenesis@gmail.com', NULL, 1, '2015-03-18 23:09:25.127030', '2015-03-18 23:09:25.127030', 'Israel Carbajal García')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2484, 'rennalesmerises', 'liuhaifei5@163.com', NULL, 1, '2015-03-18 23:09:25.146419', '2015-03-18 23:09:25.146419', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2485, 'wmlikins', 'dunqueyuan982@tom.com', NULL, 1, '2015-03-18 23:09:25.174812', '2015-03-18 23:09:25.174812', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2486, 'raeannzurkuhlen', 'zhuachang9148608@163.com', NULL, 1, '2015-03-18 23:09:25.191158', '2015-03-18 23:09:25.191158', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2487, 'alvarostrick', 'tbeyvecge@qq.com', NULL, 1, '2015-03-18 23:09:25.258467', '2015-03-18 23:09:25.258467', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2488, 'florrieschlesen', 'tannwiddison@sohu.com', NULL, 1, '2015-03-18 23:09:25.279511', '2015-03-18 23:09:25.279511', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2489, 'gonzalotebar', 'kmbjjoglb@qq.com', NULL, 1, '2015-03-18 23:09:25.306439', '2015-03-18 23:09:25.306439', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2490, 'reaganadkinson', 'fenpenwum@eyou.com', NULL, 1, '2015-03-18 23:09:25.324861', '2015-03-18 23:09:25.324861', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2491, 'lanellepapenfus', 'wangdehuo@sohu.com', NULL, 1, '2015-03-18 23:09:25.346317', '2015-03-18 23:09:25.346317', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2492, 'tyronebejil', 'vh4g3qwy7t@qq.com', NULL, 1, '2015-03-18 23:09:25.369018', '2015-03-18 23:09:25.369018', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2493, 'eleanorpangelin', 'yozan840953693@163.com', NULL, 1, '2015-03-18 23:09:25.391340', '2015-03-18 23:09:25.391340', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2494, 'dorathymckendry', 'uda3752285@163.com', NULL, 1, '2015-03-18 23:09:25.418019', '2015-03-18 23:09:25.418019', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2495, 'marciawarson', 'wuzeiejf@eyou.com', NULL, 1, '2015-03-18 23:09:25.428128', '2015-03-18 23:09:25.428128', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2496, 'yurisaterfield', 'pwrcjanb2512@hotmail.com', NULL, 1, '2015-03-18 23:09:25.440099', '2015-03-18 23:09:25.440099', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2497, 'irmacrowston', 'zhoumangubk@eyou.com', NULL, 1, '2015-03-18 23:09:25.454611', '2015-03-18 23:09:25.454611', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2498, 'dalilamuphy', 'shentieajaavp@21cn.com', NULL, 1, '2015-03-18 23:09:25.474741', '2015-03-18 23:09:25.474741', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2499, 'myrlareola', 'jtagampr2794@hotmail.com', NULL, 1, '2015-03-18 23:09:25.491865', '2015-03-18 23:09:25.491865', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2500, 'luannadegear', 'fenrexmubxb@21cn.com', NULL, 1, '2015-03-18 23:09:25.505200', '2015-03-18 23:09:25.505200', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2501, 'sharonlukander', 'xiangwuning@sohu.com', NULL, 1, '2015-03-18 23:09:25.514112', '2015-03-18 23:09:25.514112', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2502, 'nelidanakonechn', 'rongsou4231514@163.com', NULL, 1, '2015-03-18 23:09:25.524004', '2015-03-18 23:09:25.524004', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2503, 'alishalawter', 'iar440613863@163.com', NULL, 1, '2015-03-18 23:09:25.532791', '2015-03-18 23:09:25.532791', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2504, 'phyliskotas', 'dansheng131@163.com', NULL, 1, '2015-03-18 23:09:25.541976', '2015-03-18 23:09:25.541976', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2505, 'rivkafegueroa', 'yanguanmvxxqw@21cn.com', NULL, 1, '2015-03-18 23:09:25.553423', '2015-03-18 23:09:25.553423', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2506, 'danaecovelli', 'caorenetj@eyou.com', NULL, 1, '2015-03-18 23:09:25.562429', '2015-03-18 23:09:25.562429', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2507, 'aracelychanler', 'wangshuaibyfdsv@21cn.com', NULL, 1, '2015-03-18 23:09:25.571071', '2015-03-18 23:09:25.571071', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2508, 'elviradewald', 'minhuang1128196@163.com', NULL, 1, '2015-03-18 23:09:25.581270', '2015-03-18 23:09:25.581270', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2509, 'denysegettinger', 'yaogongpdh@eyou.com', NULL, 1, '2015-03-18 23:09:25.590877', '2015-03-18 23:09:25.590877', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2510, 'leetilghman', 'weisunaxgvwc@21cn.com', NULL, 1, '2015-03-18 23:09:25.603050', '2015-03-18 23:09:25.603050', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2511, 'carolinmichelin', 'dcyrwrsh684@hotmail.com', NULL, 1, '2015-03-18 23:09:25.612346', '2015-03-18 23:09:25.612346', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2512, 'sheritanarlock', 'senxiongbmv@eyou.com', NULL, 1, '2015-03-18 23:09:25.621706', '2015-03-18 23:09:25.621706', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2513, 'analisamerkt', 'wuxiaoqefqnb@21cn.com', NULL, 1, '2015-03-18 23:09:25.631243', '2015-03-18 23:09:25.631243', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2514, 'fridamuhl', 'fengmengrzx@eyou.com', NULL, 1, '2015-03-18 23:09:25.647899', '2015-03-18 23:09:25.647899', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2515, 'patriciapeaslee', 'liu475268651@163.com', NULL, 1, '2015-03-18 23:09:25.664092', '2015-03-18 23:09:25.664092', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2516, 'elmermajeske', 'xjnwzyga486@hotmail.com', NULL, 1, '2015-03-18 23:09:25.685731', '2015-03-18 23:09:25.685731', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2517, 'kathaleenrockma', 'liangpin97129457@163.com', NULL, 1, '2015-03-18 23:09:25.704532', '2015-03-18 23:09:25.704532', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2518, 'margrethardrick', 'panfengnawpka@21cn.com', NULL, 1, '2015-03-18 23:09:25.744233', '2015-03-18 23:09:25.744233', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2519, 'tanjataitague', 'panzanxk@eyou.com', NULL, 1, '2015-03-18 23:09:25.755793', '2015-03-18 23:09:25.755793', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2520, 'shinkistner', 'sunzouazq@eyou.com', NULL, 1, '2015-03-18 23:09:25.768224', '2015-03-18 23:09:25.768224', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2521, 'terrellstemmer', 'wangtoupazbab@21cn.com', NULL, 1, '2015-03-18 23:09:25.781243', '2015-03-18 23:09:25.781243', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2522, 'ruthannelambka', 'stashstamnos@sohu.com', NULL, 1, '2015-03-18 23:09:25.867077', '2015-03-18 23:09:25.867077', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2523, 'minhedgman', 'weimuzac@eyou.com', NULL, 1, '2015-03-18 23:09:25.876961', '2015-03-18 23:09:25.876961', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2524, 'jenaetippin', 'dxhrhygw297@hotmail.com', NULL, 1, '2015-03-18 23:09:25.901105', '2015-03-18 23:09:25.901105', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2525, 'pola', 'mirandapola@gmail.com', NULL, 1, '2015-03-18 23:09:25.919294', '2015-03-18 23:09:25.919294', 'miranda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2526, 'santinatredo', 'sunkunsxa@eyou.com', NULL, 1, '2015-03-18 23:09:25.946733', '2015-03-18 23:09:25.946733', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2527, 'pearlecardozo', 'harmondhast@sohu.com', NULL, 1, '2015-03-18 23:09:25.970024', '2015-03-18 23:09:25.970024', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2528, 'helentackett', 'hefubao0223@sohu.com', NULL, 1, '2015-03-18 23:09:25.996184', '2015-03-18 23:09:25.996184', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2529, 'jennellgalacio', 'zhendaottaevm@21cn.com', NULL, 1, '2015-03-18 23:09:26.011534', '2015-03-18 23:09:26.011534', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2530, 'patpruzansky', 'zouxuhao3578274@163.com', NULL, 1, '2015-03-18 23:09:26.086796', '2015-03-18 23:09:26.086796', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2531, 'kristanpolosky', 'liu1356949@163.com', NULL, 1, '2015-03-18 23:09:26.101457', '2015-03-18 23:09:26.101457', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2532, 'keishaosiecki', 'anduo755450227@163.com', NULL, 1, '2015-03-18 23:09:26.135055', '2015-03-18 23:09:26.135055', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2533, 'dioneperson', 'luchoufmp@eyou.com', NULL, 1, '2015-03-18 23:09:26.158479', '2015-03-18 23:09:26.158479', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2534, 'wynonadeanes', 'lucaieudqhs@21cn.com', NULL, 1, '2015-03-18 23:09:26.190413', '2015-03-18 23:09:26.190413', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2535, 'paulitajansing', 'ebmpxnzd639@hotmail.com', NULL, 1, '2015-03-18 23:09:26.205237', '2015-03-18 23:09:26.205237', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2536, 'ricardagolub', 'yangluuss@eyou.com', NULL, 1, '2015-03-18 23:09:26.231649', '2015-03-18 23:09:26.231649', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2537, 'sabrinaminckler', 'langbaoliang66659@163.com', NULL, 1, '2015-03-18 23:09:26.479489', '2015-03-18 23:09:26.479489', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2538, 'natividadwesch', 'q829331953180@163.com', NULL, 1, '2015-03-18 23:09:26.489580', '2015-03-18 23:09:26.489580', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2539, 'candiceblomberg', 'fh198846659@163.com', NULL, 1, '2015-03-18 23:09:26.499022', '2015-03-18 23:09:26.499022', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2540, 'lakendrahutchin', 'bwacvaxb8944@hotmail.com', NULL, 1, '2015-03-18 23:09:26.597888', '2015-03-18 23:09:26.597888', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2541, 'kristipalmieri', 'censhaozac@eyou.com', NULL, 1, '2015-03-18 23:09:26.608481', '2015-03-18 23:09:26.608481', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2542, 'neldacourtad', 'mengdieche911aa@163.com', NULL, 1, '2015-03-18 23:09:26.617534', '2015-03-18 23:09:26.617534', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2543, 'lanepicardi', 'xukuaicmg@eyou.com', NULL, 1, '2015-03-18 23:09:26.627010', '2015-03-18 23:09:26.627010', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2544, 'dahliagrabauska', 'duihuo49773302@163.com', NULL, 1, '2015-03-18 23:09:26.651550', '2015-03-18 23:09:26.651550', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2545, 'isabellourence', 'qianhuafzr@eyou.com', NULL, 1, '2015-03-18 23:09:26.661099', '2015-03-18 23:09:26.661099', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2546, 'shastabelsito', 'qbbacdht635@hotmail.com', NULL, 1, '2015-03-18 23:09:26.679707', '2015-03-18 23:09:26.679707', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2547, 'myrticeemler', 'zymnbvms588@hotmail.com', NULL, 1, '2015-03-18 23:09:26.705883', '2015-03-18 23:09:26.705883', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2548, 'carmonmanweiler', 'kengjun94577516@163.com', NULL, 1, '2015-03-18 23:09:26.731170', '2015-03-18 23:09:26.731170', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2549, 'synthiagoretti', 'ywymsama2561@hotmail.com', NULL, 1, '2015-03-18 23:09:26.858399', '2015-03-18 23:09:26.858399', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2550, 'danyellmahony', 'sherrettsso@sohu.com', NULL, 1, '2015-03-18 23:09:26.868675', '2015-03-18 23:09:26.868675', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2551, 'evanfazzina', 'zhaoyunnaqbwf@21cn.com', NULL, 1, '2015-03-18 23:09:26.878847', '2015-03-18 23:09:26.878847', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2552, 'natalyaleininge', 'doughertyfo@sohu.com', NULL, 1, '2015-03-18 23:09:26.910548', '2015-03-18 23:09:26.910548', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2553, 'anlueckenbach', 'kyrrsujz3548@hotmail.com', NULL, 1, '2015-03-18 23:09:26.922011', '2015-03-18 23:09:26.922011', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2554, 'vernicequinoes', 'datangmaten@163.com', NULL, 1, '2015-03-18 23:09:26.985106', '2015-03-18 23:09:26.985106', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2555, 'cheribeevers', 'xyc8287454585709@163.com', NULL, 1, '2015-03-18 23:09:27.006127', '2015-03-18 23:09:27.006127', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2556, 'capricestaebell', 'zhenpaobgwger@21cn.com', NULL, 1, '2015-03-18 23:09:27.016222', '2015-03-18 23:09:27.016222', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2557, 'halliegoethe', 'zhuyingqsacny@21cn.com', NULL, 1, '2015-03-18 23:09:27.034088', '2015-03-18 23:09:27.034088', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2558, 'asiapriem', 'rongxiejun@sohu.com', NULL, 1, '2015-03-18 23:09:27.048455', '2015-03-18 23:09:27.048455', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2559, 'alexandermanuia', 'panbacbjwzt@21cn.com', NULL, 1, '2015-03-18 23:09:27.057907', '2015-03-18 23:09:27.057907', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2560, 'clarewiederholt', 'ymqbcjat8535@hotmail.com', NULL, 1, '2015-03-18 23:09:27.067652', '2015-03-18 23:09:27.067652', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2561, 'lashundawiddows', 'fczsrybf2692@hotmail.com', NULL, 1, '2015-03-18 23:09:27.090336', '2015-03-18 23:09:27.090336', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2562, 'georginaemmert', 'smqhbvas288@hotmail.com', NULL, 1, '2015-03-18 23:09:27.119786', '2015-03-18 23:09:27.119786', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2563, 'waierling', 'guixiong318156@163.com', NULL, 1, '2015-03-18 23:09:27.135010', '2015-03-18 23:09:27.135010', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2564, 'kayshallcross', 'xkwhgtru5824@hotmail.com', NULL, 1, '2015-03-18 23:09:27.166134', '2015-03-18 23:09:27.166134', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2565, 'myrtiekass', 'xunmiao53480547@163.com', NULL, 1, '2015-03-18 23:09:27.182828', '2015-03-18 23:09:27.182828', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2566, 'danyelpietrzyk', 'puhu51745918403@163.com', NULL, 1, '2015-03-18 23:09:27.201375', '2015-03-18 23:09:27.201375', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2567, 'helenenielsen', 'zhuotiao4894082@163.com', NULL, 1, '2015-03-18 23:09:27.246126', '2015-03-18 23:09:27.246126', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2568, 'candifeucht', 's602470433175@163.com', NULL, 1, '2015-03-18 23:09:27.280116', '2015-03-18 23:09:27.280116', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2569, 'vanitadziuk', 'errazaaw531@hotmail.com', NULL, 1, '2015-03-18 23:09:27.312939', '2015-03-18 23:09:27.312939', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2570, 'jillianpledger', 'cjdzcdky6592@hotmail.com', NULL, 1, '2015-03-18 23:09:27.335928', '2015-03-18 23:09:27.335928', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2571, 'sharylansel', 'feivsxiaofang027@163.com', NULL, 1, '2015-03-18 23:09:27.349382', '2015-03-18 23:09:27.349382', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2572, 'lanorarovner', 'adrpfbxt591@hotmail.com', NULL, 1, '2015-03-18 23:09:27.358721', '2015-03-18 23:09:27.358721', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2573, 'maisiejonak', 'bhacfkyu392@hotmail.com', NULL, 1, '2015-03-18 23:09:27.380901', '2015-03-18 23:09:27.380901', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2574, 'rachaelunverzag', 'sgp3448293448@163.com', NULL, 1, '2015-03-18 23:09:27.398285', '2015-03-18 23:09:27.398285', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2575, 'katerinegarces', 'songmanvaeacd@21cn.com', NULL, 1, '2015-03-18 23:09:27.407496', '2015-03-18 23:09:27.407496', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2576, 'belvakinnaman', 'jika585039924461@163.com', NULL, 1, '2015-03-18 23:09:27.416768', '2015-03-18 23:09:27.416768', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2577, 'ellynabolafia', 'lieshi0286679018@163.com', NULL, 1, '2015-03-18 23:09:27.444002', '2015-03-18 23:09:27.444002', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2578, 'luettamartinat', 'doddgerloff@sohu.com', NULL, 1, '2015-03-18 23:09:27.547487', '2015-03-18 23:09:27.547487', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2579, 'julissachor', 'quanba384416232@163.com', NULL, 1, '2015-03-18 23:09:27.556742', '2015-03-18 23:09:27.556742', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2580, 'sandiehauth', 'nulang3693996581@163.com', NULL, 1, '2015-03-18 23:09:27.565968', '2015-03-18 23:09:27.565968', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2581, 'shainaczapiewsk', 'brousardkib@sohu.com', NULL, 1, '2015-03-18 23:09:27.575510', '2015-03-18 23:09:27.575510', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2582, 'annlondo', 'zjuuzamx579@hotmail.com', NULL, 1, '2015-03-18 23:09:27.585351', '2015-03-18 23:09:27.585351', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2583, 'valenegarski', 'zhenduanzteayy@21cn.com', NULL, 1, '2015-03-18 23:09:28.142398', '2015-03-18 23:09:28.142398', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2584, 'raeannsuennen', 'hoffeltiaro@sohu.com', NULL, 1, '2015-03-18 23:09:28.152451', '2015-03-18 23:09:28.152451', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2585, 'zaidafosberg', 'usyrzgnc593@hotmail.com', NULL, 1, '2015-03-18 23:09:28.161053', '2015-03-18 23:09:28.161053', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2586, 'violetpisciotta', 'yanchaohmpyyh@21cn.com', NULL, 1, '2015-03-18 23:09:28.170785', '2015-03-18 23:09:28.170785', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2587, 'francesstudier', 'huandang73170521@163.com', NULL, 1, '2015-03-18 23:09:28.179455', '2015-03-18 23:09:28.179455', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2588, 'shereetrilli', 'zhoulurezqgt@21cn.com', NULL, 1, '2015-03-18 23:09:28.197842', '2015-03-18 23:09:28.197842', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2589, 'lenitadibbles', 'vitkustrover@sohu.com', NULL, 1, '2015-03-18 23:09:28.208984', '2015-03-18 23:09:28.208984', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2590, 'maribelfeyler', 'rpaamttc1192@hotmail.com', NULL, 1, '2015-03-18 23:09:28.217788', '2015-03-18 23:09:28.217788', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2591, 'ermabanet', 'shengshui04073@163.com', NULL, 1, '2015-03-18 23:09:28.226631', '2015-03-18 23:09:28.226631', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2592, 'socorrosubido', 'fandugkkqvx@21cn.com', NULL, 1, '2015-03-18 23:09:28.236054', '2015-03-18 23:09:28.236054', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2593, 'felisabloch', 'anfqazgz595@hotmail.com', NULL, 1, '2015-03-18 23:09:28.247548', '2015-03-18 23:09:28.247548', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2594, 'laveraknopf', 'zsqbcuth575@hotmail.com', NULL, 1, '2015-03-18 23:09:28.256997', '2015-03-18 23:09:28.256997', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2595, 'kierstenmiglior', 'sunhuangnhshaw@21cn.com', NULL, 1, '2015-03-18 23:09:28.267112', '2015-03-18 23:09:28.267112', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2596, 'olympiawreyford', 'fushantu@sohu.com', NULL, 1, '2015-03-18 23:09:28.275918', '2015-03-18 23:09:28.275918', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2597, 'maidunmire', 'Hunter_woshiwo6@163.com', NULL, 1, '2015-03-18 23:09:28.285686', '2015-03-18 23:09:28.285686', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2598, 'jinazuziak', 'ninlun4900423350@163.com', NULL, 1, '2015-03-18 23:09:28.296655', '2015-03-18 23:09:28.296655', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2599, 'tamerametenosky', 'youzangcmhhxq@21cn.com', NULL, 1, '2015-03-18 23:09:28.305929', '2015-03-18 23:09:28.305929', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2600, 'danalacio', 'zhangzhaoctfugh@21cn.com', NULL, 1, '2015-03-18 23:09:28.314486', '2015-03-18 23:09:28.314486', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2601, 'erinnbetti', 'qnnmnxge2219@hotmail.com', NULL, 1, '2015-03-18 23:09:28.323096', '2015-03-18 23:09:28.323096', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2602, 'deloisdietzman', 'fantuanbwywav@21cn.com', NULL, 1, '2015-03-18 23:09:28.333004', '2015-03-18 23:09:28.333004', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2603, 'raymondhinsley', 'chenriybrbvy@21cn.com', NULL, 1, '2015-03-18 23:09:28.358949', '2015-03-18 23:09:28.358949', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2604, 'maxineeickhorst', 'pinggua96982293@163.com', NULL, 1, '2015-03-18 23:09:28.369035', '2015-03-18 23:09:28.369035', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2605, 'kevinwillimas', 'shenjuncha@163.com', NULL, 1, '2015-03-18 23:09:28.378263', '2015-03-18 23:09:28.378263', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2606, 'chloeguilmette', 'fsejywgu747@hotmail.com', NULL, 1, '2015-03-18 23:09:28.396085', '2015-03-18 23:09:28.396085', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2607, 'denniserayner', 'tianliu515857832@163.com', NULL, 1, '2015-03-18 23:09:28.404448', '2015-03-18 23:09:28.404448', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2608, 'albertcutchall', 'banyaoshu@sohu.com', NULL, 1, '2015-03-18 23:09:28.414054', '2015-03-18 23:09:28.414054', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2609, 'caraknickelbein', 'yandongnahdwm@21cn.com', NULL, 1, '2015-03-18 23:09:28.423715', '2015-03-18 23:09:28.423715', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2610, 'heikebauers', 'gehanmbbdva@21cn.com', NULL, 1, '2015-03-18 23:09:28.432418', '2015-03-18 23:09:28.432418', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2611, 'halinagannett', 'qianhenmgpnjw@21cn.com', NULL, 1, '2015-03-18 23:09:28.446128', '2015-03-18 23:09:28.446128', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2612, 'manuelashape', 'mpj337457348@163.com', NULL, 1, '2015-03-18 23:09:28.455996', '2015-03-18 23:09:28.455996', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2613, 'dorimcclaine', 'gaaahhcf4336@hotmail.com', NULL, 1, '2015-03-18 23:09:28.465762', '2015-03-18 23:09:28.465762', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2614, 'vertiesien', 'linangvtrauc@21cn.com', NULL, 1, '2015-03-18 23:09:28.475058', '2015-03-18 23:09:28.475058', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2615, 'marquettapiccil', 'yaolingpeng@sohu.com', NULL, 1, '2015-03-18 23:09:28.484215', '2015-03-18 23:09:28.484215', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2616, 'dominquecrosby', 'chennisczrft@21cn.com', NULL, 1, '2015-03-18 23:09:28.497225', '2015-03-18 23:09:28.497225', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2617, 'madelenesimcox', 'oo880179864@163.com', NULL, 1, '2015-03-18 23:09:28.506921', '2015-03-18 23:09:28.506921', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2618, 'piapaduano', 'jiangpeighbnra@21cn.com', NULL, 1, '2015-03-18 23:09:28.516389', '2015-03-18 23:09:28.516389', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2619, 'sherabrodeur', 'pengjiahaodehao13@163.com', NULL, 1, '2015-03-18 23:09:28.525842', '2015-03-18 23:09:28.525842', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2620, 'thedajhonson', 'h_kunranran432@163.com', NULL, 1, '2015-03-18 23:09:28.535079', '2015-03-18 23:09:28.535079', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2621, 'almetamattimoe', 'songlerswbcp@21cn.com', NULL, 1, '2015-03-18 23:09:28.603618', '2015-03-18 23:09:28.603618', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2622, 'maciefipps', 'qxhrkqnv2754@hotmail.com', NULL, 1, '2015-03-18 23:09:28.613239', '2015-03-18 23:09:28.613239', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2623, 'kaneshaamick', 'caowowaajvc@21cn.com', NULL, 1, '2015-03-18 23:09:28.623234', '2015-03-18 23:09:28.623234', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2624, 'charlenadancoes', 'fenqiewsyxrw@21cn.com', NULL, 1, '2015-03-18 23:09:28.634293', '2015-03-18 23:09:28.634293', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2625, 'setsukocorridan', 'jiaojiuxing@sohu.com', NULL, 1, '2015-03-18 23:09:28.646132', '2015-03-18 23:09:28.646132', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2626, 'bettyganz', 'nsb4989495541182@163.com', NULL, 1, '2015-03-18 23:09:28.655724', '2015-03-18 23:09:28.655724', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2627, 'chandahelin', 'yubing20925294@163.com', NULL, 1, '2015-03-18 23:09:28.664847', '2015-03-18 23:09:28.664847', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2628, 'josefaasbell', 'phdwvqqa1738@hotmail.com', NULL, 1, '2015-03-18 23:09:28.674885', '2015-03-18 23:09:28.674885', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2629, 'theacrookshanks', 'jzd41287184339@163.com', NULL, 1, '2015-03-18 23:09:28.684036', '2015-03-18 23:09:28.684036', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2630, 'keeleycresta', 'fanlingkswasu@21cn.com', NULL, 1, '2015-03-18 23:09:28.696091', '2015-03-18 23:09:28.696091', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2631, 'jamesmccutchen', 'hangme0512145257@163.com', NULL, 1, '2015-03-18 23:09:28.705643', '2015-03-18 23:09:28.705643', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2632, 'marcellethurner', 'pancuoawwjxu@21cn.com', NULL, 1, '2015-03-18 23:09:28.714779', '2015-03-18 23:09:28.714779', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2633, 'lorileefleeting', 'aunahamx352@hotmail.com', NULL, 1, '2015-03-18 23:09:28.725202', '2015-03-18 23:09:28.725202', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2634, 'kathesawina', 'wsgpatqa555@hotmail.com', NULL, 1, '2015-03-18 23:09:28.735195', '2015-03-18 23:09:28.735195', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2635, 'leathagerrior', 'zenciwnefya@21cn.com', NULL, 1, '2015-03-18 23:09:28.752165', '2015-03-18 23:09:28.752165', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2636, 'junenenez', 'lufanmnmahr@21cn.com', NULL, 1, '2015-03-18 23:09:28.761500', '2015-03-18 23:09:28.761500', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2637, 'kelliekempel', 'sorrellblew@sohu.com', NULL, 1, '2015-03-18 23:09:28.771336', '2015-03-18 23:09:28.771336', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2638, 'shieladobine', 'zeila539328639@163.com', NULL, 1, '2015-03-18 23:09:28.780726', '2015-03-18 23:09:28.780726', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2639, 'antonettepenkal', 'wengrong62475217@163.com', NULL, 1, '2015-03-18 23:09:28.795244', '2015-03-18 23:09:28.795244', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2640, 'rhiannongiegeri', 'kuaiyong59760506@163.com', NULL, 1, '2015-03-18 23:09:28.805717', '2015-03-18 23:09:28.805717', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2641, 'marvellaolive', 'gaigu22347107224@163.com', NULL, 1, '2015-03-18 23:09:28.815960', '2015-03-18 23:09:28.815960', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2642, 'lauraswoboda', 'aass68696766353@163.com', NULL, 1, '2015-03-18 23:09:28.826118', '2015-03-18 23:09:28.826118', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2643, 'myraderalph', 'daichang532322@163.com', NULL, 1, '2015-03-18 23:09:28.848864', '2015-03-18 23:09:28.848864', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2644, 'vivanpalakiko', 'barnarlawsky@sohu.com', NULL, 1, '2015-03-18 23:09:28.859524', '2015-03-18 23:09:28.859524', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2645, 'mandyfulling', 'buh9015000655824@163.com', NULL, 1, '2015-03-18 23:09:28.869363', '2015-03-18 23:09:28.869363', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2646, 'angelschnautz', 'haoyan08072668130@163.com', NULL, 1, '2015-03-18 23:09:28.879295', '2015-03-18 23:09:28.879295', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2647, 'sherellquist', 'fengjia6882630@163.com', NULL, 1, '2015-03-18 23:09:29.005660', '2015-03-18 23:09:29.005660', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2648, 'angellaspringma', 'zhushouafbcaq@21cn.com', NULL, 1, '2015-03-18 23:09:29.035619', '2015-03-18 23:09:29.035619', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2649, 'franciebagheri', 'ahuan254992965@163.com', NULL, 1, '2015-03-18 23:09:29.062782', '2015-03-18 23:09:29.062782', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2650, 'joselynwanner', 'zhangyunaeyryn@21cn.com', NULL, 1, '2015-03-18 23:09:29.078490', '2015-03-18 23:09:29.078490', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2651, 'kerenmanoogian', 'luoyanxian@sohu.com', NULL, 1, '2015-03-18 23:09:29.087647', '2015-03-18 23:09:29.087647', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2652, 'karymohead', 'mayanan103@163.com', NULL, 1, '2015-03-18 23:09:29.105585', '2015-03-18 23:09:29.105585', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2653, 'alvaminium', 'najiekang@sohu.com', NULL, 1, '2015-03-18 23:09:29.114497', '2015-03-18 23:09:29.114497', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2654, 'annmarieschmaut', 'zhennianguuxyjw@21cn.com', NULL, 1, '2015-03-18 23:09:29.128967', '2015-03-18 23:09:29.128967', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2655, 'iraidadelavina', 'zoumianvejygn@21cn.com', NULL, 1, '2015-03-18 23:09:29.138071', '2015-03-18 23:09:29.138071', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2656, 'nanciewaddle', 'qichenlai@sohu.com', NULL, 1, '2015-03-18 23:09:29.160222', '2015-03-18 23:09:29.160222', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2657, 'cristendussault', 'zanbwrnc624@hotmail.com', NULL, 1, '2015-03-18 23:09:29.179480', '2015-03-18 23:09:29.179480', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2658, 'shavonschuneman', 'dongyangma@sohu.com', NULL, 1, '2015-03-18 23:09:29.190944', '2015-03-18 23:09:29.190944', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2659, 'angeleschwantd', 'mowai166347016@163.com', NULL, 1, '2015-03-18 23:09:29.200372', '2015-03-18 23:09:29.200372', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2660, 'bulahloiselle', 'bdyhdeab1362@hotmail.com', NULL, 1, '2015-03-18 23:09:29.210242', '2015-03-18 23:09:29.210242', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2661, 'priscilacashmer', 'drhjgsdc2289@hotmail.com', NULL, 1, '2015-03-18 23:09:29.228402', '2015-03-18 23:09:29.228402', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2662, 'arthursecond', 'linliuduan@sohu.com', NULL, 1, '2015-03-18 23:09:29.237697', '2015-03-18 23:09:29.237697', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2663, 'waltraudvalerin', 'qdyswmbq8846@hotmail.com', NULL, 1, '2015-03-18 23:09:29.247345', '2015-03-18 23:09:29.247345', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2664, 'janeevantull', 'panuo6647878167@163.com', NULL, 1, '2015-03-18 23:09:29.257663', '2015-03-18 23:09:29.257663', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2665, 'brianapizzi', 'lamoreekaib@sohu.com', NULL, 1, '2015-03-18 23:09:29.267647', '2015-03-18 23:09:29.267647', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2666, 'portiajotblad', 'qpl9359557972651@163.com', NULL, 1, '2015-03-18 23:09:29.277964', '2015-03-18 23:09:29.277964', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2667, 'particiaspyres', 'hezhuadmypca@21cn.com', NULL, 1, '2015-03-18 23:09:29.287174', '2015-03-18 23:09:29.287174', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2668, 'claudinearave', 'yazuo433381463@163.com', NULL, 1, '2015-03-18 23:09:29.297121', '2015-03-18 23:09:29.297121', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2669, 'hortenseskeele', 'chengnou45@163.com', NULL, 1, '2015-03-18 23:09:29.306074', '2015-03-18 23:09:29.306074', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2670, 'nicholeweemes', 'chifenchen@sohu.com', NULL, 1, '2015-03-18 23:09:29.315182', '2015-03-18 23:09:29.315182', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2671, 'Elena', 'el.angeles@gmail.co', NULL, 1, '2015-03-18 23:09:29.330953', '2015-03-18 23:09:29.330953', 'Gatica Gonzalez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2672, 'lazaro', 'lazaromanuelaguilariglesias@yahoo.es', NULL, 1, '2015-03-18 23:09:29.405636', '2015-03-18 23:09:29.405636', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2673, 'Alex', 'alexannic@gmail.com', NULL, 1, '2015-03-18 23:09:29.415898', '2015-03-18 23:09:29.415898', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2674, 'Printlab', 'comunicaciones@printlabdigital.cl', NULL, 1, '2015-03-18 23:09:29.425517', '2015-03-18 23:09:29.425517', 'Digital')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2675, 'Joce', 'jocvangueluc@gmail.com', NULL, 1, '2015-03-18 23:09:29.435299', '2015-03-18 23:09:29.435299', 'Guerrero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2676, 'Maria', 'malena.gogo@gmail.com', NULL, 1, '2015-03-18 23:09:29.462691', '2015-03-18 23:09:29.462691', 'Elena Rdz. López de Lara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2677, 'Florencia', 'florencia.sanchezp@gmail.com', NULL, 1, '2015-03-18 23:09:29.473394', '2015-03-18 23:09:29.473394', 'Sanchez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2678, 'BABA', 'colectivobaba@gmail.com', NULL, 1, '2015-03-18 23:09:29.482988', '2015-03-18 23:09:29.482988', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2679, 'rodrigo', 'ajedrezsanfelipe@gmail.com', NULL, 1, '2015-03-18 23:09:29.492683', '2015-03-18 23:09:29.492683', 'gajardo herrera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2680, 'claudio', 'claudiodelsolar@yahoo.es', NULL, 1, '2015-03-18 23:09:29.511934', '2015-03-18 23:09:29.511934', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2681, 'Roberto', 'robertapablaza@gmail.com', NULL, 1, '2015-03-18 23:09:29.522022', '2015-03-18 23:09:29.522022', 'Apablaza Morales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2682, 'Matias', 'peraltamatias@hotmail.com', NULL, 1, '2015-03-18 23:09:29.585456', '2015-03-18 23:09:29.585456', 'Peralta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2683, 'Robert', 'American.artist76@gmail.com', NULL, 1, '2015-03-18 23:09:29.596410', '2015-03-18 23:09:29.596410', 'Gorman')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2684, 'Bla', 'avhaaster@hotmail.com', NULL, 1, '2015-03-18 23:09:29.608161', '2015-03-18 23:09:29.608161', 'bla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2685, 'Ramiro', 'indeleble_dg@hotmail.com', NULL, 1, '2015-03-18 23:09:29.618359', '2015-03-18 23:09:29.618359', 'Quartz_Lab')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2686, 'Ashley', 'yelhsa_13@live.com', NULL, 1, '2015-03-18 23:09:29.645202', '2015-03-18 23:09:29.645202', 'Toloza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2687, 'Orlando', 'orlandorojasoyarzun@gmail.com', NULL, 1, '2015-03-18 23:09:29.655767', '2015-03-18 23:09:29.655767', 'Rojas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2688, 'Patricia', 'terracotaceramica@yahoo.com', NULL, 1, '2015-03-18 23:09:29.665896', '2015-03-18 23:09:29.665896', 'Martinez A')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2689, 'Alejandra', 'lio.fotoarte@gmail.com', NULL, 1, '2015-03-18 23:09:29.677158', '2015-03-18 23:09:29.677158', 'Rojas Salazar')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2690, 'MARCELO', 'mriveraf@hotmail.com', NULL, 1, '2015-03-18 23:09:29.693538', '2015-03-18 23:09:29.693538', 'RIVERA FUENZALIDA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2691, 'Manuel', 'manuebruit@gmail.com', NULL, 1, '2015-03-18 23:09:29.721536', '2015-03-18 23:09:29.721536', 'Bruit')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2692, 'Alejandra', 'aleda74@hotmail.com', NULL, 1, '2015-03-18 23:09:29.735260', '2015-03-18 23:09:29.735260', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2693, 'KATIA', 'katiamunyoz@gmail.com', NULL, 1, '2015-03-18 23:09:29.746751', '2015-03-18 23:09:29.746751', 'MUÑOZ')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2694, 'Susana', 'Tenepharis@hotmail.com', NULL, 1, '2015-03-18 23:09:29.763389', '2015-03-18 23:09:29.763389', 'Riveros San Martín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2695, 'Aldo', 'fer_ux@hotmail.com', NULL, 1, '2015-03-18 23:09:29.773012', '2015-03-18 23:09:29.773012', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2696, 'FELIPE', 'fegutierb@gmail.com', NULL, 1, '2015-03-18 23:09:29.782293', '2015-03-18 23:09:29.782293', 'ANDRES GUTIERREZ BORIS')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2697, 'Maje', 'majevalenz@gmail.com', NULL, 1, '2015-03-18 23:09:29.794135', '2015-03-18 23:09:29.794135', 'Valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2698, 'María', 'obturadorfotos@gmail.com', NULL, 1, '2015-03-18 23:09:29.803126', '2015-03-18 23:09:29.803126', 'Jesús Valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2699, 'javier', 'ojoahumao@gmail.com', NULL, 1, '2015-03-18 23:09:29.813519', '2015-03-18 23:09:29.813519', 'reta')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2700, 'jhon', 'leni3car@hotmail.com', NULL, 1, '2015-03-18 23:09:29.822945', '2015-03-18 23:09:29.822945', 'edisson rodriguez nuñez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2701, 'Camen', 'pazkku@gmail.com', NULL, 1, '2015-03-18 23:09:29.832053', '2015-03-18 23:09:29.832053', 'Ñancuvil')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2702, 'maría', 'eltallerdemenina@gmail.com', NULL, 1, '2015-03-18 23:09:29.843412', '2015-03-18 23:09:29.843412', 'cristina encina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2703, 'Eduardo', 'strangething@live.cl', NULL, 1, '2015-03-18 23:09:29.852242', '2015-03-18 23:09:29.852242', 'P.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2704, 'luiss', 'x.u.s90@hotmail.com', NULL, 1, '2015-03-18 23:09:29.874981', '2015-03-18 23:09:29.874981', 'lópez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2705, 'Camila', 'ramirezg.camila@gmail.com', NULL, 1, '2015-03-18 23:09:29.893289', '2015-03-18 23:09:29.893289', 'Ramírez G.')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2706, 'Paulina', 'paulcita@gmail.com', NULL, 1, '2015-03-18 23:09:29.903249', '2015-03-18 23:09:29.903249', 'Olguin Espinoza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2707, 'pauline', 'pcristi@manquehue.net', NULL, 1, '2015-03-18 23:09:29.912843', '2015-03-18 23:09:29.912843', 'cristi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2708, 'Trinidad', 'trini_tqr@hotmail.com', NULL, 1, '2015-03-18 23:09:29.934424', '2015-03-18 23:09:29.934424', 'Suárez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2709, 'Gustavo', 'gusrom@gmail.com', NULL, 1, '2015-03-18 23:09:29.978888', '2015-03-18 23:09:29.978888', 'Romano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2710, 'Cyntia', 'cyntiavargasteodoro@gmail.com', NULL, 1, '2015-03-18 23:09:29.994217', '2015-03-18 23:09:29.994217', 'Vargas Teodoro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2711, 'Marlene', 'artistmarjorge@gmail.com', NULL, 1, '2015-03-18 23:09:30.010575', '2015-03-18 23:09:30.010575', 'Jorge')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2712, 'Irene', 'ireneazmi@hotmail.com', NULL, 1, '2015-03-18 23:09:30.024528', '2015-03-18 23:09:30.024528', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2713, 'jaime', 'jsantander77@hotmail.com', NULL, 1, '2015-03-18 23:09:30.037751', '2015-03-18 23:09:30.037751', 'santander')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2714, 'Eduardo', 'eduardotorres@espaciocrea.cl', NULL, 1, '2015-03-18 23:09:30.060670', '2015-03-18 23:09:30.060670', 'Torres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2715, 'efrain', 'paint3c@hotmail.es', NULL, 1, '2015-03-18 23:09:30.075973', '2015-03-18 23:09:30.075973', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2716, 'Cristian', 'cgomez.navarro@yahoo.es', NULL, 1, '2015-03-18 23:09:30.085327', '2015-03-18 23:09:30.085327', 'Gómez Navarro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2717, 'luis', 'babycalbillo@hotmail.com', NULL, 1, '2015-03-18 23:09:30.094069', '2015-03-18 23:09:30.094069', 'castanedo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2718, 'a', 'e.humus@hotmail.es', NULL, 1, '2015-03-18 23:09:30.103657', '2015-03-18 23:09:30.103657', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2719, 'Sara', 'sara.vergara.q@gmail.com', NULL, 1, '2015-03-18 23:09:30.113681', '2015-03-18 23:09:30.113681', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2720, 'Maria', 'florloewenta@yahoo.com', NULL, 1, '2015-03-18 23:09:30.134624', '2015-03-18 23:09:30.134624', 'viggiano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2721, 'Patricia', 'patriciakich@hotmail.com', NULL, 1, '2015-03-18 23:09:30.144749', '2015-03-18 23:09:30.144749', 'Cerón')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2722, 'jose', 'josenicolas.reyes@gmail.com', NULL, 1, '2015-03-18 23:09:30.161604', '2015-03-18 23:09:30.161604', 'reyes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2723, 'Javier', 'javierlewin@gmail.com', NULL, 1, '2015-03-18 23:09:30.176768', '2015-03-18 23:09:30.176768', 'Lewin')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2724, 'Cristian', 'clehuede@yahoo.com', NULL, 1, '2015-03-18 23:09:30.188099', '2015-03-18 23:09:30.188099', 'Lehuede')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2725, 'Valeria', 'fb.valeria@gmail.com', NULL, 1, '2015-03-18 23:09:30.211719', '2015-03-18 23:09:30.211719', 'Faúndez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2726, 'María', 'ma.paz.araya@gmail.com', NULL, 1, '2015-03-18 23:09:30.230246', '2015-03-18 23:09:30.230246', 'Paz Araya Aguirre')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2727, 'Marvilla', 'feromavi@yahoo.es', NULL, 1, '2015-03-18 23:09:30.255734', '2015-03-18 23:09:30.255734', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2728, 'monica', 'yrarrazaval@gmail.com', NULL, 1, '2015-03-18 23:09:30.270509', '2015-03-18 23:09:30.270509', 'irarrazaval')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2729, 'Carla', 'Carlichucknorris@hotmail.com', NULL, 1, '2015-03-18 23:09:30.281532', '2015-03-18 23:09:30.281532', 'Safie')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2730, 'Cecilia', 'cecilain@gmail.com', NULL, 1, '2015-03-18 23:09:30.291621', '2015-03-18 23:09:30.291621', 'Luvecce Rouvrais')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2731, 'Emilio', 'emilio.fuentes.traverso@gmail.com', NULL, 1, '2015-03-18 23:09:30.404993', '2015-03-18 23:09:30.404993', 'Fuentes Traverso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2732, 'Guillermo', 'gafus@hotmail.com', NULL, 1, '2015-03-18 23:09:30.414590', '2015-03-18 23:09:30.414590', 'de Torres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2733, 'AUGUSTO', 'bussearte@busse.com.ar', NULL, 1, '2015-03-18 23:09:30.424056', '2015-03-18 23:09:30.424056', 'BUSSE')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2734, 'Guillermo', 'guillermoperezsantos@gmail.com', NULL, 1, '2015-03-18 23:09:30.433230', '2015-03-18 23:09:30.433230', 'Perez Santos')  (0.2ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2735, 'Estefania', 'exoticamericana@gmail.com', NULL, 1, '2015-03-18 23:09:30.442868', '2015-03-18 23:09:30.442868', 'Irrazabal Del Castro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2736, 'evelyn', 'dinobuba@gmail.com', NULL, 1, '2015-03-18 23:09:30.459027', '2015-03-18 23:09:30.459027', 'acuña acuña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2737, 'Inka', 'otromaildenuevo@gmail.com', NULL, 1, '2015-03-18 23:09:30.468788', '2015-03-18 23:09:30.468788', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2738, 'Sebastian', 'nicojaramillo@hotmail.es', NULL, 1, '2015-03-18 23:09:30.477936', '2015-03-18 23:09:30.477936', 'Jaramillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2739, 'fernando', 'fgrafico@hispavista.com', NULL, 1, '2015-03-18 23:09:30.487410', '2015-03-18 23:09:30.487410', 'gatica gutierrez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2740, 'helmut', 'hffreiburg@aol.com', NULL, 1, '2015-03-18 23:09:30.497400', '2015-03-18 23:09:30.497400', 'friedrich')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2741, 'Bernardita', 'bernarditacastillo@gmail.com', NULL, 1, '2015-03-18 23:09:30.509328', '2015-03-18 23:09:30.509328', 'Castillo Montt')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2742, 'paula', 'paulayaime2009@hotmail.com', NULL, 1, '2015-03-18 23:09:30.518944', '2015-03-18 23:09:30.518944', 'tolosa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2743, 'Paula', 'borartemagico@gmail.com', NULL, 1, '2015-03-18 23:09:30.528233', '2015-03-18 23:09:30.528233', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2744, 'Katherine', 'supnem@gmail.com', NULL, 1, '2015-03-18 23:09:30.538334', '2015-03-18 23:09:30.538334', 'Supnem')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2745, 'Patricio', 'hibris1@hotmail.com', NULL, 1, '2015-03-18 23:09:31.267346', '2015-03-18 23:09:31.267346', 'Paretti')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2746, 'Agnes', 'agnesgonzalezlagos@hotmail.com', NULL, 1, '2015-03-18 23:09:31.337222', '2015-03-18 23:09:31.337222', 'González-Lagos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2747, 'Miguel', 'mijail.cioran@gmail.com', NULL, 1, '2015-03-18 23:09:31.347882', '2015-03-18 23:09:31.347882', 'Angel Lander')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2748, 'ignacio', 'ignacio.micheli@gmail.com', NULL, 1, '2015-03-18 23:09:31.359144', '2015-03-18 23:09:31.359144', 'micheli')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2749, 'LISSETTE', 'lissetteruiz005@gmail.com', NULL, 1, '2015-03-18 23:09:31.368694', '2015-03-18 23:09:31.368694', 'RUIZ ARAVENA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2750, 'Maca', 'makita_1410@hotmail.com', NULL, 1, '2015-03-18 23:09:31.390279', '2015-03-18 23:09:31.390279', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2751, 'Pedro', 'artpower.cl@gmail.com', NULL, 1, '2015-03-18 23:09:31.401303', '2015-03-18 23:09:31.401303', 'Asalgado Verdugo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2752, 'santiago', 'cantaritomix@hotmail.com', NULL, 1, '2015-03-18 23:09:31.411663', '2015-03-18 23:09:31.411663', 'mendez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2753, 'Denise', 'ddourojeanni@hotmail.com', NULL, 1, '2015-03-18 23:09:31.421557', '2015-03-18 23:09:31.421557', 'Dourojeanni')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2754, 'José', 'josemoni@hotmail.com', NULL, 1, '2015-03-18 23:09:31.439249', '2015-03-18 23:09:31.439249', 'Moni')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2755, 'adrian', 'texacoal@hotmail.com', NULL, 1, '2015-03-18 23:09:31.448663', '2015-03-18 23:09:31.448663', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2756, 'alfonso', 'amaggiolo@hotmail.es', NULL, 1, '2015-03-18 23:09:31.457936', '2015-03-18 23:09:31.457936', 'maggiolo peirano')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2757, 'Comunicación', 'enapcomunicacionsocial@gmail.com', NULL, 1, '2015-03-18 23:09:31.536858', '2015-03-18 23:09:31.536858', 'Social ENAP')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2758, 'MIRTHA', 'mirtha.almada59@gmail.com', NULL, 1, '2015-03-18 23:09:31.546916', '2015-03-18 23:09:31.546916', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2759, 'Aivars', 'a.mangulis@gmail.com', NULL, 1, '2015-03-18 23:09:31.555838', '2015-03-18 23:09:31.555838', 'Mangulis')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2760, 'LOL', 'lolkincast@gmail.com', NULL, 1, '2015-03-18 23:09:31.565404', '2015-03-18 23:09:31.565404', 'KIN CASTAÑEDA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2761, 'emilio', 'emiliodessin@gmail.com', NULL, 1, '2015-03-18 23:09:31.589825', '2015-03-18 23:09:31.589825', 'losada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2762, 'Carlos', 'elextranjerosefue@gmail.com', NULL, 1, '2015-03-18 23:09:31.599428', '2015-03-18 23:09:31.599428', 'Eduardo Meneses')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2763, 'samuel', 'samuel@cenfoto.cl', NULL, 1, '2015-03-18 23:09:31.608422', '2015-03-18 23:09:31.608422', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2764, 'Hagop', 'hagop2404@gmail.com', NULL, 1, '2015-03-18 23:09:31.634687', '2015-03-18 23:09:31.634687', 'Der Hagopian')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2765, 'Carlos', 'andradesilva_carlos@hotmail.com', NULL, 1, '2015-03-18 23:09:31.644437', '2015-03-18 23:09:31.644437', 'Andrade Silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2766, 'Pia', 'piabahamondes@gmail.com', NULL, 1, '2015-03-18 23:09:31.653560', '2015-03-18 23:09:31.653560', 'Bahamondes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2767, 'Jacqueline', 'jakicharru@hotmail.com', NULL, 1, '2015-03-18 23:09:31.663036', '2015-03-18 23:09:31.663036', 'Charrua')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2768, 'Nicolás', 'os.nico@hotmail.com', NULL, 1, '2015-03-18 23:09:31.672805', '2015-03-18 23:09:31.672805', 'O. Sardá')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2769, 'Luis', 'luis.augusto.u@gmail.com', NULL, 1, '2015-03-18 23:09:31.688796', '2015-03-18 23:09:31.688796', 'Augusto')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2770, 'Javier', 'javier_cluzet@yahoo.com', NULL, 1, '2015-03-18 23:09:31.698809', '2015-03-18 23:09:31.698809', 'Cluzet')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2771, 'javier', 'jhaeger1@hotmail.com', NULL, 1, '2015-03-18 23:09:31.707368', '2015-03-18 23:09:31.707368', 'haeger')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2772, 'Cesareo', 'ca_yn@yahoo.com', NULL, 1, '2015-03-18 23:09:31.716640', '2015-03-18 23:09:31.716640', 'Young')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2773, 'Andrea', 'andreiandreina@gmail.com', NULL, 1, '2015-03-18 23:09:31.725983', '2015-03-18 23:09:31.725983', 'Fuentealba')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2774, 'Carolina', 'carolina.busquets@gmail.com', NULL, 1, '2015-03-18 23:09:31.738425', '2015-03-18 23:09:31.738425', 'Busquets')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2775, 'Nené', 'miriandrealoyolap@gmail.com', NULL, 1, '2015-03-18 23:09:31.747722', '2015-03-18 23:09:31.747722', 'Loy')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2776, 'Danai', 'danaimirka@gmail.com', NULL, 1, '2015-03-18 23:09:31.756414', '2015-03-18 23:09:31.756414', 'Ortiz de Zárate Vicuña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2777, 'Lorena', 'lorenacmc@gmail.com', NULL, 1, '2015-03-18 23:09:31.765866', '2015-03-18 23:09:31.765866', 'Moraga Correa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2778, 'Paula', 'Paula.morales@live.cl', NULL, 1, '2015-03-18 23:09:31.774961', '2015-03-18 23:09:31.774961', 'Morales')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2779, 'margarita', 'margaritaval@gmail.com', NULL, 1, '2015-03-18 23:09:31.789339', '2015-03-18 23:09:31.789339', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2780, 'JORGE', 'jvargasvillicana@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:31.798486', '2015-03-18 23:09:31.798486', 'VARGAS VILLICAÑA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2781, 'Carmen', 'pazytae@yahoo.es', NULL, 1, '2015-03-18 23:09:31.808247', '2015-03-18 23:09:31.808247', 'Ñancuvil')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2782, 'Pamela', 'escuela@pameladelafuente.cl', NULL, 1, '2015-03-18 23:09:31.817620', '2015-03-18 23:09:31.817620', 'de la Fuente')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2783, 'Juan', 'jbvenega@puc.cl', NULL, 1, '2015-03-18 23:09:31.826870', '2015-03-18 23:09:31.826870', 'Pablo Venegas Inostroza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2784, 'Mariángeles', 'mvvega1@uc.cl', NULL, 1, '2015-03-18 23:09:31.839222', '2015-03-18 23:09:31.839222', 'Vega Rebolledo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2785, 'Roberto', 'atarnacer@yahoo.es', NULL, 1, '2015-03-18 23:09:31.849000', '2015-03-18 23:09:31.849000', 'Pari Vela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2786, 'Alma', 'kizunarhcp@hotmail.com', NULL, 1, '2015-03-18 23:09:31.859169', '2015-03-18 23:09:31.859169', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2787, 'Alejandra', 'aledil555@hotmail.com', NULL, 1, '2015-03-18 23:09:31.878472', '2015-03-18 23:09:31.878472', 'Ferrari')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2788, 'mauricio', 'mauricioverde@gmail.com', NULL, 1, '2015-03-18 23:09:31.889158', '2015-03-18 23:09:31.889158', 'verde')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2789, 'Miguel', 'edarel256@gmail.com', NULL, 1, '2015-03-18 23:09:31.898334', '2015-03-18 23:09:31.898334', 'Ángel Cortés Vidal')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2790, 'Carla', 'perroconcostilla@gmail.com', NULL, 1, '2015-03-18 23:09:31.908304', '2015-03-18 23:09:31.908304', 'Tortul')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2791, 'sancheztami@gmail.com', 'sancheztami@gmail.com', NULL, 1, '2015-03-18 23:09:31.917611', '2015-03-18 23:09:31.917611', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2792, 'Gonzalo', 'gonzabar12@gmail.com', NULL, 1, '2015-03-18 23:09:31.927447', '2015-03-18 23:09:31.927447', 'González Barreiro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2793, 'Francisco', 'ruizfrancisco095@gmail.com', NULL, 1, '2015-03-18 23:09:31.939562', '2015-03-18 23:09:31.939562', 'Ruiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2794, 'FRANCISCO', 'velosoferrari@gmail.com', NULL, 1, '2015-03-18 23:09:31.952498', '2015-03-18 23:09:31.952498', 'VELOSO FERRARI')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2795, 'Mario', 'abarcasolari@gmail.com', NULL, 1, '2015-03-18 23:09:31.962353', '2015-03-18 23:09:31.962353', 'Abarca Solari')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2796, 'Macarena', 'macarenadaniela@gmail.com', NULL, 1, '2015-03-18 23:09:31.973047', '2015-03-18 23:09:31.973047', 'Castillo Puigrredon')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2797, 'Stephanie', 'pepiniplop@gmail.com', NULL, 1, '2015-03-18 23:09:31.989800', '2015-03-18 23:09:31.989800', 'Michelle Stifel Caica')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2798, 'Ingrid', 'ingridbork@gmail.com', NULL, 1, '2015-03-18 23:09:32.002413', '2015-03-18 23:09:32.002413', 'Bork')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2799, 'Karin', 'khelmlinger@ccs.cl', NULL, 1, '2015-03-18 23:09:32.012877', '2015-03-18 23:09:32.012877', 'Helmlinger')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2800, 'José', 'jose.millapan@gmail.com', NULL, 1, '2015-03-18 23:09:32.022763', '2015-03-18 23:09:32.022763', 'Millapán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2801, 'Martin', 'mbordenave@intv.com.ar', NULL, 1, '2015-03-18 23:09:32.039430', '2015-03-18 23:09:32.039430', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2802, 'Francisco', 'fco.villarroel.f@gmail.com', NULL, 1, '2015-03-18 23:09:32.052959', '2015-03-18 23:09:32.052959', 'Villarroel')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2803, 'Felipe', 'fba1938@gmail.com', NULL, 1, '2015-03-18 23:09:32.081010', '2015-03-18 23:09:32.081010', 'Barriga Alliende')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2804, 'cristian', 'cristianfernandezarq@gmail.com', NULL, 1, '2015-03-18 23:09:32.092464', '2015-03-18 23:09:32.092464', 'fernandez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2805, 'Josefina', 'vrjosefina@gmail.com', NULL, 1, '2015-03-18 23:09:32.103108', '2015-03-18 23:09:32.103108', 'Valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2806, 'Genesis', 'gperezneriz@gmail.com', NULL, 1, '2015-03-18 23:09:32.112425', '2015-03-18 23:09:32.112425', 'Victoria Perez Neriz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2807, 'Bnjamin', 'artbnjamin@gmail.com', NULL, 1, '2015-03-18 23:09:32.122522', '2015-03-18 23:09:32.122522', 'Donoso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2808, 'Francisca', 'francisca.espina@hotmail.com', NULL, 1, '2015-03-18 23:09:32.137847', '2015-03-18 23:09:32.137847', 'Espina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2809, 'Andrés', 'andrespera16@hotmail.com', NULL, 1, '2015-03-18 23:09:32.148031', '2015-03-18 23:09:32.148031', 'Pérez Arenzana')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2810, 'luis_canuto', 'kyu_7@msn.com', NULL, 1, '2015-03-18 23:09:32.157093', '2015-03-18 23:09:32.157093', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2811, 'Maria', 'mptb45@yahoo.es', NULL, 1, '2015-03-18 23:09:32.167635', '2015-03-18 23:09:32.167635', 'Paz Tapia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2812, 'Orlando', 'orlandojesus7@gmail.com', NULL, 1, '2015-03-18 23:09:32.188450', '2015-03-18 23:09:32.188450', 'Jesus Tapia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2813, 'Claudio', 'ccofre@gmail.com', NULL, 1, '2015-03-18 23:09:32.198729', '2015-03-18 23:09:32.198729', 'Cofré Flores')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2814, 'Pamela', 'pamela.artetextil@gmail.com', NULL, 1, '2015-03-18 23:09:32.208898', '2015-03-18 23:09:32.208898', 'Illanes Silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2815, 'Cristián', 'penasagua@gmail.com', NULL, 1, '2015-03-18 23:09:32.219685', '2015-03-18 23:09:32.219685', 'Peña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2816, 'Andres', 'andressancarlos@gmail.con', NULL, 1, '2015-03-18 23:09:32.237252', '2015-03-18 23:09:32.237252', 'san carlos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2817, 'Jorge', 'jorge_quant@yahoo.com', NULL, 1, '2015-03-18 23:09:32.247345', '2015-03-18 23:09:32.247345', 'Quant')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2818, 'eliseo', 'eliiseo.sp@gmail.com', NULL, 1, '2015-03-18 23:09:32.256789', '2015-03-18 23:09:32.256789', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2819, 'María', 'maria.sanzg@gmail.com', NULL, 1, '2015-03-18 23:09:32.287127', '2015-03-18 23:09:32.287127', 'Sanz-Guerrero Cosulich')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2820, 'Nibaldo', 'undosclik@gmail.com', NULL, 1, '2015-03-18 23:09:32.296666', '2015-03-18 23:09:32.296666', 'Guerra Figueroa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2821, 'Educación', 'educacioncontinua.arte@uc.cl', NULL, 1, '2015-03-18 23:09:32.307038', '2015-03-18 23:09:32.307038', 'Continua Arte UC')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2822, 'Constanza', 'constanzada@gmail.com', NULL, 1, '2015-03-18 23:09:32.316783', '2015-03-18 23:09:32.316783', 'Quioza')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2823, 'JOSE', 'ERPOLLOSK8@HOTMAIL.COM', NULL, 1, '2015-03-18 23:09:32.326462', '2015-03-18 23:09:32.326462', 'ENMANUEL SEQUERA')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2824, 'hugo', 'hugopenavargas@gmail.com', NULL, 1, '2015-03-18 23:09:32.337497', '2015-03-18 23:09:32.337497', 'peña vargas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2825, 'Ricardo', 'ricardodonoso.m@gmail.com', NULL, 1, '2015-03-18 23:09:32.348449', '2015-03-18 23:09:32.348449', 'Donoso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2826, 'nuria', 'nuriar.2009@gmail.com', NULL, 1, '2015-03-18 23:09:32.361199', '2015-03-18 23:09:32.361199', 'ruiz navarro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2827, 'Josefa', 'josefa.espinosa.henriquez@gmail.com', NULL, 1, '2015-03-18 23:09:32.371876', '2015-03-18 23:09:32.371876', 'Espinosa Henríquez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2828, 'Doris', 'rosales.azulmagenta@gmail.com', NULL, 1, '2015-03-18 23:09:32.391099', '2015-03-18 23:09:32.391099', 'Rosales Ramos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2829, 'ana', 'avidelalira@yahoo.com', NULL, 1, '2015-03-18 23:09:32.418362', '2015-03-18 23:09:32.418362', 'videla')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2830, 'Antonio', 'antonio_desant_art@hotmail.com', NULL, 1, '2015-03-18 23:09:32.438880', '2015-03-18 23:09:32.438880', 'Fink Desant')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2831, 'Fabián', 'fnarvaezcruz@gmail.com', NULL, 1, '2015-03-18 23:09:32.449306', '2015-03-18 23:09:32.449306', 'Narváez Cruz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2832, 'Maca', 'arte@macawall.com', NULL, 1, '2015-03-18 23:09:32.459648', '2015-03-18 23:09:32.459648', 'Wall')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2833, 'lydia', 'redelico@msn.com', NULL, 1, '2015-03-18 23:09:32.795023', '2015-03-18 23:09:32.795023', 'redelico')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2834, 'monica', 'hichia_7@hotmail.com', NULL, 1, '2015-03-18 23:09:32.806774', '2015-03-18 23:09:32.806774', 'salcedo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2835, 'Anyelo', 'anyelogonzalez1@gmail.com', NULL, 1, '2015-03-18 23:09:32.816960', '2015-03-18 23:09:32.816960', 'Gonzalez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2836, 'camila', 'kmyvalenzuela@gmail.com', NULL, 1, '2015-03-18 23:09:32.827724', '2015-03-18 23:09:32.827724', 'valenzuela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2837, 'Rodrigo', 'rorrosilver@gmail.com', NULL, 1, '2015-03-18 23:09:33.304046', '2015-03-18 23:09:33.304046', 'Silver')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2838, 'Adrián', 'adrian.castillosq@gmail.com', NULL, 1, '2015-03-18 23:09:33.382514', '2015-03-18 23:09:33.382514', 'Castillos Quintela')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2839, 'Jose', 'jotasmt@hotmail.com', NULL, 1, '2015-03-18 23:09:33.393161', '2015-03-18 23:09:33.393161', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2840, 'María', 'xim.silva@hotmail.com', NULL, 1, '2015-03-18 23:09:33.402532', '2015-03-18 23:09:33.402532', 'Ximena Silva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2841, 'Maria', 'mariagraciabisso@gmail.com', NULL, 1, '2015-03-18 23:09:33.411572', '2015-03-18 23:09:33.411572', 'Gracia Bisso')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2842, 'nicolas', 'sastre49@hotmail.com', NULL, 1, '2015-03-18 23:09:33.420163', '2015-03-18 23:09:33.420163', 'sartori')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2843, 'By3nz', 'unmardehistoria@gmail.com', NULL, 1, '2015-03-18 23:09:33.433838', '2015-03-18 23:09:33.433838', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2844, 'Manuel', 'creacionestany@terra.com', NULL, 1, '2015-03-18 23:09:33.443186', '2015-03-18 23:09:33.443186', 'Farfan Suarez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2845, 'sebastián', 'sebastiangilm@hotmail.com', NULL, 1, '2015-03-18 23:09:33.462565', '2015-03-18 23:09:33.462565', 'gil muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2846, 'Paloma', 'contacto@palomagomez.net', NULL, 1, '2015-03-18 23:09:33.472753', '2015-03-18 23:09:33.472753', 'Gómez Carrasco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2847, 'Noemi', 'noemitannaka@hotmail.com', NULL, 1, '2015-03-18 23:09:33.485541', '2015-03-18 23:09:33.485541', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2848, 'PABLO', 'pablonuch@gmail.com', NULL, 1, '2015-03-18 23:09:33.510350', '2015-03-18 23:09:33.510350', 'NUCH')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2849, 'magali', 'amali94@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:33.520740', '2015-03-18 23:09:33.520740', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2850, 'Charlie', 'chnunezcruz@gmail.com', NULL, 1, '2015-03-18 23:09:33.534561', '2015-03-18 23:09:33.534561', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2851, 'Felipe', 'felipe.mardonesh@gmail.com', NULL, 1, '2015-03-18 23:09:33.544874', '2015-03-18 23:09:33.544874', 'Mardones')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2852, 'Gabriel', 'gabriel.holzapfel@gmail.com', NULL, 1, '2015-03-18 23:09:33.554401', '2015-03-18 23:09:33.554401', 'Holzapfel Mancini')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2853, 'Alim', 'alim.ampuero@gmail.com', NULL, 1, '2015-03-18 23:09:33.565076', '2015-03-18 23:09:33.565076', 'AMPUERO')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2854, 'residencia', 'residenciatactica@gmail.com', NULL, 1, '2015-03-18 23:09:33.585351', '2015-03-18 23:09:33.585351', 'táctica')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2855, 'HugoProaño', 'hugoproao@yahoo.com', NULL, 1, '2015-03-18 23:09:33.596153', '2015-03-18 23:09:33.596153', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2856, 'Francisco', 'francisco.s.jara@gmail.com', NULL, 1, '2015-03-18 23:09:33.606336', '2015-03-18 23:09:33.606336', 'Salgado Jara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2857, 'Olman', 'Olma.n53@hotmail.com', NULL, 1, '2015-03-18 23:09:33.617254', '2015-03-18 23:09:33.617254', 'Cruz Rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2858, 'jose', 'olmmarta@gmail.com', NULL, 1, '2015-03-18 23:09:33.633503', '2015-03-18 23:09:33.633503', 'cruz rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2859, 'cristina', 'pacheco-art@hotmail.com', NULL, 1, '2015-03-18 23:09:33.645124', '2015-03-18 23:09:33.645124', 'pacheco campillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2860, 'Peter', 'petguego@gmail.com', NULL, 1, '2015-03-18 23:09:33.662488', '2015-03-18 23:09:33.662488', 'Guerrero')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2861, 'aune', 'anita.merendina@gmail.com', NULL, 1, '2015-03-18 23:09:33.672805', '2015-03-18 23:09:33.672805', 'ainson')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2862, 'pedro', 'pedoosoriop@hotmail.com', NULL, 1, '2015-03-18 23:09:33.684422', '2015-03-18 23:09:33.684422', 'osorio')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2863, 'danila', 'danilailabaca@gmail.com', NULL, 1, '2015-03-18 23:09:33.693657', '2015-03-18 23:09:33.693657', 'ilabaca argandoña')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2864, 'jorge', 'artrodriguezdei@hotmail.com', NULL, 1, '2015-03-18 23:09:33.702999', '2015-03-18 23:09:33.702999', 'rodriguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2865, 'Javier', 'javieron9@gmail.com', NULL, 1, '2015-03-18 23:09:33.712698', '2015-03-18 23:09:33.712698', 'Calquín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2866, 'María', 'mary.mor4@gmail.com', NULL, 1, '2015-03-18 23:09:33.721424', '2015-03-18 23:09:33.721424', 'Teresa Morales Díaz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2867, 'camila', 'camilahortensia@gmail.com', NULL, 1, '2015-03-18 23:09:33.734286', '2015-03-18 23:09:33.734286', 'hortensia prieto collado')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2868, 'Lu', 'caminodeldia@gmail.com', NULL, 1, '2015-03-18 23:09:33.748972', '2015-03-18 23:09:33.748972', 'Robles')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2869, 'Roberto', 'roberth_moon@hotmail.com', NULL, 1, '2015-03-18 23:09:33.763997', '2015-03-18 23:09:33.763997', 'Aranibar Luna')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2870, 'Maria', 'consttanza@live.com', NULL, 1, '2015-03-18 23:09:33.783522', '2015-03-18 23:09:33.783522', 'Constanza Arriagada Neira')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2871, 'Elías', 'elicofra@yahoo.com', NULL, 1, '2015-03-18 23:09:33.793143', '2015-03-18 23:09:33.793143', 'Sánchez Torres')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2872, 'Rodríguez', 'irodriguezmarconi@gmail.com', NULL, 1, '2015-03-18 23:09:33.803325', '2015-03-18 23:09:33.803325', 'Marconi')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2873, 'Valeria', 'valeria.viancos@gmail.com', NULL, 1, '2015-03-18 23:09:33.813219', '2015-03-18 23:09:33.813219', 'Viancos')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2874, 'Элисо', 'eliso_n@mail.ru', NULL, 1, '2015-03-18 23:09:33.823213', '2015-03-18 23:09:33.823213', 'Накопия')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2875, 'Jaime', 'mendozaseminario@hotmail.com', NULL, 1, '2015-03-18 23:09:33.833923', '2015-03-18 23:09:33.833923', 'Mendoza Seminario')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2876, 'David', 'davidcofre@gmail.com', NULL, 1, '2015-03-18 23:09:33.843429', '2015-03-18 23:09:33.843429', 'Cofre E')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2877, 'Pedro', 'pedrofermin.arte@gmail.com', NULL, 1, '2015-03-18 23:09:33.854043', '2015-03-18 23:09:33.854043', 'Fermín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2878, 'marcos', 'marcos.palacios77@gmail.com', NULL, 1, '2015-03-18 23:09:33.864524', '2015-03-18 23:09:33.864524', 'palacios')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2879, 'Macarena', 'macasanchezm@gmail.com', NULL, 1, '2015-03-18 23:09:33.883267', '2015-03-18 23:09:33.883267', 'Sánchez Mortenson')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2880, 'Celeste', 'celesteortich@gmail.com', NULL, 1, '2015-03-18 23:09:33.906877', '2015-03-18 23:09:33.906877', 'Ortiz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2881, 'Natalia', 'ramirezv.natalia@gmail.com', NULL, 1, '2015-03-18 23:09:33.917844', '2015-03-18 23:09:33.917844', 'Ramírez Vergara')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2882, 'Elisabet', 'elisabet.genoveva@gmail.com', NULL, 1, '2015-03-18 23:09:33.933469', '2015-03-18 23:09:33.933469', 'Genoveva')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2883, 'Andres Francisco', 'andres.matusantis@gmail.com', NULL, 1, '2015-03-18 23:09:33.943595', '2015-03-18 23:09:33.943595', ' Maturana Santis')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2884, 'Pia', 'pihita.inzunza@gmail.com', NULL, 1, '2015-03-18 23:09:34.055609', '2015-03-18 23:09:34.055609', 'Inzunza Cerda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2885, 'Jose', 'jm.gonzalez.farias@gmail.com', NULL, 1, '2015-03-18 23:09:34.066444', '2015-03-18 23:09:34.066444', 'Martin Gonzalez Farias')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2886, 'mrelmarc', 'cenzhandyeg@sogou.com', NULL, 1, '2015-03-18 23:09:34.076226', '2015-03-18 23:09:34.076226', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2887, 'Julian', 'julianfarias_22@hotmail.com', NULL, 1, '2015-03-18 23:09:34.086147', '2015-03-18 23:09:34.086147', 'Farias')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2888, 'Sebastian', 'seba.calfuqueo@gmail.com', NULL, 1, '2015-03-18 23:09:34.116511', '2015-03-18 23:09:34.116511', 'Calfuqueo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2889, 'MarMel', 'tonmarmel@hotmail.com', NULL, 1, '2015-03-18 23:09:34.128132', '2015-03-18 23:09:34.128132', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2890, 'Natalia', 'natahuidobro@gmail.com', NULL, 1, '2015-03-18 23:09:34.138028', '2015-03-18 23:09:34.138028', 'Huidobro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2891, 'daniel', 'danielgallardo@hotmail.com', NULL, 1, '2015-03-18 23:09:34.148188', '2015-03-18 23:09:34.148188', 'gallardo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2892, 'julio', 'juliopinzon2014@hotmail.com', NULL, 1, '2015-03-18 23:09:34.166282', '2015-03-18 23:09:34.166282', 'pinzón')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2893, 'cristóbal', 'eyefocus75@gmail.com', NULL, 1, '2015-03-18 23:09:34.175854', '2015-03-18 23:09:34.175854', 'pérez calvo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2894, 'Simón', 'sbrojas@uc.cl', NULL, 1, '2015-03-18 23:09:34.184815', '2015-03-18 23:09:34.184815', 'Rojas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2895, 'Mariana', 'marianamarciana@gmail.com', NULL, 1, '2015-03-18 23:09:34.195043', '2015-03-18 23:09:34.195043', 'Guzmán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2896, 'Mabel', 'info@mmontes.com.ar', NULL, 1, '2015-03-18 23:09:34.205044', '2015-03-18 23:09:34.205044', 'Montes')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2897, 'tan', 'tanvargas@gmail.com', NULL, 1, '2015-03-18 23:09:34.216330', '2015-03-18 23:09:34.216330', 'vargas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2898, 'Javiera', 'javieravalenciaarenas@gmail.com', NULL, 1, '2015-03-18 23:09:34.227743', '2015-03-18 23:09:34.227743', 'Valencia Arenas')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2899, 'Eduardo', 'efeuerhake@gmail.com', NULL, 1, '2015-03-18 23:09:34.236896', '2015-03-18 23:09:34.236896', 'Feuerhake')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2900, 'Francisca', 'fran.infante@live.com', NULL, 1, '2015-03-18 23:09:34.247651', '2015-03-18 23:09:34.247651', 'Infante')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2901, 'Clara', 'claralarrainz@gmail.com', NULL, 1, '2015-03-18 23:09:34.266647', '2015-03-18 23:09:34.266647', 'Larraín')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2902, 'Neto', 'ricardolagosmiranda@gmail.com', NULL, 1, '2015-03-18 23:09:34.275877', '2015-03-18 23:09:34.275877', '')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2903, 'maria', 'mtwilliamslisboa@gmail.com', NULL, 1, '2015-03-18 23:09:34.284865', '2015-03-18 23:09:34.284865', 'teresa williams')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2904, 'Nicolas', 'nicolasrico1@gmail.com', NULL, 1, '2015-03-18 23:09:34.295383', '2015-03-18 23:09:34.295383', 'Rico Castro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2905, 'Angel', 'blirusa@yahoo.es', NULL, 1, '2015-03-18 23:09:34.495436', '2015-03-18 23:09:34.495436', 'Blanco')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2906, 'Juan', 'juanmsandin@gmail.com', NULL, 1, '2015-03-18 23:09:34.505559', '2015-03-18 23:09:34.505559', 'Manuel Sandin Espada')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2907, 'Miguel', 'elmigue.contacto@gmail.com', NULL, 1, '2015-03-18 23:09:34.515114', '2015-03-18 23:09:34.515114', 'Ríos Peters')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2908, 'Ete', 'mendoquino@gmail.com', NULL, 1, '2015-03-18 23:09:34.526098', '2015-03-18 23:09:34.526098', 'Mendoquino')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2909, 'Jovita ', 'jovisandoval@gmail.com', NULL, 1, '2015-03-18 23:09:34.550499', '2015-03-18 23:09:34.550499', 'Sandoval')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2910, 'ailine', 'luzailine33@gmail.com', NULL, 1, '2015-03-18 23:09:34.560522', '2015-03-18 23:09:34.560522', 'encina')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2911, 'Leopoldo', 'leopinturas@hotmail.com', NULL, 1, '2015-03-18 23:09:34.570511', '2015-03-18 23:09:34.570511', 'Sosa')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2912, 'Kenji', 'kenji.senda.ferrando@gmail.com', NULL, 1, '2015-03-18 23:09:34.580766', '2015-03-18 23:09:34.580766', 'Senda')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2913, 'Mario', 'mario.morales.astudillo@hotmail.com', NULL, 1, '2015-03-18 23:09:34.602551', '2015-03-18 23:09:34.602551', 'Morales Astudillo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2914, 'Giana ', 'gianadedier@gmail.com', NULL, 1, '2015-03-18 23:09:34.632673', '2015-03-18 23:09:34.632673', 'De DIer')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2915, 'Sebastian', 'sebastianlartigue@gmail.com', NULL, 1, '2015-03-18 23:09:34.648699', '2015-03-18 23:09:34.648699', 'Lartigue')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2916, 'miguel', 'soari.miguel@gmail.com', NULL, 1, '2015-03-18 23:09:34.658543', '2015-03-18 23:09:34.658543', 'Solari')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2917, 'Maria Camila', 'camiamado@gmail.com', NULL, 1, '2015-03-18 23:09:34.744369', '2015-03-18 23:09:34.744369', 'Amado Rivera')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2918, 'Montalván ', 'montalvanestudio@gmail.com', NULL, 1, '2015-03-18 23:09:34.754532', '2015-03-18 23:09:34.754532', 'Estudio')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2919, 'Cynthia', 'cynthiarodriguez76@gmail.com', NULL, 1, '2015-03-18 23:09:34.764096', '2015-03-18 23:09:34.764096', 'Rodríguez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2920, 'Juan ', 'juanegrande@gmail.com', NULL, 1, '2015-03-18 23:09:34.774647', '2015-03-18 23:09:34.774647', 'Grande')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2921, 'Xavi', 'infocreadors@gmail.com', NULL, 1, '2015-03-18 23:09:34.799671', '2015-03-18 23:09:34.799671', 'Millán')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2922, 'Sumiko', 'sumiko.muray@gmail.com', NULL, 1, '2015-03-18 23:09:34.809746', '2015-03-18 23:09:34.809746', 'Muray')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2923, 'Gabriela ', 'gabyfarnell@gmail.com', NULL, 1, '2015-03-18 23:09:34.818691', '2015-03-18 23:09:34.818691', 'Farnell')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2924, 'Jo', 'joaliciamunozv@gmail.com', NULL, 1, '2015-03-18 23:09:34.828506', '2015-03-18 23:09:34.828506', 'Muñoz')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2925, 'Duncan', 'dmacdonald@brocku.ca', NULL, 1, '2015-03-18 23:09:34.837898', '2015-03-18 23:09:34.837898', 'MacDonald')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2926, 'Lito', 'litomille@hotmail.com', NULL, 1, '2015-03-18 23:09:34.848153', '2015-03-18 23:09:34.848153', 'Mille')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2927, 'Josefina ', 'josefrederick83@gmail.com', NULL, 1, '2015-03-18 23:09:34.870474', '2015-03-18 23:09:34.870474', 'Frederick')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2928, 'Javier', 'pinturadelsur@yahoo.es', NULL, 1, '2015-03-18 23:09:34.885449', '2015-03-18 23:09:34.885449', 'Mansilla Aguila')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2929, 'paloma', 'palomaanahi@gmail.com', NULL, 1, '2015-03-18 23:09:34.900335', '2015-03-18 23:09:34.900335', 'abate')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2930, 'Sergio ', 'naranjoestudio@hotmail.com', NULL, 1, '2015-03-18 23:09:34.911760', '2015-03-18 23:09:34.911760', 'Naranjo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2931, 'daniel', 'danygarciaconbirr@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:35.064905', '2015-03-18 23:09:35.064905', 'garcia')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2932, 'Coco', 'pintorchileno7@gmail.com', NULL, 1, '2015-03-18 23:09:35.075557', '2015-03-18 23:09:35.075557', 'González Lohse')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2933, 'Ricardo', 'ricardoalfarog@gmail.com', NULL, 1, '2015-03-18 23:09:35.085860', '2015-03-18 23:09:35.085860', 'Alfaro')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2934, 'oscar', 'oscararroyopaint@gmail.com', NULL, 1, '2015-03-18 23:09:35.095842', '2015-03-18 23:09:35.095842', 'arroyo')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2935, 'Carola', 'tecnostyle@hotmail.com', NULL, 1, '2015-03-18 23:09:35.114733', '2015-03-18 23:09:35.114733', 'Ramírez')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2936, 'Sofía ', 'sofiadonovan@hotmail.com', NULL, 1, '2015-03-18 23:09:35.144731', '2015-03-18 23:09:35.144731', 'Donovan')  (0.1ms) INSERT INTO "apostino_subscribers" ("id","name","email","state","list_id","created_at","updated_at","last_name") VALUES (2937, 'Rodrigo ', 'gal_frias@hotmail.com', NULL, 1, '2015-03-18 23:09:35.165548', '2015-03-18 23:09:35.165548', 'Galindo')  (0.7ms) DROP TABLE "postino_subscribers"  (0.2ms) CREATE TABLE "postino_subscribers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "state" varchar, "list_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) SELECT sql FROM sqlite_master WHERE name='tindex_apostino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='tindex_apostino_subscribers_on_list_id' AND type='index'  (0.2ms) CREATE INDEX "index_postino_subscribers_on_list_id" ON "postino_subscribers" ("list_id")  (57.5ms) SELECT * FROM "apostino_subscribers"  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1, 'Miguel', 'miguelmichelson@gmail.com', NULL, 1, '2015-03-18 23:08:37.499424', '2015-03-18 23:08:37.499424')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2, 'Jorge', 'jorge@numcero.cl', NULL, 1, '2015-03-18 23:08:37.512805', '2015-03-18 23:08:37.512805')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (3, 'alvaro', 'taoanarkripta@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:37.520394', '2015-03-18 23:08:37.520394')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (4, 'Marcelo', 'amplifica@gmail.com', NULL, 1, '2015-03-18 23:08:37.527620', '2015-03-18 23:08:37.527620')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (5, 'Isabel', 'arriagada.isabel@gmail.com', NULL, 1, '2015-03-18 23:08:37.534807', '2015-03-18 23:08:37.534807')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (6, 'Alcides', 'alcidesperez2002@hotmail.com', NULL, 1, '2015-03-18 23:08:37.542301', '2015-03-18 23:08:37.542301')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (7, 'Alex', 'aquinteros101@yahoo.com', NULL, 1, '2015-03-18 23:08:37.550419', '2015-03-18 23:08:37.550419')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (8, 'José', 'ahteum@gmail.com', NULL, 1, '2015-03-18 23:08:37.558090', '2015-03-18 23:08:37.558090')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (9, 'patricio', 'psthandier@gmail.com', NULL, 1, '2015-03-18 23:08:37.565797', '2015-03-18 23:08:37.565797')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (10, 'diego', 'diego.mz@gmail.com', NULL, 1, '2015-03-18 23:08:37.572497', '2015-03-18 23:08:37.572497')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (11, 'María', 'mariazc@gmail.com', NULL, 1, '2015-03-18 23:08:37.580137', '2015-03-18 23:08:37.580137')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (12, 'Juan', 'juan.mb1@gmail.com', NULL, 1, '2015-03-18 23:08:37.587181', '2015-03-18 23:08:37.587181')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (13, 'jose', 'tiopico@gmail.com', NULL, 1, '2015-03-18 23:08:37.600211', '2015-03-18 23:08:37.600211')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (14, 'Luis', 'luchohino@gmail.com', NULL, 1, '2015-03-18 23:08:37.607985', '2015-03-18 23:08:37.607985')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (15, 'Mirentxu', 'mgraur02@yahoo.es', NULL, 1, '2015-03-18 23:08:37.616062', '2015-03-18 23:08:37.616062')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (16, 'Clemente', 'delrio.clemente@gmail.com', NULL, 1, '2015-03-18 23:08:37.623623', '2015-03-18 23:08:37.623623')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (17, 'Nicolás', 'pernildeherodes@gmail.com', NULL, 1, '2015-03-18 23:08:37.631384', '2015-03-18 23:08:37.631384')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (18, 'sebastian', 'smaquieirao@hotmail.com', NULL, 1, '2015-03-18 23:08:37.638442', '2015-03-18 23:08:37.638442')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (19, 'Gabriel', 'gabrieldfbannen@hotmail.com', NULL, 1, '2015-03-18 23:08:37.649556', '2015-03-18 23:08:37.649556')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (20, 'Florencia', 'florenciapozo@gmail.com', NULL, 1, '2015-03-18 23:08:37.656878', '2015-03-18 23:08:37.656878')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (21, 'Jojo', 'jojofuentes@yahoo.com', NULL, 1, '2015-03-18 23:08:37.664742', '2015-03-18 23:08:37.664742')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (22, 'Gabriela', 'carmonagabriela.s@gmail.com', NULL, 1, '2015-03-18 23:08:37.672164', '2015-03-18 23:08:37.672164')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (23, 'TAN', 'tanvargas@hotmail.com', NULL, 1, '2015-03-18 23:08:37.679272', '2015-03-18 23:08:37.679272')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (24, 'Carlos', 'apablazabaschmann@gmail.com', NULL, 1, '2015-03-18 23:08:37.687234', '2015-03-18 23:08:37.687234')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (25, 'KAELAZO', 'kaelazo@gmail.com', NULL, 1, '2015-03-18 23:08:37.699522', '2015-03-18 23:08:37.699522')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (26, 'Consuelo', 'lacoonsu@gmail.com', NULL, 1, '2015-03-18 23:08:37.707052', '2015-03-18 23:08:37.707052')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (27, 'Michael', 'greenmaik7@hotmail.com', NULL, 1, '2015-03-18 23:08:37.715332', '2015-03-18 23:08:37.715332')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (28, 'TERESA', 'pretereto@paranoia.cl', NULL, 1, '2015-03-18 23:08:37.722986', '2015-03-18 23:08:37.722986')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (29, 'Diego', 'diegobianchi@ciudad.com.ar', NULL, 1, '2015-03-18 23:08:37.730222', '2015-03-18 23:08:37.730222')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (30, 'victor', 'mnemenauta@yahoo.com', NULL, 1, '2015-03-18 23:08:37.748906', '2015-03-18 23:08:37.748906')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (31, 'Michael', 'mzelehoski@yahoo.com', NULL, 1, '2015-03-18 23:08:37.765971', '2015-03-18 23:08:37.765971')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (32, 'catalina', 'catalina.rojas@vtr.net', NULL, 1, '2015-03-18 23:08:37.772920', '2015-03-18 23:08:37.772920')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (33, 'Carolina', 'carolinaschmidtp@gmail.com', NULL, 1, '2015-03-18 23:08:37.782258', '2015-03-18 23:08:37.782258')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (34, 'sebastian', 'corderodediozz@yahoo.es', NULL, 1, '2015-03-18 23:08:37.789742', '2015-03-18 23:08:37.789742')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (35, 'jose', 'jcarmona@dialectos.cl', NULL, 1, '2015-03-18 23:08:37.798063', '2015-03-18 23:08:37.798063')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (36, 'Claudia', 'carodriguezez@gmail.es', NULL, 1, '2015-03-18 23:08:37.816141', '2015-03-18 23:08:37.816141')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (37, 'luciana', 'lulamothe@gmail.com', NULL, 1, '2015-03-18 23:08:37.830789', '2015-03-18 23:08:37.830789')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (38, 'EVA', 'evaporarte@hotmail.com', NULL, 1, '2015-03-18 23:08:37.838128', '2015-03-18 23:08:37.838128')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (39, 'Claudia', 'fotografiaglomerada@gmail.com', NULL, 1, '2015-03-18 23:08:37.845297', '2015-03-18 23:08:37.845297')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (40, 'Jose', 'joseoportot@hotmail.com', NULL, 1, '2015-03-18 23:08:37.852151', '2015-03-18 23:08:37.852151')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (41, 'Dani', 'danizderich@gmail.com', NULL, 1, '2015-03-18 23:08:37.865434', '2015-03-18 23:08:37.865434')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (42, 'Ricardo', 'ricardoparra_1@yahoo.es', NULL, 1, '2015-03-18 23:08:37.872330', '2015-03-18 23:08:37.872330')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (43, 'Luis', 'guerranuclear@gmail.com', NULL, 1, '2015-03-18 23:08:37.881188', '2015-03-18 23:08:37.881188')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (44, 'Catalina', 'semilla@mi.cl', NULL, 1, '2015-03-18 23:08:37.888757', '2015-03-18 23:08:37.888757')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (45, 'Angie', 'angiesaiz@gmail.com', NULL, 1, '2015-03-18 23:08:37.897749', '2015-03-18 23:08:37.897749')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (46, 'ELENA', 'elenaro@prodigy.net.mx', NULL, 1, '2015-03-18 23:08:37.924612', '2015-03-18 23:08:37.924612')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (47, 'Federico', 'federicoinfantelorca@gmail.com', NULL, 1, '2015-03-18 23:08:37.943198', '2015-03-18 23:08:37.943198')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (48, 'EL', 'elalegrepintor@gmail.com', NULL, 1, '2015-03-18 23:08:37.974254', '2015-03-18 23:08:37.974254')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (49, 'Carlos', 'nakkao@hotmail.com', NULL, 1, '2015-03-18 23:08:37.986994', '2015-03-18 23:08:37.986994')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (50, 'aymara', 'aymarazegers@gmail.com', NULL, 1, '2015-03-18 23:08:38.013576', '2015-03-18 23:08:38.013576')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (51, 'Victor', 'esperbravo7@yahoo.es', NULL, 1, '2015-03-18 23:08:38.032308', '2015-03-18 23:08:38.032308')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (52, 'Juan', 'jcsistem@gmail.com', NULL, 1, '2015-03-18 23:08:38.056930', '2015-03-18 23:08:38.056930')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (53, 'klaudia', 'klaudiakemper@gmail.com', NULL, 1, '2015-03-18 23:08:38.075732', '2015-03-18 23:08:38.075732')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (54, 'tomás', 'artesor@yahoo.es', NULL, 1, '2015-03-18 23:08:38.101986', '2015-03-18 23:08:38.101986')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (55, 'Amalia', 'amaliavaldes@gmail.com', NULL, 1, '2015-03-18 23:08:38.114359', '2015-03-18 23:08:38.114359')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (56, 'Marcelo', 'marcelo@apurolapiz.cl', NULL, 1, '2015-03-18 23:08:38.136173', '2015-03-18 23:08:38.136173')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (57, 'HIRTH', 'yoistik@gmail.com', NULL, 1, '2015-03-18 23:08:38.149567', '2015-03-18 23:08:38.149567')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (58, 'eric', 'ericschiodtz7@hotmail.com', NULL, 1, '2015-03-18 23:08:38.185264', '2015-03-18 23:08:38.185264')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (59, 'Barbara', 'barbara@gillmore.cl', NULL, 1, '2015-03-18 23:08:38.210055', '2015-03-18 23:08:38.210055')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (60, 'alvaro', 'izquierdo.v@gmail.com', NULL, 1, '2015-03-18 23:08:38.242865', '2015-03-18 23:08:38.242865')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (61, 'YTO', 'ytoaranda@gmail.com', NULL, 1, '2015-03-18 23:08:38.264841', '2015-03-18 23:08:38.264841')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (62, 'Michael', 'llaikelpaikel@gmail.com', NULL, 1, '2015-03-18 23:08:38.283350', '2015-03-18 23:08:38.283350')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (63, 'hector', 'proyectoslaura@yahoo.es', NULL, 1, '2015-03-18 23:08:38.299126', '2015-03-18 23:08:38.299126')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (64, 'Maria', 'pazmb@hotmail.com', NULL, 1, '2015-03-18 23:08:38.313668', '2015-03-18 23:08:38.313668')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (65, 'Cecilia', 'arte_fuego@hotmail.com', NULL, 1, '2015-03-18 23:08:38.327504', '2015-03-18 23:08:38.327504')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (66, 'tessiebujes', 'tessiebujes@gmail.com', NULL, 1, '2015-03-18 23:08:38.351538', '2015-03-18 23:08:38.351538')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (67, 'YISA', 'jocegza@gmail.com', NULL, 1, '2015-03-18 23:08:38.375770', '2015-03-18 23:08:38.375770')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (68, 'jimmy', 'ja_watt75@yahoo.es', NULL, 1, '2015-03-18 23:08:38.428227', '2015-03-18 23:08:38.428227')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (69, 'Ignacio', 'natosalt@yahoo.es', NULL, 1, '2015-03-18 23:08:38.435788', '2015-03-18 23:08:38.435788')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (70, 'Felipe', 'fgamboac@gmail.com', NULL, 1, '2015-03-18 23:08:38.443499', '2015-03-18 23:08:38.443499')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (71, 'Alvaro', 'agablerp@gmail.com', NULL, 1, '2015-03-18 23:08:38.452382', '2015-03-18 23:08:38.452382')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (72, 'Paula', 'paulagarrido@hotmail.com', NULL, 1, '2015-03-18 23:08:38.465386', '2015-03-18 23:08:38.465386')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (73, 'Pablo', 'art210@latinmail.com', NULL, 1, '2015-03-18 23:08:38.486382', '2015-03-18 23:08:38.486382')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (74, 'Alan', 'pintoralan@gmail.com', NULL, 1, '2015-03-18 23:08:38.504062', '2015-03-18 23:08:38.504062')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (75, 'Daniella', 'daniellaperbac@gmail.com', NULL, 1, '2015-03-18 23:08:38.521092', '2015-03-18 23:08:38.521092')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (76, 'mara', 'maramar.mar@gmail.com', NULL, 1, '2015-03-18 23:08:38.530759', '2015-03-18 23:08:38.530759')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (77, 'Francisco', 'francoescultor@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:38.556673', '2015-03-18 23:08:38.556673')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (78, 'Mariana', 'mariananajmanovich@gmail.com', NULL, 1, '2015-03-18 23:08:38.578352', '2015-03-18 23:08:38.578352')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (79, 'María', 'schwarzenberg@mananaart.de', NULL, 1, '2015-03-18 23:08:38.599203', '2015-03-18 23:08:38.599203')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (80, 'Camila', 'kamilitak@gmail.com', NULL, 1, '2015-03-18 23:08:38.619573', '2015-03-18 23:08:38.619573')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (81, 'Karina', 'pinkantoinette@gmail.com', NULL, 1, '2015-03-18 23:08:38.631876', '2015-03-18 23:08:38.631876')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (82, 'cristobal', 'cristoallende@gmail.com', NULL, 1, '2015-03-18 23:08:38.653884', '2015-03-18 23:08:38.653884')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (83, 'erico', 'erico_locuas@hotmail.com', NULL, 1, '2015-03-18 23:08:38.670917', '2015-03-18 23:08:38.670917')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (84, 'Sergio', 'lay.sergio@gmail.com', NULL, 1, '2015-03-18 23:08:38.682523', '2015-03-18 23:08:38.682523')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (85, 'Gabriel', 'artmourey@gmail.com', NULL, 1, '2015-03-18 23:08:38.694811', '2015-03-18 23:08:38.694811')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (86, 'Ricardo', 'rikardopizarro@gmail.com', NULL, 1, '2015-03-18 23:08:38.706190', '2015-03-18 23:08:38.706190')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (87, 'starsky', 'starskybrines@gmail.com', NULL, 1, '2015-03-18 23:08:38.718226', '2015-03-18 23:08:38.718226')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (88, 'Coca', 'cocaburnier@hotmail.com', NULL, 1, '2015-03-18 23:08:38.743773', '2015-03-18 23:08:38.743773')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (89, 'Miguel', 'natosalt@gmail.com', NULL, 1, '2015-03-18 23:08:38.754230', '2015-03-18 23:08:38.754230')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (90, 'Ricardo', 'centauro@manquehue.net', NULL, 1, '2015-03-18 23:08:38.765730', '2015-03-18 23:08:38.765730')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (91, 'Ana', 'amr@galeriarte.cl', NULL, 1, '2015-03-18 23:08:38.780610', '2015-03-18 23:08:38.780610')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (92, 'AngelesGuzmánF', 'angelesguzmanf@gmail.com', NULL, 1, '2015-03-18 23:08:38.797982', '2015-03-18 23:08:38.797982')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (93, 'I', 'isaaraneda@hotmail.com', NULL, 1, '2015-03-18 23:08:38.818259', '2015-03-18 23:08:38.818259')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (94, 'ADAN', 'adansat@hotmail.com', NULL, 1, '2015-03-18 23:08:38.831456', '2015-03-18 23:08:38.831456')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (95, 'Diego', 'dvergaralira@yahoo.es', NULL, 1, '2015-03-18 23:08:38.844530', '2015-03-18 23:08:38.844530')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (96, 'jonathan', 'jonathansanguezag@gmail.com', NULL, 1, '2015-03-18 23:08:38.852855', '2015-03-18 23:08:38.852855')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (97, 'Muriel', 'muriel.gw@gmail.com', NULL, 1, '2015-03-18 23:08:38.864746', '2015-03-18 23:08:38.864746')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (98, 'carolina', 'carolina.hermana@gmail.com', NULL, 1, '2015-03-18 23:08:38.880930', '2015-03-18 23:08:38.880930')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (99, 'Isabel', 'carolinaolmedocarrasco@gmail.com', NULL, 1, '2015-03-18 23:08:38.888156', '2015-03-18 23:08:38.888156')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (100, 'Claudio', 'celizama@uach.cl', NULL, 1, '2015-03-18 23:08:38.897511', '2015-03-18 23:08:38.897511')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (101, 'Diego', 'dondiego@hotmail.com', NULL, 1, '2015-03-18 23:08:38.917747', '2015-03-18 23:08:38.917747')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (102, 'Rubén', 'serveralvarado@gmail.com', NULL, 1, '2015-03-18 23:08:38.930822', '2015-03-18 23:08:38.930822')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (103, 'concepcion', 'tierradesombra@yahoo.es', NULL, 1, '2015-03-18 23:08:38.949426', '2015-03-18 23:08:38.949426')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (104, 'Alex', 'alexchellewm@yahoo.com', NULL, 1, '2015-03-18 23:08:38.963944', '2015-03-18 23:08:38.963944')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (105, 'carmen', 'carmvalle@gmail.com', NULL, 1, '2015-03-18 23:08:38.980091', '2015-03-18 23:08:38.980091')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (106, 'Antonella', 'antonellagd@hotmail.com', NULL, 1, '2015-03-18 23:08:38.988913', '2015-03-18 23:08:38.988913')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (107, 'CAROLINA', 'coltra@mi.cl', NULL, 1, '2015-03-18 23:08:38.998399', '2015-03-18 23:08:38.998399')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (108, 'ENRIQUE', 'flores_bx@yahoo.es', NULL, 1, '2015-03-18 23:08:39.015186', '2015-03-18 23:08:39.015186')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (109, 'Andrea', 'andreafortuita@gmail.com', NULL, 1, '2015-03-18 23:08:39.030716', '2015-03-18 23:08:39.030716')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (110, 'Esteban', 'esteban.echague@gmail.com', NULL, 1, '2015-03-18 23:08:39.044203', '2015-03-18 23:08:39.044203')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (111, 'Mauricio', 'bravocarreno@gmail.com', NULL, 1, '2015-03-18 23:08:39.053968', '2015-03-18 23:08:39.053968')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (112, 'Ana', 'superbabyfell@yahoo.es', NULL, 1, '2015-03-18 23:08:39.077109', '2015-03-18 23:08:39.077109')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (113, 'ALEJANDRO', 'lecarosamaro@gmail.com', NULL, 1, '2015-03-18 23:08:39.095989', '2015-03-18 23:08:39.095989')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (114, 'ANDREA', 'aa.casanova@gmail.com', NULL, 1, '2015-03-18 23:08:39.108779', '2015-03-18 23:08:39.108779')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (115, 'Carlos', 'carlossilvatroncoso@hotmail.com', NULL, 1, '2015-03-18 23:08:39.131474', '2015-03-18 23:08:39.131474')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (116, 'francisco', 'pajarovolante77@gmail.com', NULL, 1, '2015-03-18 23:08:39.143335', '2015-03-18 23:08:39.143335')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (117, 'Manuela', 'contacto@mvgallo.cl', NULL, 1, '2015-03-18 23:08:39.163250', '2015-03-18 23:08:39.163250')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (118, 'ignacio', 'igna_cl@hotmail.com', NULL, 1, '2015-03-18 23:08:39.180268', '2015-03-18 23:08:39.180268')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (119, 'Cristián', 'cvelascog@yahoo.com', NULL, 1, '2015-03-18 23:08:39.189387', '2015-03-18 23:08:39.189387')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (120, 'paula', 'pafa53@hotmail.com', NULL, 1, '2015-03-18 23:08:39.203753', '2015-03-18 23:08:39.203753')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (121, 'Oswaldo', 'tatevary@yahoo.com', NULL, 1, '2015-03-18 23:08:39.216770', '2015-03-18 23:08:39.216770')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (122, 'Carlos', 'carlitos_artes@hotmail.com', NULL, 1, '2015-03-18 23:08:39.231112', '2015-03-18 23:08:39.231112')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (123, 'Oscar', 'mairysethvargas@gmail.com', NULL, 1, '2015-03-18 23:08:39.252489', '2015-03-18 23:08:39.252489')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (124, 'Lorena', 'larayav@gmail.com', NULL, 1, '2015-03-18 23:08:39.263699', '2015-03-18 23:08:39.263699')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (125, 'Cristal', 'cristal.ferret@gmail.com', NULL, 1, '2015-03-18 23:08:39.278551', '2015-03-18 23:08:39.278551')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (126, 'carlos', 'clom99@yahoo.com', NULL, 1, '2015-03-18 23:08:39.287093', '2015-03-18 23:08:39.287093')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (127, 'Alejandra', 'alejandrabasualdo@gmail.com', NULL, 1, '2015-03-18 23:08:39.303795', '2015-03-18 23:08:39.303795')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (128, 'Aviva', 'aviva@vtr.net', NULL, 1, '2015-03-18 23:08:39.312476', '2015-03-18 23:08:39.312476')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (129, 'Claudio', 'oyarce100@hotmail.com', NULL, 1, '2015-03-18 23:08:39.329630', '2015-03-18 23:08:39.329630')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (130, 'Juan', 'increado@hotmail.com', NULL, 1, '2015-03-18 23:08:39.337833', '2015-03-18 23:08:39.337833')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (131, 'Luis', 'chegrarte@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:39.351421', '2015-03-18 23:08:39.351421')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (132, 'Barbara', 'bmodinger@hotmail.com', NULL, 1, '2015-03-18 23:08:39.406572', '2015-03-18 23:08:39.406572')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (133, 'hugo', 'hugotripodi@yahoo.com', NULL, 1, '2015-03-18 23:08:39.414891', '2015-03-18 23:08:39.414891')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (134, 'Catalina', 'c.macan@gmail.com', NULL, 1, '2015-03-18 23:08:39.422898', '2015-03-18 23:08:39.422898')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (135, 'Camila', 'cali83@gmail.com', NULL, 1, '2015-03-18 23:08:39.431480', '2015-03-18 23:08:39.431480')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (136, 'luis', 'luisengranajes@hotmail.com', NULL, 1, '2015-03-18 23:08:39.440245', '2015-03-18 23:08:39.440245')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (137, 'Rodrigo', 'ortegach@gmail.com', NULL, 1, '2015-03-18 23:08:39.522606', '2015-03-18 23:08:39.522606')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (138, 'Paloma', 'paloma_iva@yahoo.com', NULL, 1, '2015-03-18 23:08:39.531878', '2015-03-18 23:08:39.531878')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (139, 'Daniel', 'fernandobruma@swissinfo.org', NULL, 1, '2015-03-18 23:08:39.539617', '2015-03-18 23:08:39.539617')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (140, 'Kriztoval', 'ira_el_bardo@hotmail.com', NULL, 1, '2015-03-18 23:08:39.547928', '2015-03-18 23:08:39.547928')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (141, 'Orlando', 'artebariquia@yahoo.es', NULL, 1, '2015-03-18 23:08:39.556548', '2015-03-18 23:08:39.556548')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (142, 'claudia', 'claudia@claudiaolivos.com', NULL, 1, '2015-03-18 23:08:39.580047', '2015-03-18 23:08:39.580047')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (143, 'ana', 'anakarinavalecillos@gmail.com', NULL, 1, '2015-03-18 23:08:39.588900', '2015-03-18 23:08:39.588900')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (144, 'Deys', 'ansiarte@gmail.com', NULL, 1, '2015-03-18 23:08:39.597278', '2015-03-18 23:08:39.597278')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (145, 'Camila', 'correocamila@gmail.com', NULL, 1, '2015-03-18 23:08:39.606001', '2015-03-18 23:08:39.606001')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (146, 'Paula', 'ralmistiblue@hotmail.com', NULL, 1, '2015-03-18 23:08:39.616481', '2015-03-18 23:08:39.616481')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (147, 'Gabriela', 'cicciolina3x@gmail.com', NULL, 1, '2015-03-18 23:08:39.628709', '2015-03-18 23:08:39.628709')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (148, 'camilo', 'camilo@camilovillanueva.com.ar', NULL, 1, '2015-03-18 23:08:39.636883', '2015-03-18 23:08:39.636883')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (149, 'Lucía', 'contacto@luciarodriguez.cl', NULL, 1, '2015-03-18 23:08:39.644205', '2015-03-18 23:08:39.644205')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (150, 'María', 'mariajosedurans@gmail.com', NULL, 1, '2015-03-18 23:08:39.651872', '2015-03-18 23:08:39.651872')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (151, 'LAURA', 'lgamio@gmail.com', NULL, 1, '2015-03-18 23:08:39.659829', '2015-03-18 23:08:39.659829')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (152, 'alberto', 'lagos.alberto@gmail.com', NULL, 1, '2015-03-18 23:08:39.677594', '2015-03-18 23:08:39.677594')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (153, 'HIDALGO', 'phespino@uc.cl', NULL, 1, '2015-03-18 23:08:39.686634', '2015-03-18 23:08:39.686634')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (154, 'Raimundo', 'raimundoedwards@gmail.com', NULL, 1, '2015-03-18 23:08:39.694339', '2015-03-18 23:08:39.694339')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (155, 'Melf', 'melf_en_viena@yahoo.com', NULL, 1, '2015-03-18 23:08:39.702844', '2015-03-18 23:08:39.702844')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (156, 'Magdalena', 'maidacordero@gmail.com', NULL, 1, '2015-03-18 23:08:39.711124', '2015-03-18 23:08:39.711124')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (157, 'aldo', 'aldogarrido@hotmail.com', NULL, 1, '2015-03-18 23:08:39.729256', '2015-03-18 23:08:39.729256')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (158, 'consuelo', 'consuelolewin@yahoo.com', NULL, 1, '2015-03-18 23:08:39.745282', '2015-03-18 23:08:39.745282')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (159, 'Melania', 'melania_lynch@yahoo.es', NULL, 1, '2015-03-18 23:08:39.753879', '2015-03-18 23:08:39.753879')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (160, 'Felipe', 'fcusicanqui@gmail.com', NULL, 1, '2015-03-18 23:08:39.762027', '2015-03-18 23:08:39.762027')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (161, 'nknk', 'nk@nk.nk', NULL, 1, '2015-03-18 23:08:39.777578', '2015-03-18 23:08:39.777578')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (162, 'Cristina', 'soberenda@hotmail.com', NULL, 1, '2015-03-18 23:08:39.789656', '2015-03-18 23:08:39.789656')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (163, 'Paula', 'anguitapaula@yahoo.com', NULL, 1, '2015-03-18 23:08:39.800534', '2015-03-18 23:08:39.800534')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (164, 'Kamila', 'kamila_gavinci@hotmail.com', NULL, 1, '2015-03-18 23:08:39.819027', '2015-03-18 23:08:39.819027')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (165, 'MARIANA', 'marianamarciana@hotmail.com', NULL, 1, '2015-03-18 23:08:39.829652', '2015-03-18 23:08:39.829652')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (166, 'Antonio', 'guzmanantonio@gmail.com', NULL, 1, '2015-03-18 23:08:39.849112', '2015-03-18 23:08:39.849112')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (167, 'DESTROY', 'vandalis.arte@gmail.com', NULL, 1, '2015-03-18 23:08:39.863782', '2015-03-18 23:08:39.863782')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (168, 'javier', 'danceustedtambien@gmail.com', NULL, 1, '2015-03-18 23:08:39.877780', '2015-03-18 23:08:39.877780')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (169, 'PEPE', 'pepemoreno12@yahoo.es', NULL, 1, '2015-03-18 23:08:39.900852', '2015-03-18 23:08:39.900852')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (170, 'W', 'sintitulo33@hotmail.com', NULL, 1, '2015-03-18 23:08:39.930781', '2015-03-18 23:08:39.930781')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (171, 'senoritaugarte', 'senoritaugarte@gmail.com', NULL, 1, '2015-03-18 23:08:39.942989', '2015-03-18 23:08:39.942989')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (172, 'Bruno', 'bruriadnis@hotmail.com', NULL, 1, '2015-03-18 23:08:39.960505', '2015-03-18 23:08:39.960505')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (173, 'Consuelo', 'mcpolanc@uc.cl', NULL, 1, '2015-03-18 23:08:39.977019', '2015-03-18 23:08:39.977019')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (174, 'MARIA', 'aliciaurrea@yahoo.com', NULL, 1, '2015-03-18 23:08:39.992735', '2015-03-18 23:08:39.992735')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (175, 'paula', 'phsolimano@gmail.com', NULL, 1, '2015-03-18 23:08:40.007787', '2015-03-18 23:08:40.007787')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (176, 'Daniel', 'daniel@sourlight.net', NULL, 1, '2015-03-18 23:08:40.036445', '2015-03-18 23:08:40.036445')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (177, 'epee', 'diasnublados_82@hotmail.com', NULL, 1, '2015-03-18 23:08:40.061289', '2015-03-18 23:08:40.061289')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (178, 'jaime', 'jaimevial@gmail.com', NULL, 1, '2015-03-18 23:08:40.077663', '2015-03-18 23:08:40.077663')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (179, 'verena', 'verenaurrutia@gmail.com', NULL, 1, '2015-03-18 23:08:40.101906', '2015-03-18 23:08:40.101906')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (180, 'Rocío', 'rsrrchio@gmail.com', NULL, 1, '2015-03-18 23:08:40.120389', '2015-03-18 23:08:40.120389')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (181, 'Cecilia', 'ceciliaarayaleon@gmail.com', NULL, 1, '2015-03-18 23:08:40.141043', '2015-03-18 23:08:40.141043')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (182, 'Andrea', 'anazztacia@gmail.com', NULL, 1, '2015-03-18 23:08:40.176928', '2015-03-18 23:08:40.176928')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (183, 'Elisa', 'elisaghs@gmail.com', NULL, 1, '2015-03-18 23:08:40.241517', '2015-03-18 23:08:40.241517')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (184, 'Magali', 'contacto@magalipolverino.com', NULL, 1, '2015-03-18 23:08:40.309145', '2015-03-18 23:08:40.309145')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (185, 'FABRIZZIO', 'fabodangelo@hotmail.com', NULL, 1, '2015-03-18 23:08:40.354141', '2015-03-18 23:08:40.354141')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (186, 'Enzo', 'info@arrisi.cl', NULL, 1, '2015-03-18 23:08:40.382296', '2015-03-18 23:08:40.382296')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (187, 'rodolfo', 'info@rodolfoedwards.com', NULL, 1, '2015-03-18 23:08:40.421218', '2015-03-18 23:08:40.421218')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (188, 'maria', 'arenitademar21@hotmail.com', NULL, 1, '2015-03-18 23:08:40.511000', '2015-03-18 23:08:40.511000')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (189, 'Esteban', 'estcordova@gmail.com', NULL, 1, '2015-03-18 23:08:40.536115', '2015-03-18 23:08:40.536115')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (190, 'Menru', 'lechecita@gmail.com', NULL, 1, '2015-03-18 23:08:40.564175', '2015-03-18 23:08:40.564175')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (191, 'Yorky', 'yorkymencia@correosdecuba.cu', NULL, 1, '2015-03-18 23:08:40.585881', '2015-03-18 23:08:40.585881')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (192, 'Grace', 'gracieweinrib@gmail.com', NULL, 1, '2015-03-18 23:08:40.598956', '2015-03-18 23:08:40.598956')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (193, 'Sebastián', 'sebastianescalona@gmail.com', NULL, 1, '2015-03-18 23:08:40.620363', '2015-03-18 23:08:40.620363')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (194, 'Consuelo', 'consuelo.rodriguez.d@gmail.com', NULL, 1, '2015-03-18 23:08:40.632640', '2015-03-18 23:08:40.632640')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (195, 'José', 'joc1483@gmail.com', NULL, 1, '2015-03-18 23:08:40.644073', '2015-03-18 23:08:40.644073')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (196, 'Oscar', 'sedicereiby@gmail.com', NULL, 1, '2015-03-18 23:08:40.720640', '2015-03-18 23:08:40.720640')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (197, 'Andrés', 'andrestorresf@gmail.com', NULL, 1, '2015-03-18 23:08:40.745289', '2015-03-18 23:08:40.745289')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (198, 'Susana', '-----@------------', NULL, 1, '2015-03-18 23:08:40.761631', '2015-03-18 23:08:40.761631')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (199, 'FELIPE', 'felipe.rencoret@hotmail.com', NULL, 1, '2015-03-18 23:08:40.775843', '2015-03-18 23:08:40.775843')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (200, 'Sandra', 'princesahallulla@gmail.com', NULL, 1, '2015-03-18 23:08:40.843300', '2015-03-18 23:08:40.843300')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (201, 'Pablo', 'yonosoysmo@gmail.com', NULL, 1, '2015-03-18 23:08:40.859570', '2015-03-18 23:08:40.859570')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (202, 'Colectivo', 'bruno_s_z@yahoo.com', NULL, 1, '2015-03-18 23:08:40.870407', '2015-03-18 23:08:40.870407')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (203, 'Ricardo', 'rdovillarroel@gmail.com', NULL, 1, '2015-03-18 23:08:40.895175', '2015-03-18 23:08:40.895175')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (204, 'pau', 'pau_rubio_e@hotmail.com', NULL, 1, '2015-03-18 23:08:40.908858', '2015-03-18 23:08:40.908858')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (205, 'natalia', 'natix14@gmail.com', NULL, 1, '2015-03-18 23:08:40.916995', '2015-03-18 23:08:40.916995')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (206, 'FLORENCIA', 'florencia.onetto@gmail.com', NULL, 1, '2015-03-18 23:08:40.924651', '2015-03-18 23:08:40.924651')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (207, 'Germán', 'noanswernoname@gmail.com', NULL, 1, '2015-03-18 23:08:40.942249', '2015-03-18 23:08:40.942249')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (208, 'Isabel', 'rosemblart@gmail.com', NULL, 1, '2015-03-18 23:08:40.958705', '2015-03-18 23:08:40.958705')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (209, 'Constanza', 'constanzageisse@mi.cl', NULL, 1, '2015-03-18 23:08:40.966597', '2015-03-18 23:08:40.966597')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (210, 'Luz', 'luzmpz@gmail.com', NULL, 1, '2015-03-18 23:08:40.975251', '2015-03-18 23:08:40.975251')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (211, 'Paco', 'leonpaco@gmail.com', NULL, 1, '2015-03-18 23:08:40.986442', '2015-03-18 23:08:40.986442')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (212, 'CRISTOBAL', 'lologuzman@hotmail.com', NULL, 1, '2015-03-18 23:08:41.004131', '2015-03-18 23:08:41.004131')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (213, 'DIEGO', 'aprendeapintar@gmail.com', NULL, 1, '2015-03-18 23:08:41.013990', '2015-03-18 23:08:41.013990')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (214, 'ANAMARIA', 'anamariaschmidt@yahoo.com', NULL, 1, '2015-03-18 23:08:41.022900', '2015-03-18 23:08:41.022900')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (215, 'Marina', 'mpiracés@yahoo.es', NULL, 1, '2015-03-18 23:08:41.031620', '2015-03-18 23:08:41.031620')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (216, 'Sergio', 'sergiorequena@gmail.com', NULL, 1, '2015-03-18 23:08:41.055737', '2015-03-18 23:08:41.055737')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (217, 'Luis', 'fotoluisnavarro@gmail.com', NULL, 1, '2015-03-18 23:08:41.072260', '2015-03-18 23:08:41.072260')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (218, 'Boris', 'boris.cofre@gmail.com', NULL, 1, '2015-03-18 23:08:41.082122', '2015-03-18 23:08:41.082122')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (219, 'MACARENA', 'cebra.mbl@gmail.com', NULL, 1, '2015-03-18 23:08:41.092223', '2015-03-18 23:08:41.092223')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (220, 'Flor', 'cafloresv@hotmail.com', NULL, 1, '2015-03-18 23:08:41.109332', '2015-03-18 23:08:41.109332')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (221, 'yorky', 'yorkymencia@correodecuba.cu', NULL, 1, '2015-03-18 23:08:41.127814', '2015-03-18 23:08:41.127814')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (222, 'pamela', 'cantillana.pamela@gmail.com', NULL, 1, '2015-03-18 23:08:41.198666', '2015-03-18 23:08:41.198666')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (223, 'francisco', 'pancholillo_1@hotmail.com', NULL, 1, '2015-03-18 23:08:41.221208', '2015-03-18 23:08:41.221208')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (224, 'mauricio', 'info@mauricioconcha.cl', NULL, 1, '2015-03-18 23:08:41.242828', '2015-03-18 23:08:41.242828')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (225, 'Patricia', 'patiurquieta@yahoo.es', NULL, 1, '2015-03-18 23:08:41.260072', '2015-03-18 23:08:41.260072')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (226, 'Francisco', 'francisco@cintolesi.cl', NULL, 1, '2015-03-18 23:08:41.283910', '2015-03-18 23:08:41.283910')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (227, 'Paz', 'maria_pakia@hotmail.com', NULL, 1, '2015-03-18 23:08:41.293822', '2015-03-18 23:08:41.293822')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (228, 'hector', 'ampdist@hotmail.com', NULL, 1, '2015-03-18 23:08:41.308495', '2015-03-18 23:08:41.308495')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (229, 'fernando', 'fernandoloustalot@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:41.327991', '2015-03-18 23:08:41.327991')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (230, 'Paulina', 'paulibunster@gmail.com', NULL, 1, '2015-03-18 23:08:41.342661', '2015-03-18 23:08:41.342661')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (231, 'Ernesto', 'neus_ra@hotmail.com', NULL, 1, '2015-03-18 23:08:41.360019', '2015-03-18 23:08:41.360019')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (232, 'andres', 'anmoral29@hotmail.com', NULL, 1, '2015-03-18 23:08:41.376237', '2015-03-18 23:08:41.376237')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (233, 'Carla', 'carla_fernandez_4@hotmail.com', NULL, 1, '2015-03-18 23:08:41.393752', '2015-03-18 23:08:41.393752')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (234, 'raimundo', 'raimundolarenas@gmail.com', NULL, 1, '2015-03-18 23:08:41.407882', '2015-03-18 23:08:41.407882')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (235, 'ISRAEL', 'isra1205@gmail.com', NULL, 1, '2015-03-18 23:08:41.416932', '2015-03-18 23:08:41.416932')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (236, 'Cynthia', 'cynthiajacksonzam@gmail.com', NULL, 1, '2015-03-18 23:08:41.433623', '2015-03-18 23:08:41.433623')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (237, 'alvaro', 'alvaromegaherz@hotmail.com', NULL, 1, '2015-03-18 23:08:41.794348', '2015-03-18 23:08:41.794348')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (238, 'ines', 'ineslazzaro@hotmail.com', NULL, 1, '2015-03-18 23:08:41.806923', '2015-03-18 23:08:41.806923')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (239, 'Ines', ' felisajuancolor@hotmail.com', NULL, 1, '2015-03-18 23:08:41.814832', '2015-03-18 23:08:41.814832')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (240, 'MARIANA', 'mavoun@gmail.com', NULL, 1, '2015-03-18 23:08:41.823141', '2015-03-18 23:08:41.823141')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (241, 'Francisca', 'nifaze@gmail.com', NULL, 1, '2015-03-18 23:08:41.831526', '2015-03-18 23:08:41.831526')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (242, 'INES', 'felisajuancolor@hotmail.com', NULL, 1, '2015-03-18 23:08:41.839976', '2015-03-18 23:08:41.839976')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (243, 'GUILLERMINA', 'lallilli@hotmail.com', NULL, 1, '2015-03-18 23:08:41.856521', '2015-03-18 23:08:41.856521')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (244, 'FRAN', 'franset@hotmail.com', NULL, 1, '2015-03-18 23:08:41.873434', '2015-03-18 23:08:41.873434')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (245, 'Berta', 'belainne@gmail.com', NULL, 1, '2015-03-18 23:08:41.881413', '2015-03-18 23:08:41.881413')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (246, 'LUVIER', 'luvier@gmail.com', NULL, 1, '2015-03-18 23:08:41.889349', '2015-03-18 23:08:41.889349')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (247, 'unknown', 'unknown@unknown.com', NULL, 1, '2015-03-18 23:08:41.898166', '2015-03-18 23:08:41.898166')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (248, 'Cristián', 'soyyo@cristiangallegos.com', NULL, 1, '2015-03-18 23:08:41.906646', '2015-03-18 23:08:41.906646')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (249, 'Alonso', 'alonso@prenuclear.cl', NULL, 1, '2015-03-18 23:08:41.923886', '2015-03-18 23:08:41.923886')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (250, 'Carolina', 'caro_parrague@yahoo.com', NULL, 1, '2015-03-18 23:08:41.931993', '2015-03-18 23:08:41.931993')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (251, 'Javiera', 'callella@hotmail.com', NULL, 1, '2015-03-18 23:08:41.945123', '2015-03-18 23:08:41.945123')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (252, 'Patriccia', 'patilein@gmail.com', NULL, 1, '2015-03-18 23:08:41.958187', '2015-03-18 23:08:41.958187')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (253, 'Lucero', 'jazmin_lucero@hotmail.com', NULL, 1, '2015-03-18 23:08:41.972521', '2015-03-18 23:08:41.972521')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (254, 'MARCELA', 'marcelap40@yahoo.es', NULL, 1, '2015-03-18 23:08:41.980608', '2015-03-18 23:08:41.980608')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (255, 'fabiola', 'fabiholapaz@gmail.com', NULL, 1, '2015-03-18 23:08:41.988982', '2015-03-18 23:08:41.988982')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (256, 'María', 'nachamaturana@gmail.com', NULL, 1, '2015-03-18 23:08:41.996921', '2015-03-18 23:08:41.996921')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (257, 'Camila', 'leoncamil@gmail.com', NULL, 1, '2015-03-18 23:08:42.006638', '2015-03-18 23:08:42.006638')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (258, 'Angela', 'avigilc@yahoo.com', NULL, 1, '2015-03-18 23:08:42.024021', '2015-03-18 23:08:42.024021')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (259, 'Claudia', 'claudiamarinjara@hotmail.com', NULL, 1, '2015-03-18 23:08:42.033416', '2015-03-18 23:08:42.033416')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (260, 'vitto', 'juegocontiza@gmail.com', NULL, 1, '2015-03-18 23:08:42.086591', '2015-03-18 23:08:42.086591')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (261, 'CHAVEZ', 'joseomarchavezluna@hotmail.com', NULL, 1, '2015-03-18 23:08:42.093825', '2015-03-18 23:08:42.093825')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (262, 'Daniel', 'danielgcampos@gmail.com', NULL, 1, '2015-03-18 23:08:42.100979', '2015-03-18 23:08:42.100979')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (263, 'Francisco', 'fbrunaster@gmail.com', NULL, 1, '2015-03-18 23:08:42.109098', '2015-03-18 23:08:42.109098')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (264, 'cuenta', 'rodrigovw@hotmail.com', NULL, 1, '2015-03-18 23:08:42.119877', '2015-03-18 23:08:42.119877')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (265, 'mane', 'manemoragam@yahoo.com', NULL, 1, '2015-03-18 23:08:42.139037', '2015-03-18 23:08:42.139037')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (266, 'Margarita', 'margaritadittborn@hotmail.com', NULL, 1, '2015-03-18 23:08:42.149397', '2015-03-18 23:08:42.149397')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (267, 'Maria', 'mimart98@yahoo.com', NULL, 1, '2015-03-18 23:08:42.174082', '2015-03-18 23:08:42.174082')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (268, 'oo', 'lectordemanjar@gmail.com', NULL, 1, '2015-03-18 23:08:42.188915', '2015-03-18 23:08:42.188915')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (269, 'Rodrigo', 'sopulimonreal@hotmail.com', NULL, 1, '2015-03-18 23:08:42.208869', '2015-03-18 23:08:42.208869')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (270, 'DIEGO', 'diegodeaduriz@yahoo.com', NULL, 1, '2015-03-18 23:08:42.217137', '2015-03-18 23:08:42.217137')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (271, 'DANIELA', 'dfabres@gmail.com', NULL, 1, '2015-03-18 23:08:42.231817', '2015-03-18 23:08:42.231817')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (272, 'Matías', 'matiasbiggs@gmail.com', NULL, 1, '2015-03-18 23:08:42.253744', '2015-03-18 23:08:42.253744')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (273, 'Mauro', 'maurobalzarotti@gmail.com', NULL, 1, '2015-03-18 23:08:42.271790', '2015-03-18 23:08:42.271790')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (274, 'barbara', 'barbarella.o@gmail.com', NULL, 1, '2015-03-18 23:08:42.288757', '2015-03-18 23:08:42.288757')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (275, 'David', 'jovensalo@yahoo.es', NULL, 1, '2015-03-18 23:08:42.309338', '2015-03-18 23:08:42.309338')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (276, 'josebalmaceda', 'josebalmaceda@hotmail.com', NULL, 1, '2015-03-18 23:08:42.339166', '2015-03-18 23:08:42.339166')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (277, 'Cristhian', 'cquijadaa@gmail.com', NULL, 1, '2015-03-18 23:08:42.353695', '2015-03-18 23:08:42.353695')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (278, 'Fernanda', 'loleandola@gmail.com', NULL, 1, '2015-03-18 23:08:42.372356', '2015-03-18 23:08:42.372356')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (279, 'María', 'mjpedric@gmail.com', NULL, 1, '2015-03-18 23:08:42.389108', '2015-03-18 23:08:42.389108')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (280, 'Jenny', 'ramosajen@yahoo.co.uk', NULL, 1, '2015-03-18 23:08:42.397509', '2015-03-18 23:08:42.397509')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (281, 'Alvaro', 'delpozoysilva@gmail.com', NULL, 1, '2015-03-18 23:08:42.405339', '2015-03-18 23:08:42.405339')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (282, 'Paula', 'politajimenez@hotmail.com', NULL, 1, '2015-03-18 23:08:42.416109', '2015-03-18 23:08:42.416109')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (283, 'Betania', 'malandanza@hotmail.com', NULL, 1, '2015-03-18 23:08:42.430277', '2015-03-18 23:08:42.430277')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (284, 'Ramiro', 'maestrosiux@gmail.com', NULL, 1, '2015-03-18 23:08:42.450412', '2015-03-18 23:08:42.450412')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (285, 'DAVID', 'davidhorz@gmail.com', NULL, 1, '2015-03-18 23:08:42.465911', '2015-03-18 23:08:42.465911')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (286, 'FRANVEGA', 'kiskavega@hotmail.com', NULL, 1, '2015-03-18 23:08:42.479758', '2015-03-18 23:08:42.479758')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (287, 'Francisca', 'ataxika@hotmail.com', NULL, 1, '2015-03-18 23:08:42.488775', '2015-03-18 23:08:42.488775')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (288, 'MalvarisKa', 'malvariska@yahoo.com', NULL, 1, '2015-03-18 23:08:42.497588', '2015-03-18 23:08:42.497588')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (289, 'Cynthia', 'cintipas@hotmail.com', NULL, 1, '2015-03-18 23:08:42.514222', '2015-03-18 23:08:42.514222')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (290, 'Paulette', 'ppaiyee@gmail.com', NULL, 1, '2015-03-18 23:08:42.581922', '2015-03-18 23:08:42.581922')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (291, 'Tania', 'tlrobled@uc.cl', NULL, 1, '2015-03-18 23:08:42.589815', '2015-03-18 23:08:42.589815')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (292, 'MIROSLAVA', 'myros84@gmail.com', NULL, 1, '2015-03-18 23:08:42.598754', '2015-03-18 23:08:42.598754')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (293, 'JAVIERA', 'marambio.javiera@gmail.com', NULL, 1, '2015-03-18 23:08:42.606902', '2015-03-18 23:08:42.606902')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (294, 'magdalena', 'mai_aguirre@hotmail.com', NULL, 1, '2015-03-18 23:08:42.614970', '2015-03-18 23:08:42.614970')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (295, 'felipe', 'felipez007@gmail.com', NULL, 1, '2015-03-18 23:08:42.639028', '2015-03-18 23:08:42.639028')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (296, 'Ignacia', 'ignacia.saavedra@gmail.com', NULL, 1, '2015-03-18 23:08:42.648136', '2015-03-18 23:08:42.648136')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (297, 'Rokat', 'buhovomitando@gmail.com', NULL, 1, '2015-03-18 23:08:42.656452', '2015-03-18 23:08:42.656452')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (298, 'Antonella', 'amaleones@hotmail.com', NULL, 1, '2015-03-18 23:08:42.664383', '2015-03-18 23:08:42.664383')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (299, 'sofia', 'dominguez.sofia@gmail.com', NULL, 1, '2015-03-18 23:08:42.675335', '2015-03-18 23:08:42.675335')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (300, 'Arturo', 'arturovalderas@gmail.com', NULL, 1, '2015-03-18 23:08:42.693398', '2015-03-18 23:08:42.693398')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (301, 'camiki', 'camikibazar@gmail.com', NULL, 1, '2015-03-18 23:08:42.708126', '2015-03-18 23:08:42.708126')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (302, 'GABRIEL', 'guamarin@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:42.719557', '2015-03-18 23:08:42.719557')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (303, 'Bernardita', 'bernhadita@hotmail.com', NULL, 1, '2015-03-18 23:08:42.738083', '2015-03-18 23:08:42.738083')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (304, 'Tatiana', 'tativuka@gmail.com', NULL, 1, '2015-03-18 23:08:42.753156', '2015-03-18 23:08:42.753156')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (305, 'Constanza', 'conita663@gmail.com', NULL, 1, '2015-03-18 23:08:42.765135', '2015-03-18 23:08:42.765135')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (306, 'María', 'pascunan@yahoo.com', NULL, 1, '2015-03-18 23:08:42.777016', '2015-03-18 23:08:42.777016')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (307, 'Ricardo', 'ricardomandujano@hotmail.com', NULL, 1, '2015-03-18 23:08:42.787894', '2015-03-18 23:08:42.787894')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (308, 'Jose', 'djjousse2000@yahoo.es', NULL, 1, '2015-03-18 23:08:42.802586', '2015-03-18 23:08:42.802586')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (309, 'Tomás', 'tomasfernandezdiaz@hotmail.com', NULL, 1, '2015-03-18 23:08:42.810351', '2015-03-18 23:08:42.810351')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (310, 'Cecilia', 'flaten@flaten.cl', NULL, 1, '2015-03-18 23:08:42.818967', '2015-03-18 23:08:42.818967')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (311, 'Danilo', 'dgarcia@genesisgrafica.cl', NULL, 1, '2015-03-18 23:08:42.837500', '2015-03-18 23:08:42.837500')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (312, 'Ricardo', 'baeza.ricardo@hotmail.com', NULL, 1, '2015-03-18 23:08:42.852086', '2015-03-18 23:08:42.852086')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (313, 'Christian', 'movimientobohemia@hotmail.com', NULL, 1, '2015-03-18 23:08:42.860516', '2015-03-18 23:08:42.860516')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (314, 'Cristobal', 'cristobalbarrientos@gmail.com', NULL, 1, '2015-03-18 23:08:42.868278', '2015-03-18 23:08:42.868278')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (315, 'Estrella', 'eolivares60@yahoo.es', NULL, 1, '2015-03-18 23:08:42.876966', '2015-03-18 23:08:42.876966')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (316, 'MIKE', 'mikehasick@yahoo.com', NULL, 1, '2015-03-18 23:08:42.887570', '2015-03-18 23:08:42.887570')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (317, 'Gerardo', 'gpalma@inform.dk', NULL, 1, '2015-03-18 23:08:42.900184', '2015-03-18 23:08:42.900184')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (318, 'TRINI', 'woodstocky88@hotmail.com', NULL, 1, '2015-03-18 23:08:42.908399', '2015-03-18 23:08:42.908399')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (319, 'Constanza', 'qotiqox@gmail.com', NULL, 1, '2015-03-18 23:08:42.916873', '2015-03-18 23:08:42.916873')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (320, 'JoTa', 'jotacarloza@gmail.com', NULL, 1, '2015-03-18 23:08:42.924656', '2015-03-18 23:08:42.924656')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (321, 'Isidora', 'galvez.alfageme@gmail.com', NULL, 1, '2015-03-18 23:08:42.938085', '2015-03-18 23:08:42.938085')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (322, 'mariel', 'marielsahue@gmail.com', NULL, 1, '2015-03-18 23:08:42.952721', '2015-03-18 23:08:42.952721')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (323, 'Viviana', 'vivilopezg@yahoo.com', NULL, 1, '2015-03-18 23:08:42.972632', '2015-03-18 23:08:42.972632')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (324, 'Misao', 'nilarron@uc.cl', NULL, 1, '2015-03-18 23:08:42.988190', '2015-03-18 23:08:42.988190')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (325, 'Camila', 'camilmontero@hotmail.com', NULL, 1, '2015-03-18 23:08:43.002612', '2015-03-18 23:08:43.002612')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (326, 'PaBlina', 'pablinacastillo@gmail.com', NULL, 1, '2015-03-18 23:08:43.011407', '2015-03-18 23:08:43.011407')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (327, 'claudio', 'centopeia@csmtelecom.com.br', NULL, 1, '2015-03-18 23:08:43.030720', '2015-03-18 23:08:43.030720')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (328, 'Santiago', 'santiago.ascui@gmail.com', NULL, 1, '2015-03-18 23:08:43.049924', '2015-03-18 23:08:43.049924')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (329, 'vicente', 'vjcocina@gmail.com', NULL, 1, '2015-03-18 23:08:43.059477', '2015-03-18 23:08:43.059477')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (330, 'María', 'm.jesus.seguel@gmail.com', NULL, 1, '2015-03-18 23:08:43.076430', '2015-03-18 23:08:43.076430')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (331, 'Gonzalo', 'gonzalo.salinasc@gmail.com', NULL, 1, '2015-03-18 23:08:43.089901', '2015-03-18 23:08:43.089901')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (332, 'Jorge', 'jomanei@yahoo,com', NULL, 1, '2015-03-18 23:08:43.098486', '2015-03-18 23:08:43.098486')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (333, 'christian', 'cferradasoto@gmail.com', NULL, 1, '2015-03-18 23:08:43.120471', '2015-03-18 23:08:43.120471')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (334, 'Rosa', 'rosaapablaza@yahoo.es', NULL, 1, '2015-03-18 23:08:43.137220', '2015-03-18 23:08:43.137220')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (335, 'Cristian', 'cristianoliva@catapilco.cl', NULL, 1, '2015-03-18 23:08:43.146029', '2015-03-18 23:08:43.146029')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (336, 'pablo', 'pabloxcourten@yahoo.com', NULL, 1, '2015-03-18 23:08:43.154471', '2015-03-18 23:08:43.154471')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (337, 'Catalina', 'catalinavaras@gmail.com', NULL, 1, '2015-03-18 23:08:43.176036', '2015-03-18 23:08:43.176036')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (338, 'Nicolas', 'arquisentidos@gmail.com', NULL, 1, '2015-03-18 23:08:43.190523', '2015-03-18 23:08:43.190523')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (339, 'irene', 'ireneperezperez@yahoo.es', NULL, 1, '2015-03-18 23:08:43.208616', '2015-03-18 23:08:43.208616')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (340, 'Colectivo', 'info@lasnaves.org', NULL, 1, '2015-03-18 23:08:43.221225', '2015-03-18 23:08:43.221225')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (341, 'Claudia', 'claudia_godoy_o@hotmail.com', NULL, 1, '2015-03-18 23:08:43.236588', '2015-03-18 23:08:43.236588')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (342, 'Rodrigo', 'rsgarciapalma@gmail.com', NULL, 1, '2015-03-18 23:08:43.244571', '2015-03-18 23:08:43.244571')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (343, 'lautaro', 'velosianismo@gmail.com', NULL, 1, '2015-03-18 23:08:43.254953', '2015-03-18 23:08:43.254953')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (344, 'mendes', 'paulomendesfaria@terra.com.br', NULL, 1, '2015-03-18 23:08:43.275775', '2015-03-18 23:08:43.275775')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (345, 'marcelo', 'winnim@gmail.com', NULL, 1, '2015-03-18 23:08:43.288674', '2015-03-18 23:08:43.288674')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (346, 'Leandro', 'leandriono@hotmail.com', NULL, 1, '2015-03-18 23:08:43.309449', '2015-03-18 23:08:43.309449')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (347, 'Miguel', 'miguelgaetec@gmail.com', NULL, 1, '2015-03-18 23:08:43.332072', '2015-03-18 23:08:43.332072')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (348, 'Miguel', 'cmiguelbetan@yahoo.com', NULL, 1, '2015-03-18 23:08:43.389796', '2015-03-18 23:08:43.389796')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (349, 'Josefina', 'josefinagonzale@gmail.com', NULL, 1, '2015-03-18 23:08:43.398502', '2015-03-18 23:08:43.398502')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (350, 'Oscar', 'oscarpoliotto@powervt.com.ar', NULL, 1, '2015-03-18 23:08:43.407011', '2015-03-18 23:08:43.407011')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (351, 'joshua', 'joshswalker@yahoo.com', NULL, 1, '2015-03-18 23:08:43.414920', '2015-03-18 23:08:43.414920')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (352, 'Francisca', 'francgaune@hotmail.com', NULL, 1, '2015-03-18 23:08:43.423058', '2015-03-18 23:08:43.423058')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (353, 'valentina', 'valentinacont@hotmail.com', NULL, 1, '2015-03-18 23:08:43.435741', '2015-03-18 23:08:43.435741')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (354, 'SEBASTIAN', 'sebastiansilva_p@hotmail.com', NULL, 1, '2015-03-18 23:08:43.444172', '2015-03-18 23:08:43.444172')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (355, 'Carolina', 'wangulem_@hotmail.com', NULL, 1, '2015-03-18 23:08:43.452751', '2015-03-18 23:08:43.452751')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (356, 'HILACHENTO', 'gpm.grafik@gmail.com', NULL, 1, '2015-03-18 23:08:43.461381', '2015-03-18 23:08:43.461381')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (357, 'Armando', 'armandoruiz8@hotmail.com', NULL, 1, '2015-03-18 23:08:43.469855', '2015-03-18 23:08:43.469855')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (358, 'Felipe', 'hilvanado@gmail.com', NULL, 1, '2015-03-18 23:08:43.486514', '2015-03-18 23:08:43.486514')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (359, 'Pilar', 'angepil_@hotmail.com', NULL, 1, '2015-03-18 23:08:43.494225', '2015-03-18 23:08:43.494225')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (360, 'Eduardo', 'ef@mamchiloe.cl', NULL, 1, '2015-03-18 23:08:43.502629', '2015-03-18 23:08:43.502629')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (361, 'ANDREA', 'andreaugarte@gmail.com', NULL, 1, '2015-03-18 23:08:43.521866', '2015-03-18 23:08:43.521866')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (362, 'Catalina', 'catatuca@yahoo.com', NULL, 1, '2015-03-18 23:08:43.542972', '2015-03-18 23:08:43.542972')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (363, 'NORBERTO', 'tobernorberto@yahoo.com.mx', NULL, 1, '2015-03-18 23:08:43.565951', '2015-03-18 23:08:43.565951')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (364, 'Alvaro', 'alvaropaz21@gmail.com', NULL, 1, '2015-03-18 23:08:43.587225', '2015-03-18 23:08:43.587225')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (365, 'Felipe', 'carrionfelipe@yahoo.com', NULL, 1, '2015-03-18 23:08:43.610900', '2015-03-18 23:08:43.610900')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (366, 'matias', 'matiasantamaria@hotmail.com', NULL, 1, '2015-03-18 23:08:43.634042', '2015-03-18 23:08:43.634042')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (367, 'ilustraciones', 'albordedelborde@hotmail.com', NULL, 1, '2015-03-18 23:08:43.654847', '2015-03-18 23:08:43.654847')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (368, 'Jonathan', 'profesorjleyton@yahoo.es', NULL, 1, '2015-03-18 23:08:43.676231', '2015-03-18 23:08:43.676231')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (369, 'PAULO', 'emperor@phenomena.cl', NULL, 1, '2015-03-18 23:08:43.699438', '2015-03-18 23:08:43.699438')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (370, 'domenico', 'dsthandier@gmail.com', NULL, 1, '2015-03-18 23:08:43.715136', '2015-03-18 23:08:43.715136')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (371, 'ESCAFFI', 'escaffi0@gmail.com', NULL, 1, '2015-03-18 23:08:43.723642', '2015-03-18 23:08:43.723642')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (372, 'Igor', 'igor_barrenechea@hotmail.com', NULL, 1, '2015-03-18 23:08:43.736267', '2015-03-18 23:08:43.736267')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (373, 'Carolina', 'antitodozine@gmail.com', NULL, 1, '2015-03-18 23:08:43.761114', '2015-03-18 23:08:43.761114')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (374, 'Martina', 'martina.asenjo@gmail.com', NULL, 1, '2015-03-18 23:08:43.770899', '2015-03-18 23:08:43.770899')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (375, 'ximena', 'piturasxgeisse@hotmail.com', NULL, 1, '2015-03-18 23:08:43.785163', '2015-03-18 23:08:43.785163')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (376, 'Rosario', 'rosanagh85@hotmail.com', NULL, 1, '2015-03-18 23:08:43.792792', '2015-03-18 23:08:43.792792')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (377, 'Ignacio', 'ignacio@factor-d.cl', NULL, 1, '2015-03-18 23:08:43.802399', '2015-03-18 23:08:43.802399')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (378, 'Joaquín', 'joaquinc@gmail.com', NULL, 1, '2015-03-18 23:08:43.811323', '2015-03-18 23:08:43.811323')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (379, 'Paula', 'paulaporpaula@gmail.com', NULL, 1, '2015-03-18 23:08:43.819824', '2015-03-18 23:08:43.819824')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (380, 'Cote', 'coteleonlopez@gmail.com', NULL, 1, '2015-03-18 23:08:43.835134', '2015-03-18 23:08:43.835134')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (381, 'ignacio', 'indice1980@gmail.com', NULL, 1, '2015-03-18 23:08:43.842901', '2015-03-18 23:08:43.842901')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (382, 'ROSARIO', 'castellano.rosario@gmail.com', NULL, 1, '2015-03-18 23:08:43.852272', '2015-03-18 23:08:43.852272')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (383, 'Elisa', 'elisitab@gmail.com', NULL, 1, '2015-03-18 23:08:43.862384', '2015-03-18 23:08:43.862384')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (384, 'Juan', 'jpcorreadigital@gmail.com', NULL, 1, '2015-03-18 23:08:43.877099', '2015-03-18 23:08:43.877099')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (385, 'Paulina', 'plutonexiliado@yahoo.es', NULL, 1, '2015-03-18 23:08:43.890291', '2015-03-18 23:08:43.890291')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (386, 'zulay', 'zulaypina@yahoo.es', NULL, 1, '2015-03-18 23:08:43.909986', '2015-03-18 23:08:43.909986')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (387, 'marcos', 'marcosvillacorta@yahoo.com', NULL, 1, '2015-03-18 23:08:43.927078', '2015-03-18 23:08:43.927078')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (388, 'Andrea', 'andreasilvaguzman@hotmail.com', NULL, 1, '2015-03-18 23:08:43.936857', '2015-03-18 23:08:43.936857')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (389, 'Jose', 'villover@hotmail.com', NULL, 1, '2015-03-18 23:08:43.945587', '2015-03-18 23:08:43.945587')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (390, 'Trafixxx', 'mr.trafic@gmail.com', NULL, 1, '2015-03-18 23:08:43.954194', '2015-03-18 23:08:43.954194')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (391, 'MANE', 'mane_adaro@yahoo.es', NULL, 1, '2015-03-18 23:08:43.964358', '2015-03-18 23:08:43.964358')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (392, 'CATALINA', 'catalinaschliebener@buuuu.com', NULL, 1, '2015-03-18 23:08:43.982730', '2015-03-18 23:08:43.982730')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (393, 'valentina', 'valecostabal@gmail.com', NULL, 1, '2015-03-18 23:08:43.991824', '2015-03-18 23:08:43.991824')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (394, 'Sergio', 'peerro@gmail.com', NULL, 1, '2015-03-18 23:08:44.000378', '2015-03-18 23:08:44.000378')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (395, 'Camila', 'camilaletelier@hotmail.com', NULL, 1, '2015-03-18 23:08:44.010138', '2015-03-18 23:08:44.010138')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (396, '[:::LYNC:::]', 'evelyn.cautivo@gmail.com', NULL, 1, '2015-03-18 23:08:44.018814', '2015-03-18 23:08:44.018814')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (397, 'lourdes', 'yuyiazpiri@hotmail.com', NULL, 1, '2015-03-18 23:08:44.034644', '2015-03-18 23:08:44.034644')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (398, 'Mauricio', 'mazzzuco@gmail.com', NULL, 1, '2015-03-18 23:08:44.053917', '2015-03-18 23:08:44.053917')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (399, 'Catalina', 'colibreja@hotmail.com', NULL, 1, '2015-03-18 23:08:44.065749', '2015-03-18 23:08:44.065749')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (400, 'ariel', 'mauro.longa@gmail.com', NULL, 1, '2015-03-18 23:08:44.084778', '2015-03-18 23:08:44.084778')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (401, 'magdalena', 'manefla@gmail.com', NULL, 1, '2015-03-18 23:08:44.093958', '2015-03-18 23:08:44.093958')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (402, 'Sofia', 'sofiavergar@gmail.com', NULL, 1, '2015-03-18 23:08:44.150306', '2015-03-18 23:08:44.150306')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (403, 'Andrea', 'amontanea@gmail.com', NULL, 1, '2015-03-18 23:08:44.159168', '2015-03-18 23:08:44.159168')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (404, 'Nicolas', 'nquintano@yahoo.com', NULL, 1, '2015-03-18 23:08:44.167642', '2015-03-18 23:08:44.167642')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (405, 'Soledad', 'sol_blas@hotmail.com', NULL, 1, '2015-03-18 23:08:44.176905', '2015-03-18 23:08:44.176905')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (406, 'Ismaela', 'ismaelav@gmail.com blueberrybird18@hotmail.com', NULL, 1, '2015-03-18 23:08:44.184561', '2015-03-18 23:08:44.184561')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (407, 'Maria', 'maria_jose_gas@hotmail.com', NULL, 1, '2015-03-18 23:08:44.192521', '2015-03-18 23:08:44.192521')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (408, 'Leonardo', 'invunchearte@gmail.com', NULL, 1, '2015-03-18 23:08:44.204419', '2015-03-18 23:08:44.204419')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (409, 'MARIA', 'majobarros@yahoo.com', NULL, 1, '2015-03-18 23:08:44.212767', '2015-03-18 23:08:44.212767')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (410, 'RORIGO', 'rodrigofigueroa@arquitas.cl', NULL, 1, '2015-03-18 23:08:44.231754', '2015-03-18 23:08:44.231754')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (411, 'Alecks', 'herz89@hotmail.com', NULL, 1, '2015-03-18 23:08:44.252999', '2015-03-18 23:08:44.252999')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (412, 'adrian', 'adrian.gouet@gmail.com', NULL, 1, '2015-03-18 23:08:44.264347', '2015-03-18 23:08:44.264347')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (413, 'Gonzalo', 'Pinorra80@yahoo.es', NULL, 1, '2015-03-18 23:08:44.280831', '2015-03-18 23:08:44.280831')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (414, 'Patricio', 'pekind@gmail.com', NULL, 1, '2015-03-18 23:08:44.300056', '2015-03-18 23:08:44.300056')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (415, 'johan', 'paulgalue@hotmail.com', NULL, 1, '2015-03-18 23:08:44.321547', '2015-03-18 23:08:44.321547')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (416, 'Claudia', 'xlaomelo@hotmail.com', NULL, 1, '2015-03-18 23:08:44.343110', '2015-03-18 23:08:44.343110')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (417, 'Pablo', 'pabloandresmontt@gmail.com', NULL, 1, '2015-03-18 23:08:44.365974', '2015-03-18 23:08:44.365974')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (418, 'sara', 'saraoblisar@yahoo.es', NULL, 1, '2015-03-18 23:08:44.388096', '2015-03-18 23:08:44.388096')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (419, 'CAROLA', 'carolasep@gmail.com', NULL, 1, '2015-03-18 23:08:44.410974', '2015-03-18 23:08:44.410974')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (420, 'Cristobal', 'punto.clava@hotmail.com', NULL, 1, '2015-03-18 23:08:44.432730', '2015-03-18 23:08:44.432730')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (421, 'Antonio', 'antogagliano@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:44.454159', '2015-03-18 23:08:44.454159')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (422, 'Carol', 'carolv9@gmail.com', NULL, 1, '2015-03-18 23:08:44.477465', '2015-03-18 23:08:44.477465')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (423, 'PATRICIO', 'patricio.fc@gmail.com', NULL, 1, '2015-03-18 23:08:44.499608', '2015-03-18 23:08:44.499608')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (424, 'cristal', 'crystalships@hotmail.com', NULL, 1, '2015-03-18 23:08:44.521523', '2015-03-18 23:08:44.521523')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (425, 'Soledad', 'solerusso@gmail.com', NULL, 1, '2015-03-18 23:08:44.543644', '2015-03-18 23:08:44.543644')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (426, 'ROSITA', 'rosabeas5@hotmail.com', NULL, 1, '2015-03-18 23:08:44.567957', '2015-03-18 23:08:44.567957')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (427, 'Joaquín', 'joaquin.r.u@gmail.com', NULL, 1, '2015-03-18 23:08:44.588892', '2015-03-18 23:08:44.588892')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (428, 'Rodrigo', 'primate1@gmail.com', NULL, 1, '2015-03-18 23:08:44.613147', '2015-03-18 23:08:44.613147')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (429, 'OCUPAS', 'ocupasocupas@gmail.com', NULL, 1, '2015-03-18 23:08:44.625067', '2015-03-18 23:08:44.625067')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (430, 'Graciela', 'gquercia@gmail.com', NULL, 1, '2015-03-18 23:08:44.634179', '2015-03-18 23:08:44.634179')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (431, 'BuildingtheK', 'buildingthek@gmail.com', NULL, 1, '2015-03-18 23:08:44.649704', '2015-03-18 23:08:44.649704')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (432, 'isidora', 'isidoraira@gmail.com', NULL, 1, '2015-03-18 23:08:44.658035', '2015-03-18 23:08:44.658035')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (433, 'pia', 'bella_eternidad@hotmail.com', NULL, 1, '2015-03-18 23:08:44.666947', '2015-03-18 23:08:44.666947')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (434, 'Nicolas', 'nicolaspmelo@hotmail.com', NULL, 1, '2015-03-18 23:08:44.675810', '2015-03-18 23:08:44.675810')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (435, 'Jon', 'artificisanimal@hotmail.com', NULL, 1, '2015-03-18 23:08:44.684240', '2015-03-18 23:08:44.684240')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (436, 'francisca', 'fran.ahlers@gmail.com', NULL, 1, '2015-03-18 23:08:44.699977', '2015-03-18 23:08:44.699977')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (437, 'Cristóbal', 'gajardopinta@yahoo.es', NULL, 1, '2015-03-18 23:08:44.708755', '2015-03-18 23:08:44.708755')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (438, 'Ivo', 'losolteros@hotmail.com', NULL, 1, '2015-03-18 23:08:44.719826', '2015-03-18 23:08:44.719826')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (439, 'GONZALO', 'ZANGOLAS@HOTMAIL.COM', NULL, 1, '2015-03-18 23:08:44.737637', '2015-03-18 23:08:44.737637')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (440, 'María', 'mariaignaciadiazv@hotmail.com', NULL, 1, '2015-03-18 23:08:44.754256', '2015-03-18 23:08:44.754256')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (441, 'Darlin', 'isgilians@gmail.com', NULL, 1, '2015-03-18 23:08:44.771950', '2015-03-18 23:08:44.771950')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (442, 'Misstresenoritas', 'misstresenoritas@gmail.com', NULL, 1, '2015-03-18 23:08:44.850724', '2015-03-18 23:08:44.850724')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (443, 'juan', 'juanignacio.cl@gmail.com', NULL, 1, '2015-03-18 23:08:44.866388', '2015-03-18 23:08:44.866388')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (444, 'esre', 'oij oi@jn.cl', NULL, 1, '2015-03-18 23:08:44.874606', '2015-03-18 23:08:44.874606')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (445, 'x', 'hematie_x@hotmail.com', NULL, 1, '2015-03-18 23:08:44.882537', '2015-03-18 23:08:44.882537')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (446, 'Cecilia', 'ceciliaavendanio@hotmail.com', NULL, 1, '2015-03-18 23:08:44.890884', '2015-03-18 23:08:44.890884')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (447, 'carola', 'cstrmelj@gmail.com', NULL, 1, '2015-03-18 23:08:44.899802', '2015-03-18 23:08:44.899802')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (448, 'Beatriz', 'beatrizasofia@hotmail.com', NULL, 1, '2015-03-18 23:08:44.915897', '2015-03-18 23:08:44.915897')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (449, 'MAURICIO', 'mauriciovalenciacardenas@gmail.com', NULL, 1, '2015-03-18 23:08:44.924962', '2015-03-18 23:08:44.924962')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (450, 'Germán', 'evangelisti@gmx.net', NULL, 1, '2015-03-18 23:08:44.933105', '2015-03-18 23:08:44.933105')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (451, 'Jorge', 'jisilva1@uc.cl', NULL, 1, '2015-03-18 23:08:44.941277', '2015-03-18 23:08:44.941277')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (452, 'Astrid', 'alluantu@gmail.com', NULL, 1, '2015-03-18 23:08:44.949674', '2015-03-18 23:08:44.949674')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (453, 'Matías', 'matiaslab@yahoo.com', NULL, 1, '2015-03-18 23:08:44.965808', '2015-03-18 23:08:44.965808')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (454, 'CATALINA', 'catalina.delacruz@gmail.com', NULL, 1, '2015-03-18 23:08:44.974898', '2015-03-18 23:08:44.974898')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (455, 'enrique', 'errejemex@hotmail.com', NULL, 1, '2015-03-18 23:08:44.982958', '2015-03-18 23:08:44.982958')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (456, 'Iván', 'ivan.javis@gmail.com', NULL, 1, '2015-03-18 23:08:44.991911', '2015-03-18 23:08:44.991911')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (457, 'Cristian', 'cristianvega@hotmail.com', NULL, 1, '2015-03-18 23:08:45.014878', '2015-03-18 23:08:45.014878')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (458, 'Macarena', 'macajarpa@gmail.com', NULL, 1, '2015-03-18 23:08:45.023685', '2015-03-18 23:08:45.023685')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (459, 'Juan', 'jpgreingardt@hotmail.com', NULL, 1, '2015-03-18 23:08:45.032743', '2015-03-18 23:08:45.032743')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (460, 'J', 'josefinastorga@gmail.com', NULL, 1, '2015-03-18 23:08:45.040578', '2015-03-18 23:08:45.040578')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (461, 'mimi', 'miguelmichelson@2iopjfji.cl', NULL, 1, '2015-03-18 23:08:45.049607', '2015-03-18 23:08:45.049607')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (462, 'Zaida', 'zaidagr77@yahoo.es', NULL, 1, '2015-03-18 23:08:45.065518', '2015-03-18 23:08:45.065518')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (463, 'Adelaida', 'atlarrai@uc.cl', NULL, 1, '2015-03-18 23:08:45.073989', '2015-03-18 23:08:45.073989')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (464, 'Victória', 'lilithvoncarter@gmail.com', NULL, 1, '2015-03-18 23:08:45.082102', '2015-03-18 23:08:45.082102')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (465, 'Hector', 'e7online@gmail.com', NULL, 1, '2015-03-18 23:08:45.090751', '2015-03-18 23:08:45.090751')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (466, 'loreto', 'loretin.metalera@gmail.com', NULL, 1, '2015-03-18 23:08:45.099993', '2015-03-18 23:08:45.099993')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (467, 'Cecilia', 'cecilia.albertina@gmail.com', NULL, 1, '2015-03-18 23:08:45.115874', '2015-03-18 23:08:45.115874')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (468, 'HIDALGO', 'hidalgobastien1@hotmail.com', NULL, 1, '2015-03-18 23:08:45.124277', '2015-03-18 23:08:45.124277')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (469, 'Jorge', 'jorgeovandos@gmail.com', NULL, 1, '2015-03-18 23:08:45.132964', '2015-03-18 23:08:45.132964')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (470, 'Consuelo', 'mchernandezj@wanadoo.es', NULL, 1, '2015-03-18 23:08:45.141794', '2015-03-18 23:08:45.141794')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (471, 'Patricia', 'pattygh@gmail.com', NULL, 1, '2015-03-18 23:08:45.153103', '2015-03-18 23:08:45.153103')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (472, 'laladiablo', 'muere@gmail.com', NULL, 1, '2015-03-18 23:08:45.170837', '2015-03-18 23:08:45.170837')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (473, 'ANDRES', 'morapepo@yahoo.es', NULL, 1, '2015-03-18 23:08:45.188170', '2015-03-18 23:08:45.188170')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (474, 'alejandro', 'alejandrobalbontin@manquehue.net', NULL, 1, '2015-03-18 23:08:45.198720', '2015-03-18 23:08:45.198720')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (475, 'gabriel', 'g.lazoq@gmail.com', NULL, 1, '2015-03-18 23:08:45.214823', '2015-03-18 23:08:45.214823')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (476, 'Ariel', 'ariel_maluenda@hotmail.com', NULL, 1, '2015-03-18 23:08:45.574862', '2015-03-18 23:08:45.574862')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (477, 'miguel', 'super_miguelin@msn.com', NULL, 1, '2015-03-18 23:08:45.584504', '2015-03-18 23:08:45.584504')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (478, 'RANO', 'satanicnerd@hotmail.com', NULL, 1, '2015-03-18 23:08:45.593048', '2015-03-18 23:08:45.593048')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (479, 'Bernardita', 'bernigoycoolea@gmail.com', NULL, 1, '2015-03-18 23:08:45.600893', '2015-03-18 23:08:45.600893')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (480, 'LISAMALLA', 'Lisamalla@yahoo.es', NULL, 1, '2015-03-18 23:08:45.609103', '2015-03-18 23:08:45.609103')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (481, 'Cristian', 'cristianoliva@yahoo.com', NULL, 1, '2015-03-18 23:08:45.631786', '2015-03-18 23:08:45.631786')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (482, 'Polla', 'pollatrujillo@gmail.com', NULL, 1, '2015-03-18 23:08:45.641053', '2015-03-18 23:08:45.641053')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (483, 'diana', 'dianalakatira@hotmail.com', NULL, 1, '2015-03-18 23:08:45.648484', '2015-03-18 23:08:45.648484')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (484, 'J', 'jnpbloo@gmail.com', NULL, 1, '2015-03-18 23:08:45.656340', '2015-03-18 23:08:45.656340')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (485, 'Eliseo', 'adrenaliniik0@gmail.com', NULL, 1, '2015-03-18 23:08:45.665194', '2015-03-18 23:08:45.665194')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (486, 'HubeSalamanca', 'hubearts@gmail.com', NULL, 1, '2015-03-18 23:08:45.681980', '2015-03-18 23:08:45.681980')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (487, 'nayem', 'rouge.lona@gmail.com', NULL, 1, '2015-03-18 23:08:45.690166', '2015-03-18 23:08:45.690166')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (488, 'lola', 'lolamorenos@hotmail.com', NULL, 1, '2015-03-18 23:08:45.697919', '2015-03-18 23:08:45.697919')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (489, 'hejary', 'hejary@yahoo.com', NULL, 1, '2015-03-18 23:08:45.706344', '2015-03-18 23:08:45.706344')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (490, 'JAVIER', 'javierchorbadjian@gmail.com', NULL, 1, '2015-03-18 23:08:45.714327', '2015-03-18 23:08:45.714327')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (491, 'J', 'jgarridomarin@hotmail.com', NULL, 1, '2015-03-18 23:08:45.730872', '2015-03-18 23:08:45.730872')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (492, 'Macarena', 'mrta000@gmail.com', NULL, 1, '2015-03-18 23:08:45.739692', '2015-03-18 23:08:45.739692')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (493, 'gricelle', 'shelita_22@hotmail.com', NULL, 1, '2015-03-18 23:08:45.761114', '2015-03-18 23:08:45.761114')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (494, 'Waldo', 'bravo@waldobravo.com.br', NULL, 1, '2015-03-18 23:08:45.781870', '2015-03-18 23:08:45.781870')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (495, 'Mirta', 'mirtabenavente@gmail.com', NULL, 1, '2015-03-18 23:08:45.838851', '2015-03-18 23:08:45.838851')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (496, 'fu', 'fupablo@gmail.com', NULL, 1, '2015-03-18 23:08:45.848078', '2015-03-18 23:08:45.848078')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (497, 'ricardo', 'rbarrose@gmail.com', NULL, 1, '2015-03-18 23:08:45.855647', '2015-03-18 23:08:45.855647')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (498, 'Kohen', 'artes_kohen@yahoo.es', NULL, 1, '2015-03-18 23:08:45.864866', '2015-03-18 23:08:45.864866')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (499, 'javier', 'molinarte@gmail.com', NULL, 1, '2015-03-18 23:08:45.874325', '2015-03-18 23:08:45.874325')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (500, 'ABC', 'chapinakaire@yahoo.com', NULL, 1, '2015-03-18 23:08:45.897574', '2015-03-18 23:08:45.897574')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (501, 'Nicole', 'segunda.piiel@gmail.com', NULL, 1, '2015-03-18 23:08:45.921715', '2015-03-18 23:08:45.921715')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (502, 'Quehaceres', 'quehaceres_domesticos@yahoo.com', NULL, 1, '2015-03-18 23:08:45.930682', '2015-03-18 23:08:45.930682')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (503, 'Carolina', 'lacaro360@hotmail.com', NULL, 1, '2015-03-18 23:08:45.946948', '2015-03-18 23:08:45.946948')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (504, 'pablo', 'pabloalbustos@gmail.com', NULL, 1, '2015-03-18 23:08:45.955288', '2015-03-18 23:08:45.955288')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (505, 'José', 'jpgodoy@uc.cl', NULL, 1, '2015-03-18 23:08:45.963166', '2015-03-18 23:08:45.963166')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (506, 'Alfonso', 'pinturas@alfonsofernandez.cl', NULL, 1, '2015-03-18 23:08:45.972072', '2015-03-18 23:08:45.972072')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (507, 'COTE', 'cote@cotesantana.com', NULL, 1, '2015-03-18 23:08:45.980526', '2015-03-18 23:08:45.980526')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (508, 'GABRIEL', 'gacanale@hotmail.com', NULL, 1, '2015-03-18 23:08:45.996377', '2015-03-18 23:08:45.996377')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (509, 'Francisca', 'franuyeah@gmail.com', NULL, 1, '2015-03-18 23:08:46.005813', '2015-03-18 23:08:46.005813')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (510, 'MICHELLE', 'cemimi@hotmail.com', NULL, 1, '2015-03-18 23:08:46.013366', '2015-03-18 23:08:46.013366')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (511, 'richard', 'pataghom@gmail.com', NULL, 1, '2015-03-18 23:08:46.022705', '2015-03-18 23:08:46.022705')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (512, 'Alvaro', 'alvaromegaherz@gmail.com', NULL, 1, '2015-03-18 23:08:46.030524', '2015-03-18 23:08:46.030524')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (513, 'Diana', 'diana.navarrete@gmail.com', NULL, 1, '2015-03-18 23:08:46.046590', '2015-03-18 23:08:46.046590')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (514, 'Karla', 'xkarlix@gmail.com', NULL, 1, '2015-03-18 23:08:46.054783', '2015-03-18 23:08:46.054783')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (515, 'José', 'jlgacitua@gmail.com', NULL, 1, '2015-03-18 23:08:46.063050', '2015-03-18 23:08:46.063050')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (516, 'KATHACLIXMO', 'mujergallinaempollando@hotmail.com', NULL, 1, '2015-03-18 23:08:46.071685', '2015-03-18 23:08:46.071685')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (517, 'Francisca', 'panxitavidela@gmail.com', NULL, 1, '2015-03-18 23:08:46.080368', '2015-03-18 23:08:46.080368')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (518, 'sioux', 'clonsioux@yahoo.com', NULL, 1, '2015-03-18 23:08:46.098553', '2015-03-18 23:08:46.098553')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (519, 'Obreque', 'jjobreque@gmail.com', NULL, 1, '2015-03-18 23:08:46.112227', '2015-03-18 23:08:46.112227')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (520, 'Paulo', 'toledospencer@gmail.com', NULL, 1, '2015-03-18 23:08:46.121345', '2015-03-18 23:08:46.121345')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (521, 'Manuel', 'mperis_clases@hotmail.com', NULL, 1, '2015-03-18 23:08:46.129678', '2015-03-18 23:08:46.129678')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (522, 'felipe', 'n@mi.cl', NULL, 1, '2015-03-18 23:08:46.148210', '2015-03-18 23:08:46.148210')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (523, 'fran', 'francisca.wink@hotmail.com', NULL, 1, '2015-03-18 23:08:46.157083', '2015-03-18 23:08:46.157083')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (524, 'Daniela', 'siempreprimitabs@gmail.com', NULL, 1, '2015-03-18 23:08:46.176918', '2015-03-18 23:08:46.176918')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (525, 'Pablo', 'pablo.montealegre@gmail.com', NULL, 1, '2015-03-18 23:08:46.195480', '2015-03-18 23:08:46.195480')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (526, 'boomsta', 'boomsta_csa@hotmail.com', NULL, 1, '2015-03-18 23:08:46.210812', '2015-03-18 23:08:46.210812')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (527, 'Ignacio', 'iwong85@hotmail.com', NULL, 1, '2015-03-18 23:08:46.221619', '2015-03-18 23:08:46.221619')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (528, 'Amanda', 'amandinga07@hotmail.com', NULL, 1, '2015-03-18 23:08:46.244115', '2015-03-18 23:08:46.244115')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (529, 'KareM', 'pratena@gmail.com', NULL, 1, '2015-03-18 23:08:46.260749', '2015-03-18 23:08:46.260749')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (530, 'Constanza', 'constanzavergarac@gmail.com', NULL, 1, '2015-03-18 23:08:46.273470', '2015-03-18 23:08:46.273470')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (531, 'Sabrina', 'salore_4@hotmail.com', NULL, 1, '2015-03-18 23:08:46.293743', '2015-03-18 23:08:46.293743')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (532, 'animal', '123456789@giuhmail.com', NULL, 1, '2015-03-18 23:08:46.302256', '2015-03-18 23:08:46.302256')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (533, 'Nadia', 'nadiamaldonado@udec.cl', NULL, 1, '2015-03-18 23:08:46.311714', '2015-03-18 23:08:46.311714')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (534, 'julio', 'kintun@vtr.net', NULL, 1, '2015-03-18 23:08:46.320339', '2015-03-18 23:08:46.320339')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (535, 'vonpfeiler', 'piliqv@hotmail.com', NULL, 1, '2015-03-18 23:08:46.328806', '2015-03-18 23:08:46.328806')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (536, 'hernan', 'hernan@rinfm.com', NULL, 1, '2015-03-18 23:08:46.345957', '2015-03-18 23:08:46.345957')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (537, 'Sergio', 'amnesiac15@hotmail.com', NULL, 1, '2015-03-18 23:08:46.355238', '2015-03-18 23:08:46.355238')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (538, 'Pilar', 'pilimack@gmail.com', NULL, 1, '2015-03-18 23:08:46.364462', '2015-03-18 23:08:46.364462')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (539, 'Pablo', 'pabloserralepo@hotmail.com', NULL, 1, '2015-03-18 23:08:46.376778', '2015-03-18 23:08:46.376778')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (540, 'Paloma', 'paloma.rodriguez.s@gmail.com', NULL, 1, '2015-03-18 23:08:46.396019', '2015-03-18 23:08:46.396019')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (541, 'Paulina', 'paulina.narvaez.o@gmail.com', NULL, 1, '2015-03-18 23:08:46.405198', '2015-03-18 23:08:46.405198')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (542, 'Viviana', 'vivianacorvalan@gmail.com', NULL, 1, '2015-03-18 23:08:46.413751', '2015-03-18 23:08:46.413751')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (543, 'Pía', 'mariapia.vasquez@gmail.com', NULL, 1, '2015-03-18 23:08:46.423197', '2015-03-18 23:08:46.423197')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (544, 'Claudio', 'cortesclaudio@yahoo.es', NULL, 1, '2015-03-18 23:08:46.433215', '2015-03-18 23:08:46.433215')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (545, 'Pablo', 'solisdalencon@gmail.com', NULL, 1, '2015-03-18 23:08:46.493494', '2015-03-18 23:08:46.493494')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (546, 'RAUL', 'rulonunez@gmail.com', NULL, 1, '2015-03-18 23:08:46.501250', '2015-03-18 23:08:46.501250')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (547, 'Daniel', 'sandavey@hotmail.com', NULL, 1, '2015-03-18 23:08:46.509789', '2015-03-18 23:08:46.509789')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (548, 'Franco', 'francolden@gmail.com', NULL, 1, '2015-03-18 23:08:46.517777', '2015-03-18 23:08:46.517777')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (549, 'Karen', 'karengutmont@gmail.com', NULL, 1, '2015-03-18 23:08:46.526066', '2015-03-18 23:08:46.526066')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (550, 'AZBE', 'ricardodiparodi@gmail.com', NULL, 1, '2015-03-18 23:08:46.534193', '2015-03-18 23:08:46.534193')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (551, 'ampolletas', 'ampolletas@hotmail.com', NULL, 1, '2015-03-18 23:08:46.553184', '2015-03-18 23:08:46.553184')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (552, 'alvarovalenzuela', 'alvaro.vt@hotmail.com', NULL, 1, '2015-03-18 23:08:46.562698', '2015-03-18 23:08:46.562698')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (553, 'ANDRES', 'andreshermosilla@andreshermosilla.cl', NULL, 1, '2015-03-18 23:08:46.575494', '2015-03-18 23:08:46.575494')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (554, 'Camila', 'pinogay@hotmail.com', NULL, 1, '2015-03-18 23:08:46.596019', '2015-03-18 23:08:46.596019')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (555, 'Constanza', 'constanzagreend@gmail.com', NULL, 1, '2015-03-18 23:08:46.605601', '2015-03-18 23:08:46.605601')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (556, 'Bárbara', 'bjerezc@gmail.com', NULL, 1, '2015-03-18 23:08:46.613665', '2015-03-18 23:08:46.613665')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (557, 'pancho', 'pintor@panchoalvarezflores.cl', NULL, 1, '2015-03-18 23:08:46.625647', '2015-03-18 23:08:46.625647')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (558, 'Rodrigo', 'rsotovic@gmail.com', NULL, 1, '2015-03-18 23:08:46.647835', '2015-03-18 23:08:46.647835')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (559, 'nicolas', 'nicolaswormull@gmail.com', NULL, 1, '2015-03-18 23:08:46.661798', '2015-03-18 23:08:46.661798')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (560, 'Jocelyne', 'jrdroguett@gmail.com', NULL, 1, '2015-03-18 23:08:46.670549', '2015-03-18 23:08:46.670549')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (561, 'javiera', 'javi.viaje@gmail.com', NULL, 1, '2015-03-18 23:08:46.694286', '2015-03-18 23:08:46.694286')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (562, 'pascuala', 'pascuala.lira@gmail.com', NULL, 1, '2015-03-18 23:08:46.753698', '2015-03-18 23:08:46.753698')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (563, 'Ruby', 'ruby.lizana@gmail.com', NULL, 1, '2015-03-18 23:08:46.763721', '2015-03-18 23:08:46.763721')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (564, 'Ignacia', 'ignaciamesa@gmail.com', NULL, 1, '2015-03-18 23:08:46.773161', '2015-03-18 23:08:46.773161')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (565, 'jose', 'maderajose@hotmail.com', NULL, 1, '2015-03-18 23:08:46.781726', '2015-03-18 23:08:46.781726')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (566, 'Dartinella', 'dartinella.toselli@gmail.com', NULL, 1, '2015-03-18 23:08:46.789992', '2015-03-18 23:08:46.789992')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (567, 'María', 'euge@akel.cl', NULL, 1, '2015-03-18 23:08:46.798269', '2015-03-18 23:08:46.798269')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (568, 'olga', 'olgawon@gmail.com', NULL, 1, '2015-03-18 23:08:46.812109', '2015-03-18 23:08:46.812109')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (569, 'Tamara', 'tamarapope@gmail.com', NULL, 1, '2015-03-18 23:08:46.825888', '2015-03-18 23:08:46.825888')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (570, 'ALEJANDRA', 'alefuenzalida2@gmail.com', NULL, 1, '2015-03-18 23:08:46.834584', '2015-03-18 23:08:46.834584')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (571, 'francisco', 'papasfritas52@hotmail.com', NULL, 1, '2015-03-18 23:08:46.843308', '2015-03-18 23:08:46.843308')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (572, 'Bernardita', 'ruciadelica@gmail.com', NULL, 1, '2015-03-18 23:08:46.863669', '2015-03-18 23:08:46.863669')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (573, 'Cecilia', 'csidiseno@gmail.com', NULL, 1, '2015-03-18 23:08:46.876134', '2015-03-18 23:08:46.876134')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (574, 'Icha', 'ichavizcarra@alfonsofernandez.cl', NULL, 1, '2015-03-18 23:08:46.884764', '2015-03-18 23:08:46.884764')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (575, 'Inviernogris', 'joana@telesurf.com.py', NULL, 1, '2015-03-18 23:08:46.897420', '2015-03-18 23:08:46.897420')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (576, 'SERGIO', 'sirredo@hotmail.com', NULL, 1, '2015-03-18 23:08:46.912073', '2015-03-18 23:08:46.912073')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (577, 'Pamela', 'pamelavergara.o@gmail.com', NULL, 1, '2015-03-18 23:08:46.921170', '2015-03-18 23:08:46.921170')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (578, 'Barbara', 'barbara.dlj@gmail.com', NULL, 1, '2015-03-18 23:08:46.929462', '2015-03-18 23:08:46.929462')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (579, 'M', 'marylinpardo@gmail.com', NULL, 1, '2015-03-18 23:08:46.938216', '2015-03-18 23:08:46.938216')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (580, 'ignacio', 'ignacio540@hotmail.com', NULL, 1, '2015-03-18 23:08:46.957647', '2015-03-18 23:08:46.957647')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (581, 'gaston', 'gaston_bertrand@hotmail.com', NULL, 1, '2015-03-18 23:08:46.976966', '2015-03-18 23:08:46.976966')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (582, 'Matias', 'matiasacunaramirez@gmail.com', NULL, 1, '2015-03-18 23:08:46.986119', '2015-03-18 23:08:46.986119')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (583, 'Daniel', 'lorenzodelbosque@gmail.com', NULL, 1, '2015-03-18 23:08:47.003059', '2015-03-18 23:08:47.003059')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (584, 'BENJAMIN', 'ultraretro@chile.com', NULL, 1, '2015-03-18 23:08:47.021960', '2015-03-18 23:08:47.021960')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (585, 'Carlos', 'charlesbronson2000@hotmail.com', NULL, 1, '2015-03-18 23:08:47.037309', '2015-03-18 23:08:47.037309')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (586, 'gabriel', '000greyes@gmail.com', NULL, 1, '2015-03-18 23:08:47.060401', '2015-03-18 23:08:47.060401')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (587, 'PRAVAZ', 'pravazflorencia@gmail.com', NULL, 1, '2015-03-18 23:08:47.070509', '2015-03-18 23:08:47.070509')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (588, 'GOMEZ', 'gomezbalbontin@hotmail.com', NULL, 1, '2015-03-18 23:08:47.079575', '2015-03-18 23:08:47.079575')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (589, 'Antonio', 'nephilim3@wanadoo.es', NULL, 1, '2015-03-18 23:08:47.088199', '2015-03-18 23:08:47.088199')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (590, 'Fredy', 'elgrandemiurgo@hotmail.com', NULL, 1, '2015-03-18 23:08:47.098407', '2015-03-18 23:08:47.098407')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (591, 'Mario', 'mario-kexiste@hotmail.com', NULL, 1, '2015-03-18 23:08:47.113522', '2015-03-18 23:08:47.113522')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (592, '2004403349l4r2t4', 'laurentum_@hotmail.com', NULL, 1, '2015-03-18 23:08:47.122452', '2015-03-18 23:08:47.122452')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (593, 'Rosa', 'roxalux@gawab.com', NULL, 1, '2015-03-18 23:08:47.131489', '2015-03-18 23:08:47.131489')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (594, 'Matias', 'tansolounsermas@hotmail.com', NULL, 1, '2015-03-18 23:08:47.139924', '2015-03-18 23:08:47.139924')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (595, 'Daniela', 'kthrina@hotmail.com', NULL, 1, '2015-03-18 23:08:47.224313', '2015-03-18 23:08:47.224313')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (596, 'belgica', 'belgi_ca@hotmail.com', NULL, 1, '2015-03-18 23:08:47.234041', '2015-03-18 23:08:47.234041')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (597, 'Daniela', 'danielahermosillaz@gmail.com', NULL, 1, '2015-03-18 23:08:47.242746', '2015-03-18 23:08:47.242746')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (598, 'wenchuman', 'info@wenchuman.com', NULL, 1, '2015-03-18 23:08:47.250984', '2015-03-18 23:08:47.250984')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (599, 'ANA', 'anadeorbegoso@mac.com', NULL, 1, '2015-03-18 23:08:47.259577', '2015-03-18 23:08:47.259577')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (600, 'Pámela', 'pameq2@yahoo.com', NULL, 1, '2015-03-18 23:08:47.278181', '2015-03-18 23:08:47.278181')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (601, 'Nelson', 'taller@taller56.cl', NULL, 1, '2015-03-18 23:08:47.289720', '2015-03-18 23:08:47.289720')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (602, 'Davis', 'davis@davislisboa.com', NULL, 1, '2015-03-18 23:08:47.299070', '2015-03-18 23:08:47.299070')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (603, 'cynthia', 'abcynthie@gmail.com', NULL, 1, '2015-03-18 23:08:47.307821', '2015-03-18 23:08:47.307821')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (604, 'Oscar', 'om@oscar-morales.com', NULL, 1, '2015-03-18 23:08:47.315996', '2015-03-18 23:08:47.315996')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (605, 'Jimena', 'jimenatp@gmail.com', NULL, 1, '2015-03-18 23:08:47.327201', '2015-03-18 23:08:47.327201')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (606, 'CELESTE', 'celeste_a14@hotmail.com', NULL, 1, '2015-03-18 23:08:47.336275', '2015-03-18 23:08:47.336275')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (607, 'Nelson', 'guahunelson@hotmail.com', NULL, 1, '2015-03-18 23:08:47.344585', '2015-03-18 23:08:47.344585')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (608, 'gracia', 'castlegreis@hotmail.com', NULL, 1, '2015-03-18 23:08:47.355087', '2015-03-18 23:08:47.355087')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (609, 'lucho', 'luis@hotmail.com', NULL, 1, '2015-03-18 23:08:47.394460', '2015-03-18 23:08:47.394460')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (610, 'Maricarmen', 'zabeliz@gmail.com', NULL, 1, '2015-03-18 23:08:47.432467', '2015-03-18 23:08:47.432467')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (611, 'Claudio', 'claudio.castel@gmail.com', NULL, 1, '2015-03-18 23:08:47.443810', '2015-03-18 23:08:47.443810')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (612, 'lein', 'di.l.e.i.n@gmail.com', NULL, 1, '2015-03-18 23:08:47.466487', '2015-03-18 23:08:47.466487')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (613, 'B', 'pezoat113@hotmail.com', NULL, 1, '2015-03-18 23:08:47.481237', '2015-03-18 23:08:47.481237')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (614, 'Marisol', 'kichiemoka@gmail.com', NULL, 1, '2015-03-18 23:08:47.504208', '2015-03-18 23:08:47.504208')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (615, 'POLA', 'raimbow1979@hotmail.com', NULL, 1, '2015-03-18 23:08:47.519071', '2015-03-18 23:08:47.519071')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (616, 'Javiera', 'javiera_maria@yahoo.com', NULL, 1, '2015-03-18 23:08:47.527843', '2015-03-18 23:08:47.527843')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (617, 'nicolas', 'nicolasrico@latinmail.com', NULL, 1, '2015-03-18 23:08:47.544038', '2015-03-18 23:08:47.544038')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (618, 'lela', 'lela_sanchez@hotmail.com', NULL, 1, '2015-03-18 23:08:47.554914', '2015-03-18 23:08:47.554914')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (619, 'Esteban', 'estebanorellana1@gmail.com', NULL, 1, '2015-03-18 23:08:47.565215', '2015-03-18 23:08:47.565215')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (620, 'CAMILAOPAZO', 'camilaopazo@gmail.com', NULL, 1, '2015-03-18 23:08:47.574024', '2015-03-18 23:08:47.574024')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (621, 'PA', 'paulinaurzuag@hotmail.com', NULL, 1, '2015-03-18 23:08:47.592152', '2015-03-18 23:08:47.592152')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (622, 'Trinidad', 'trinidad.bezanilla@gmail.com', NULL, 1, '2015-03-18 23:08:47.600697', '2015-03-18 23:08:47.600697')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (623, 'Geredia', 'Geredia@yahoo.es', NULL, 1, '2015-03-18 23:08:47.608966', '2015-03-18 23:08:47.608966')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (624, 'luisa', 'info@galeriartesteladelvalle.cl', NULL, 1, '2015-03-18 23:08:47.618400', '2015-03-18 23:08:47.618400')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (625, 'Dieko', 'dieko.dieko@hotmail.com', NULL, 1, '2015-03-18 23:08:47.627107', '2015-03-18 23:08:47.627107')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (626, 'claudia', 'bitranclaudia@hotmail.com', NULL, 1, '2015-03-18 23:08:47.643088', '2015-03-18 23:08:47.643088')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (627, 'Jorge', 'grupofoto@terra.cl', NULL, 1, '2015-03-18 23:08:47.651862', '2015-03-18 23:08:47.651862')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (628, 'Gust', 'gustazali@hotmail.com', NULL, 1, '2015-03-18 23:08:47.660119', '2015-03-18 23:08:47.660119')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (629, 'IULIANA', 'iulianagh@gmail.com', NULL, 1, '2015-03-18 23:08:47.668999', '2015-03-18 23:08:47.668999')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (630, 'Mariana', 'ovalle.mariana@gmail.com', NULL, 1, '2015-03-18 23:08:47.678133', '2015-03-18 23:08:47.678133')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (631, 'Giovanni', 'fraygino@yahoo.es', NULL, 1, '2015-03-18 23:08:47.692062', '2015-03-18 23:08:47.692062')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (632, 'Nuria', 'nusof.gonzalez@gmail.com', NULL, 1, '2015-03-18 23:08:47.703548', '2015-03-18 23:08:47.703548')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (633, 'nagluck', 'pulga_supersonic@hotmail.com', NULL, 1, '2015-03-18 23:08:47.717074', '2015-03-18 23:08:47.717074')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (634, 'Sara', 'saraoliviaf@gmail.com', NULL, 1, '2015-03-18 23:08:47.726135', '2015-03-18 23:08:47.726135')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (635, 'Nebs', 'nebspereira@gmail.com', NULL, 1, '2015-03-18 23:08:47.744227', '2015-03-18 23:08:47.744227')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (636, 'mario', 'patekong@gmail.com', NULL, 1, '2015-03-18 23:08:47.758365', '2015-03-18 23:08:47.758365')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (637, 'Héctor', 'hh@hecherrod.com', NULL, 1, '2015-03-18 23:08:47.777242', '2015-03-18 23:08:47.777242')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (638, 'carla', 'karlindacl@yahoo.es', NULL, 1, '2015-03-18 23:08:47.847766', '2015-03-18 23:08:47.847766')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (639, 'Carmen', 'frivoholic@hotmail.com', NULL, 1, '2015-03-18 23:08:47.865751', '2015-03-18 23:08:47.865751')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (640, 'DIEGO', 'diecroid@hotmail.com', NULL, 1, '2015-03-18 23:08:47.883079', '2015-03-18 23:08:47.883079')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (641, 'Daniel', 'nackatack@gmail.com', NULL, 1, '2015-03-18 23:08:47.909614', '2015-03-18 23:08:47.909614')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (642, 'migue', 'doncuatico@yahoo.com', NULL, 1, '2015-03-18 23:08:47.921505', '2015-03-18 23:08:47.921505')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (643, 'Karen', 'karenopolis@hotmail.com', NULL, 1, '2015-03-18 23:08:47.944363', '2015-03-18 23:08:47.944363')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (644, 'C', 'borkowsky.c@gmail.com', NULL, 1, '2015-03-18 23:08:47.962050', '2015-03-18 23:08:47.962050')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (645, 'Carlos', 'silla-piramide@hotmail.com', NULL, 1, '2015-03-18 23:08:47.981161', '2015-03-18 23:08:47.981161')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (646, 'MACA', 'maquitaaa@gmail.com', NULL, 1, '2015-03-18 23:08:48.010647', '2015-03-18 23:08:48.010647')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (647, 'Lylibeth', 'lylingalls@gmail.com', NULL, 1, '2015-03-18 23:08:48.020131', '2015-03-18 23:08:48.020131')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (648, 'Ana', 'anaalenso@gmail.com', NULL, 1, '2015-03-18 23:08:48.029214', '2015-03-18 23:08:48.029214')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (649, 'afornickx', 'afornickx@hotmail.com', NULL, 1, '2015-03-18 23:08:48.048601', '2015-03-18 23:08:48.048601')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (650, 'indie', 'darksidehacker@hotmail.com', NULL, 1, '2015-03-18 23:08:48.077443', '2015-03-18 23:08:48.077443')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (651, 'Daniela', 'openclown@gmail.com', NULL, 1, '2015-03-18 23:08:48.093363', '2015-03-18 23:08:48.093363')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (652, 'Javiera', 'javieraovallesazie@gmail.com', NULL, 1, '2015-03-18 23:08:48.119857', '2015-03-18 23:08:48.119857')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (653, 'Fernanda', 'fllamazalesa@gmail.com', NULL, 1, '2015-03-18 23:08:48.132910', '2015-03-18 23:08:48.132910')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (654, 'nicole', 'nicoletijoux@yahoo.com', NULL, 1, '2015-03-18 23:08:48.147737', '2015-03-18 23:08:48.147737')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (655, 'Daniela', 'lenkalaya@gmail.com', NULL, 1, '2015-03-18 23:08:48.160978', '2015-03-18 23:08:48.160978')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (656, 'sebastian', 'sebastian.silvat@gmail.com', NULL, 1, '2015-03-18 23:08:48.177726', '2015-03-18 23:08:48.177726')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (657, 'Beatriz', 'beatriz.alarconh@hotmail.com', NULL, 1, '2015-03-18 23:08:48.199257', '2015-03-18 23:08:48.199257')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (658, 'rock', 'carola_dz@yahoo.es', NULL, 1, '2015-03-18 23:08:48.215705', '2015-03-18 23:08:48.215705')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (659, 'Gastón', 'bpitch.plop@gmail.com', NULL, 1, '2015-03-18 23:08:48.242739', '2015-03-18 23:08:48.242739')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (660, 'a', 'contacto@alejandraswett.cl', NULL, 1, '2015-03-18 23:08:48.257860', '2015-03-18 23:08:48.257860')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (661, 'christian', 'perezbach@gmail.com', NULL, 1, '2015-03-18 23:08:48.266835', '2015-03-18 23:08:48.266835')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (662, 'r', 'rosajuana@hotmail.com', NULL, 1, '2015-03-18 23:08:48.277334', '2015-03-18 23:08:48.277334')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (663, 'Thomas', 'Thomasschatte@gmail.com', NULL, 1, '2015-03-18 23:08:48.288688', '2015-03-18 23:08:48.288688')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (664, 'fco', 'fcotorres9@gmail.com', NULL, 1, '2015-03-18 23:08:48.308787', '2015-03-18 23:08:48.308787')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (665, 'carolina', 'cguzman_12@hotmail.com', NULL, 1, '2015-03-18 23:08:48.324450', '2015-03-18 23:08:48.324450')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (666, 'Daniela', 'daniela-sh@hotmail.com', NULL, 1, '2015-03-18 23:08:48.333944', '2015-03-18 23:08:48.333944')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (667, 'cristián', 'tatanjocker@hotmail.com', NULL, 1, '2015-03-18 23:08:48.347857', '2015-03-18 23:08:48.347857')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (668, 'Salvador', 'sastavros@yahoo.es', NULL, 1, '2015-03-18 23:08:48.365467', '2015-03-18 23:08:48.365467')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (669, 'valentina', 'pucca_lynch@hotmail.com', NULL, 1, '2015-03-18 23:08:48.374328', '2015-03-18 23:08:48.374328')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (670, 'Orlando', 'artelauri@hotmail.com', NULL, 1, '2015-03-18 23:08:48.382961', '2015-03-18 23:08:48.382961')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (671, 'Paula', 'paulapinturas@yahoo.com', NULL, 1, '2015-03-18 23:08:48.398660', '2015-03-18 23:08:48.398660')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (672, 'basco', 'bascovazko@gmail.com', NULL, 1, '2015-03-18 23:08:48.421953', '2015-03-18 23:08:48.421953')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (673, 'Nicolas', 'entrelaspiedras@gmail.com', NULL, 1, '2015-03-18 23:08:48.432408', '2015-03-18 23:08:48.432408')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (674, 'Alexa', 'alilayu@gmail.com', NULL, 1, '2015-03-18 23:08:48.442087', '2015-03-18 23:08:48.442087')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (675, 'Romina', 'romriquelm@yahoo.es', NULL, 1, '2015-03-18 23:08:48.458490', '2015-03-18 23:08:48.458490')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (676, 'francisco', 'franciscoolivoslallave@gmail.com', NULL, 1, '2015-03-18 23:08:48.467218', '2015-03-18 23:08:48.467218')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (677, 'Nibaldo', 'betinomail@gmail.com', NULL, 1, '2015-03-18 23:08:48.476840', '2015-03-18 23:08:48.476840')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (678, 'Alison', 'notiene@hotmai.com', NULL, 1, '2015-03-18 23:08:48.499066', '2015-03-18 23:08:48.499066')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (679, 'Max', 'lamantiz@gmail.com', NULL, 1, '2015-03-18 23:08:48.509486', '2015-03-18 23:08:48.509486')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (680, 'Lorena', 'lostilos@gmail.com', NULL, 1, '2015-03-18 23:08:48.518062', '2015-03-18 23:08:48.518062')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (681, 'Valeria', 'vvjarami@uc.cl', NULL, 1, '2015-03-18 23:08:48.526236', '2015-03-18 23:08:48.526236')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (682, 'Alejandro', 'unodelgado@gmail.com', NULL, 1, '2015-03-18 23:08:48.548162', '2015-03-18 23:08:48.548162')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (683, 'Veronica', 'veroterrazas@yahoo.com', NULL, 1, '2015-03-18 23:08:48.565913', '2015-03-18 23:08:48.565913')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (684, 'the', 'trineos@gmail.com', NULL, 1, '2015-03-18 23:08:48.588306', '2015-03-18 23:08:48.588306')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (685, 'Eduardo', 'kradiopictures@hotmail.com', NULL, 1, '2015-03-18 23:08:48.610574', '2015-03-18 23:08:48.610574')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (686, 'Andrés', 'prensa@norteamericano.cl', NULL, 1, '2015-03-18 23:08:48.625796', '2015-03-18 23:08:48.625796')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (687, 'Diego', 'diegomille@gmail.com', NULL, 1, '2015-03-18 23:08:48.660658', '2015-03-18 23:08:48.660658')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (688, 'Loreto', 'loretoriverosf@gmail.com', NULL, 1, '2015-03-18 23:08:48.677513', '2015-03-18 23:08:48.677513')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (689, 'Héctor', 'clamp_pcx@hotmail.com', NULL, 1, '2015-03-18 23:08:48.692442', '2015-03-18 23:08:48.692442')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (690, 'Macrodosis', 'macrodosis@yahoo.es', NULL, 1, '2015-03-18 23:08:48.727827', '2015-03-18 23:08:48.727827')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (691, 'Ronny', 'muertearonny@hotmail.com', NULL, 1, '2015-03-18 23:08:48.756674', '2015-03-18 23:08:48.756674')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (692, 'Cecilia', 'cega@vtr.net', NULL, 1, '2015-03-18 23:08:48.773435', '2015-03-18 23:08:48.773435')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (693, 'Roxana', 'no_confies_n_nadie@hotmail.com', NULL, 1, '2015-03-18 23:08:48.781351', '2015-03-18 23:08:48.781351')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (694, 'Tatiana', 'tatianasarda@gmail.com', NULL, 1, '2015-03-18 23:08:48.790357', '2015-03-18 23:08:48.790357')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (695, 'jose', 'pintorflores@hotmail.com', NULL, 1, '2015-03-18 23:08:48.807832', '2015-03-18 23:08:48.807832')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (696, 'LA', 'ladoenda@gmail.com', NULL, 1, '2015-03-18 23:08:48.831324', '2015-03-18 23:08:48.831324')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (697, 'Atelier', 'sutulov@vtr.net', NULL, 1, '2015-03-18 23:08:48.841143', '2015-03-18 23:08:48.841143')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (698, 'Pedro', 'PEDROJASBON@YAHOO.ES', NULL, 1, '2015-03-18 23:08:48.856592', '2015-03-18 23:08:48.856592')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (699, 'Monica', 'elmataone@material.cl, gonzamatamala@gmail.com', NULL, 1, '2015-03-18 23:08:48.865913', '2015-03-18 23:08:48.865913')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (700, 'Radoslav', 'cinecirco@hotmail.com', NULL, 1, '2015-03-18 23:08:48.875404', '2015-03-18 23:08:48.875404')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (701, 'Gonzalo', 'geraldo.gonzalo@gmail.com', NULL, 1, '2015-03-18 23:08:48.884220', '2015-03-18 23:08:48.884220')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (702, 'Fabián', 'lumosidad@hotmail.com', NULL, 1, '2015-03-18 23:08:48.921565', '2015-03-18 23:08:48.921565')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (703, 'Francisca', 'franciscarobles@gmail.com', NULL, 1, '2015-03-18 23:08:48.948936', '2015-03-18 23:08:48.948936')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (704, 'hola', 'vbrichett@yahoo.com', NULL, 1, '2015-03-18 23:08:48.958762', '2015-03-18 23:08:48.958762')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (705, 'FUNDACION', 'info@fundacioncarpetania.com', NULL, 1, '2015-03-18 23:08:48.973353', '2015-03-18 23:08:48.973353')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (706, 'Rodrigo', 'rodrigocien@gmail.com', NULL, 1, '2015-03-18 23:08:48.993602', '2015-03-18 23:08:48.993602')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (707, 'Pamela', 'panemaa@gmail.com', NULL, 1, '2015-03-18 23:08:49.021801', '2015-03-18 23:08:49.021801')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (708, 'María', 'mignaciam7@hotmail.com', NULL, 1, '2015-03-18 23:08:49.065419', '2015-03-18 23:08:49.065419')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (709, 'César', 'encuadre.x@gmail.com', NULL, 1, '2015-03-18 23:08:49.093727', '2015-03-18 23:08:49.093727')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (710, 'Jessica', 'jaskask.zeth@gmail.com', NULL, 1, '2015-03-18 23:08:49.116362', '2015-03-18 23:08:49.116362')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (711, 'Laporte', 'la_porte_@hotmail.com', NULL, 1, '2015-03-18 23:08:49.138991', '2015-03-18 23:08:49.138991')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (712, 'plantaverde', 'tooatafune@hotmail.com', NULL, 1, '2015-03-18 23:08:49.160680', '2015-03-18 23:08:49.160680')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (713, 'serafin', 'serafico0216@yohoo.com', NULL, 1, '2015-03-18 23:08:49.177475', '2015-03-18 23:08:49.177475')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (714, 'Camila', 'ca_mi86@hotmail.com', NULL, 1, '2015-03-18 23:08:49.186141', '2015-03-18 23:08:49.186141')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (715, 'Pilar', 'pilar.castro.e@gmail.com', NULL, 1, '2015-03-18 23:08:49.210229', '2015-03-18 23:08:49.210229')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (716, 'Felipe', 'felipemuhr@gmail.com', NULL, 1, '2015-03-18 23:08:49.484619', '2015-03-18 23:08:49.484619')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (717, 'marcela', 'dark.chancellor@yahoo.com', NULL, 1, '2015-03-18 23:08:49.494788', '2015-03-18 23:08:49.494788')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (718, 'Isidora', 'insistidora@gmail.com', NULL, 1, '2015-03-18 23:08:49.503202', '2015-03-18 23:08:49.503202')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (719, 'Francisca', 'francisca.onetto@gmail.com', NULL, 1, '2015-03-18 23:08:49.511368', '2015-03-18 23:08:49.511368')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (720, 'Daniel', 'portishead_92@hotmail.com', NULL, 1, '2015-03-18 23:08:49.519118', '2015-03-18 23:08:49.519118')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (721, 'Paulina', 'larepauli@gmail.com', NULL, 1, '2015-03-18 23:08:49.538415', '2015-03-18 23:08:49.538415')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (722, 'cristian', 'cristianguionbajocero@gmail.com', NULL, 1, '2015-03-18 23:08:49.546764', '2015-03-18 23:08:49.546764')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (723, 'julio', 'peper@yahoo.com', NULL, 1, '2015-03-18 23:08:49.555042', '2015-03-18 23:08:49.555042')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (724, 'hernan', 'uvty03@latinmail.com', NULL, 1, '2015-03-18 23:08:49.563719', '2015-03-18 23:08:49.563719')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (725, 'Leandro', 'leandrogp13@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:49.572180', '2015-03-18 23:08:49.572180')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (726, 'paloma', 'animaerea@hotmail.com', NULL, 1, '2015-03-18 23:08:49.587761', '2015-03-18 23:08:49.587761')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (727, 'CLAUDIA', 'fotografa_clausan@yahoo.es', NULL, 1, '2015-03-18 23:08:49.596422', '2015-03-18 23:08:49.596422')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (728, 'Elias', 'eliasesuninventodeelias@gmail.com', NULL, 1, '2015-03-18 23:08:49.604236', '2015-03-18 23:08:49.604236')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (729, 'Anna', 'spagnuoloart@tiscali.it', NULL, 1, '2015-03-18 23:08:49.612578', '2015-03-18 23:08:49.612578')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (730, 'jekar', 'jekar.edge@hotmail.com', NULL, 1, '2015-03-18 23:08:49.621446', '2015-03-18 23:08:49.621446')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (731, 'Constanza', 'kalogatia@gmail.com', NULL, 1, '2015-03-18 23:08:49.637903', '2015-03-18 23:08:49.637903')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (732, 'EL', 'matiasolar@gmail.com', NULL, 1, '2015-03-18 23:08:49.646070', '2015-03-18 23:08:49.646070')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (733, 'José', 'guajirovero@hotmail.com', NULL, 1, '2015-03-18 23:08:49.654680', '2015-03-18 23:08:49.654680')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (734, 'nelson', 'jahmekia@gmail.com', NULL, 1, '2015-03-18 23:08:49.663192', '2015-03-18 23:08:49.663192')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (735, 'SEBASTIAN', 'sagito13@gmail.com', NULL, 1, '2015-03-18 23:08:49.672221', '2015-03-18 23:08:49.672221')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (736, 'colectivo', 'colectivoartisticotoma@gmail.com', NULL, 1, '2015-03-18 23:08:49.687736', '2015-03-18 23:08:49.687736')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (737, '.', 'emilita.mundt@gmail.com', NULL, 1, '2015-03-18 23:08:49.696211', '2015-03-18 23:08:49.696211')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (738, 'siroco', 'alejandro_diazperez@hotmail.com', NULL, 1, '2015-03-18 23:08:49.704831', '2015-03-18 23:08:49.704831')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (739, 'Hugo', 'leonellon@gmail.com', NULL, 1, '2015-03-18 23:08:49.712448', '2015-03-18 23:08:49.712448')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (740, 'Alejandro', 'mentejano@yahoo.es', NULL, 1, '2015-03-18 23:08:49.721700', '2015-03-18 23:08:49.721700')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (741, 'Karen', 'karenpazan@gmail.com', NULL, 1, '2015-03-18 23:08:49.737741', '2015-03-18 23:08:49.737741')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (742, 'alma', 'imagenmortal@mail.com', NULL, 1, '2015-03-18 23:08:49.745580', '2015-03-18 23:08:49.745580')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (743, 'claudio', 'chacografix@gmail.com', NULL, 1, '2015-03-18 23:08:49.754250', '2015-03-18 23:08:49.754250')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (744, 'CvL', 'goghsgirl@gmail.com', NULL, 1, '2015-03-18 23:08:49.762457', '2015-03-18 23:08:49.762457')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (745, 'Jessica', 'jrodriguezenglish@gmail.com', NULL, 1, '2015-03-18 23:08:49.771813', '2015-03-18 23:08:49.771813')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (746, 'Santiago', 'smuruagc@yahoo.com', NULL, 1, '2015-03-18 23:08:49.787844', '2015-03-18 23:08:49.787844')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (747, 'Alma', 'imagenmortal@gmail.com', NULL, 1, '2015-03-18 23:08:49.873808', '2015-03-18 23:08:49.873808')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (748, 'xtra', 'z6qjvm4rxn9pc8h@golfilla.info', NULL, 1, '2015-03-18 23:08:49.887202', '2015-03-18 23:08:49.887202')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (749, 'heinekt', 'nebul_art@hotmail.com', NULL, 1, '2015-03-18 23:08:49.896246', '2015-03-18 23:08:49.896246')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (750, 'Macarena', 'videomaca@gmail.com', NULL, 1, '2015-03-18 23:08:49.904550', '2015-03-18 23:08:49.904550')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (751, 'Rodrigo', 'anguita.rodrigo@gmail.com', NULL, 1, '2015-03-18 23:08:49.913025', '2015-03-18 23:08:49.913025')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (752, 'Rodrigo', 'rodcasanova@vtr.net', NULL, 1, '2015-03-18 23:08:49.921782', '2015-03-18 23:08:49.921782')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (753, 'maya', 'mayaescobar@gmail.com', NULL, 1, '2015-03-18 23:08:49.936887', '2015-03-18 23:08:49.936887')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (754, 'Laura', 'laualtimir@hotmail.com', NULL, 1, '2015-03-18 23:08:49.945188', '2015-03-18 23:08:49.945188')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (755, 'mono', 'ren134@hotmail.com', NULL, 1, '2015-03-18 23:08:49.954022', '2015-03-18 23:08:49.954022')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (756, 'Carolina', 'caro_domo_@hotmail.com', NULL, 1, '2015-03-18 23:08:49.962710', '2015-03-18 23:08:49.962710')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (757, 'Gabriela', 'vanalase@gmail.com', NULL, 1, '2015-03-18 23:08:49.971196', '2015-03-18 23:08:49.971196')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (758, 'F.W.DISEL', 'peliculachilena@yahoo.es', NULL, 1, '2015-03-18 23:08:49.987010', '2015-03-18 23:08:49.987010')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (759, 'Claudia', 'clula14@hotmail.com', NULL, 1, '2015-03-18 23:08:49.995429', '2015-03-18 23:08:49.995429')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (760, 'consuelo', 'consueloca_stillo@hotmail.com', NULL, 1, '2015-03-18 23:08:50.003734', '2015-03-18 23:08:50.003734')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (761, 'FABIOLA', 'fabiolaalarcon@live.cl', NULL, 1, '2015-03-18 23:08:50.013039', '2015-03-18 23:08:50.013039')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (762, 'Juanpa', 'juanpa_gospel@hotmail.com', NULL, 1, '2015-03-18 23:08:50.021717', '2015-03-18 23:08:50.021717')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (763, 'Jimena', 'jimenacastrov@vtr.net', NULL, 1, '2015-03-18 23:08:50.036935', '2015-03-18 23:08:50.036935')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (764, 'Valeria', 'avacolores@hotmail.com', NULL, 1, '2015-03-18 23:08:50.045440', '2015-03-18 23:08:50.045440')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (765, 'Jose', 'rivasfreire@gmail.com', NULL, 1, '2015-03-18 23:08:50.054350', '2015-03-18 23:08:50.054350')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (766, 'Abraham', 'Jackson@yahoo.com', NULL, 1, '2015-03-18 23:08:50.062987', '2015-03-18 23:08:50.062987')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (767, 'rodrigo', 'gh.rodrigo@gmail.com', NULL, 1, '2015-03-18 23:08:50.071396', '2015-03-18 23:08:50.071396')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (768, 'maite', 'maitemaria06@yahoo.com', NULL, 1, '2015-03-18 23:08:50.087370', '2015-03-18 23:08:50.087370')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (769, 'Ricardo', 'Ricardo@gmail.com', NULL, 1, '2015-03-18 23:08:50.095877', '2015-03-18 23:08:50.095877')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (770, 'claudio', 'landejavu@gmail.com', NULL, 1, '2015-03-18 23:08:50.103610', '2015-03-18 23:08:50.103610')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (771, 'CARHUM', 'carhum007@hotmail.com', NULL, 1, '2015-03-18 23:08:50.111467', '2015-03-18 23:08:50.111467')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (772, 'Héctor', 'hector.menendez@gmail.com', NULL, 1, '2015-03-18 23:08:50.119750', '2015-03-18 23:08:50.119750')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (773, 'pascual', 'musicapez@gmail.com', NULL, 1, '2015-03-18 23:08:50.138541', '2015-03-18 23:08:50.138541')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (774, 'Scrab', 'scrabscrey@gmail.com', NULL, 1, '2015-03-18 23:08:50.147907', '2015-03-18 23:08:50.147907')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (775, 'Pablo', 'dieztoros@gmail.com', NULL, 1, '2015-03-18 23:08:50.156609', '2015-03-18 23:08:50.156609')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (776, 'HUGO', 'fugonavaz@gmail.com', NULL, 1, '2015-03-18 23:08:50.165235', '2015-03-18 23:08:50.165235')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (777, 'Kathy', 'kathydunker@esfera.cl', NULL, 1, '2015-03-18 23:08:50.173693', '2015-03-18 23:08:50.173693')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (778, 'Jorge', 'catoniart@gmail.com', NULL, 1, '2015-03-18 23:08:50.187190', '2015-03-18 23:08:50.187190')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (779, 'Marina', 'oseamarilyn@hotmail.com', NULL, 1, '2015-03-18 23:08:50.195114', '2015-03-18 23:08:50.195114')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (780, 'Marcos', 'marcos8328@hotmail.com', NULL, 1, '2015-03-18 23:08:50.203520', '2015-03-18 23:08:50.203520')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (781, 'KM42', 'corredorkm42@gmail.com', NULL, 1, '2015-03-18 23:08:50.212085', '2015-03-18 23:08:50.212085')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (782, 'Habacuc', 'habacuc.habacuc@gmail.com', NULL, 1, '2015-03-18 23:08:50.220987', '2015-03-18 23:08:50.220987')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (783, 'gabriela', 'gabyf6x_x@hotmail.com', NULL, 1, '2015-03-18 23:08:50.237043', '2015-03-18 23:08:50.237043')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (784, 'iria', 'iriachousar@hotmail.com', NULL, 1, '2015-03-18 23:08:50.245811', '2015-03-18 23:08:50.245811')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (785, 'Ricardo', 'okt8pus@gmail.com', NULL, 1, '2015-03-18 23:08:50.253844', '2015-03-18 23:08:50.253844')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (786, 'CUERPO', 'cuerpomanoseado@gmail.com', NULL, 1, '2015-03-18 23:08:50.262674', '2015-03-18 23:08:50.262674')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (787, 'andres', 'heinsenandres@hotmail.com', NULL, 1, '2015-03-18 23:08:50.271712', '2015-03-18 23:08:50.271712')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (788, 'catalina', 'catamuda@hotmail.com', NULL, 1, '2015-03-18 23:08:50.286718', '2015-03-18 23:08:50.286718')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (789, 'vincent', 'glassfetus@hotmail.com', NULL, 1, '2015-03-18 23:08:50.295587', '2015-03-18 23:08:50.295587')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (790, 'Vicente', 'vicentemarti101@hotmail.com', NULL, 1, '2015-03-18 23:08:50.316970', '2015-03-18 23:08:50.316970')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (791, 'yair', 'yair_lepra_2003@hotmail.com', NULL, 1, '2015-03-18 23:08:50.330460', '2015-03-18 23:08:50.330460')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (792, 'Aquiles', 'convencionalmente@gmail.com', NULL, 1, '2015-03-18 23:08:50.341657', '2015-03-18 23:08:50.341657')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (793, 'antoniacruz', 'antoniacruzs@hotmail.com', NULL, 1, '2015-03-18 23:08:50.349684', '2015-03-18 23:08:50.349684')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (794, 'Konstanza', 'capilla648@gmail.com', NULL, 1, '2015-03-18 23:08:50.410621', '2015-03-18 23:08:50.410621')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (795, 'james', 'james.colleman@gmail.com', NULL, 1, '2015-03-18 23:08:50.429712', '2015-03-18 23:08:50.429712')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (796, 'cesar', 'cesargaetea@gmail.com', NULL, 1, '2015-03-18 23:08:50.439209', '2015-03-18 23:08:50.439209')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (797, 'Fernando', 'ppaannttoojjaa@yahoo.es', NULL, 1, '2015-03-18 23:08:50.450417', '2015-03-18 23:08:50.450417')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (798, 'ignacio', 'i_gatica71@hotmail.com', NULL, 1, '2015-03-18 23:08:50.470442', '2015-03-18 23:08:50.470442')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (799, 'Ighor', 'ighor.alarcon@gmail.com', NULL, 1, '2015-03-18 23:08:50.479383', '2015-03-18 23:08:50.479383')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (800, 'Pamela', 'panemaa@yahoo.com', NULL, 1, '2015-03-18 23:08:50.487929', '2015-03-18 23:08:50.487929')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (801, 'Pamela', 'panemaa@hotmail.com', NULL, 1, '2015-03-18 23:08:50.496514', '2015-03-18 23:08:50.496514')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (802, 'CAMPANA', 'elcantodelasplantas@gmail.com', NULL, 1, '2015-03-18 23:08:50.507082', '2015-03-18 23:08:50.507082')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (803, 'Cristóbal', 'cristobal@cristobalcea.net', NULL, 1, '2015-03-18 23:08:50.519438', '2015-03-18 23:08:50.519438')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (804, 'Jorge', 'rosensvaigpintor@gmail.com', NULL, 1, '2015-03-18 23:08:50.543458', '2015-03-18 23:08:50.543458')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (805, 'MJESUS', 'arte.sonado@hotmail.com', NULL, 1, '2015-03-18 23:08:50.554120', '2015-03-18 23:08:50.554120')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (806, 'Manuel', 'ossan73@hotmail.com', NULL, 1, '2015-03-18 23:08:50.568869', '2015-03-18 23:08:50.568869')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (807, 'Karin', 'kwehrhahn@gmail.com', NULL, 1, '2015-03-18 23:08:50.577852', '2015-03-18 23:08:50.577852')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (808, 'jesus', 'jebusacido@hotmail.com', NULL, 1, '2015-03-18 23:08:50.586114', '2015-03-18 23:08:50.586114')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (809, 'Cristian', 'chiriubses@gmail.com', NULL, 1, '2015-03-18 23:08:50.594635', '2015-03-18 23:08:50.594635')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (810, 'Fredo', 'phantom_mg42@hotmail.com', NULL, 1, '2015-03-18 23:08:50.603169', '2015-03-18 23:08:50.603169')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (811, 'francisca', 'francisca_lastra_07_2007@yahoo.es', NULL, 1, '2015-03-18 23:08:50.619764', '2015-03-18 23:08:50.619764')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (812, 'Fabiola', 'yuyito345@hotmail.com', NULL, 1, '2015-03-18 23:08:50.627816', '2015-03-18 23:08:50.627816')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (813, 'Mariano', 'shinkawa_master@hotmail.com', NULL, 1, '2015-03-18 23:08:50.636150', '2015-03-18 23:08:50.636150')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (814, 'jaime', 'xiomaraltda@tutopia.com', NULL, 1, '2015-03-18 23:08:50.644777', '2015-03-18 23:08:50.644777')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (815, 'Belen', 'belenb_16@hotmail.com', NULL, 1, '2015-03-18 23:08:50.653880', '2015-03-18 23:08:50.653880')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (816, 'Francisca', 'fran.vilches@gmail.com', NULL, 1, '2015-03-18 23:08:50.668420', '2015-03-18 23:08:50.668420')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (817, 'Animita', 'sombrasyluces@gmail.com', NULL, 1, '2015-03-18 23:08:50.677948', '2015-03-18 23:08:50.677948')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (818, 'veronica', 'vaicyber@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:50.685950', '2015-03-18 23:08:50.685950')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (819, 'Luna', 'unravelheart@msn.com', NULL, 1, '2015-03-18 23:08:50.695019', '2015-03-18 23:08:50.695019')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (820, 'Pedro', 'pedrofodich13@gmail.com', NULL, 1, '2015-03-18 23:08:50.703592', '2015-03-18 23:08:50.703592')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (821, 'trinidad', 'trinitronia@hotmail.com', NULL, 1, '2015-03-18 23:08:50.718745', '2015-03-18 23:08:50.718745')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (822, 'nestor', 'gatostar777@hotmail.com', NULL, 1, '2015-03-18 23:08:50.727688', '2015-03-18 23:08:50.727688')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (823, 'ALEJANDRO', 'alejandrocabeza1@gmail.com', NULL, 1, '2015-03-18 23:08:50.736762', '2015-03-18 23:08:50.736762')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (824, 'alvaro', 'intrsuo1978@hotmail.com', NULL, 1, '2015-03-18 23:08:50.796161', '2015-03-18 23:08:50.796161')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (825, 'Verónica', 'vsilvabruce@gmail.com', NULL, 1, '2015-03-18 23:08:50.805770', '2015-03-18 23:08:50.805770')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (826, 'Patricia', 'patriciacarvajal@yahoo.es', NULL, 1, '2015-03-18 23:08:50.815516', '2015-03-18 23:08:50.815516')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (827, 'SEBASTIAN', 'olivarisantana@hotmail.com', NULL, 1, '2015-03-18 23:08:50.834883', '2015-03-18 23:08:50.834883')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (828, 'LEONARDO', 'lscalquin@yahoo.es', NULL, 1, '2015-03-18 23:08:50.851564', '2015-03-18 23:08:50.851564')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (829, 'El', 'blankstarter@gmail.com', NULL, 1, '2015-03-18 23:08:50.860945', '2015-03-18 23:08:50.860945')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (830, 'Alika', 'annah8a@hotmail.com', NULL, 1, '2015-03-18 23:08:50.876425', '2015-03-18 23:08:50.876425')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (831, 'Matias', 'norfolko@hotmail.com', NULL, 1, '2015-03-18 23:08:50.886236', '2015-03-18 23:08:50.886236')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (832, 'Manuel', 'elihudiaz@gmail.com', NULL, 1, '2015-03-18 23:08:50.901894', '2015-03-18 23:08:50.901894')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (833, 'Chelin', 'correo@chelinsanjuan.info', NULL, 1, '2015-03-18 23:08:50.911193', '2015-03-18 23:08:50.911193')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (834, 'Carolina', 'carolina_ibarrac@yahoo.es', NULL, 1, '2015-03-18 23:08:50.920590', '2015-03-18 23:08:50.920590')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (835, 'valentinavarela', 'valentinacont@gmail.com', NULL, 1, '2015-03-18 23:08:50.929931', '2015-03-18 23:08:50.929931')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (836, 'constanza', 'constanzaferrada@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:50.988799', '2015-03-18 23:08:50.988799')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (837, 'Luis', 'eleborquez@vtr.net', NULL, 1, '2015-03-18 23:08:50.999616', '2015-03-18 23:08:50.999616')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (838, 'angela', 'angelascavo@gmail.com', NULL, 1, '2015-03-18 23:08:51.034983', '2015-03-18 23:08:51.034983')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (839, 'Cata', 'is.cata.gzz@gmail.com', NULL, 1, '2015-03-18 23:08:51.044438', '2015-03-18 23:08:51.044438')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (840, 'juan', 'juanmartinezproducciones@yahoo.com', NULL, 1, '2015-03-18 23:08:51.053106', '2015-03-18 23:08:51.053106')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (841, 'iuhikj', 'iuhiu@kjhkj.cl', NULL, 1, '2015-03-18 23:08:51.061419', '2015-03-18 23:08:51.061419')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (842, 'Cesar', 'chidalgo@nd.edu', NULL, 1, '2015-03-18 23:08:51.132825', '2015-03-18 23:08:51.132825')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (843, 'Raúl', 'bonzo.bz@gmail.com', NULL, 1, '2015-03-18 23:08:51.159979', '2015-03-18 23:08:51.159979')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (844, 'asdf', 'asd@hotmail.com', NULL, 1, '2015-03-18 23:08:51.171824', '2015-03-18 23:08:51.171824')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (845, 'mimimoi', 'miguel.michelson@oxus.cl', NULL, 1, '2015-03-18 23:08:51.184861', '2015-03-18 23:08:51.184861')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (846, 'carola', 'wangulem@gmail.com', NULL, 1, '2015-03-18 23:08:51.206793', '2015-03-18 23:08:51.206793')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (847, 'Tamara', 'taquilpa@puc.cl', NULL, 1, '2015-03-18 23:08:51.216600', '2015-03-18 23:08:51.216600')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (848, 'maurobasaez.cl.tf', 'maurobasaez@yahoo.es', NULL, 1, '2015-03-18 23:08:51.244406', '2015-03-18 23:08:51.244406')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (849, 'andrea', 'andluk_22@hotmail.com', NULL, 1, '2015-03-18 23:08:51.272511', '2015-03-18 23:08:51.272511')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (850, 'Adolfo', 'martinezabarca@gmail.com', NULL, 1, '2015-03-18 23:08:51.298472', '2015-03-18 23:08:51.298472')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (851, 'Elisa', 'elisamenabar@gmail.com', NULL, 1, '2015-03-18 23:08:51.307010', '2015-03-18 23:08:51.307010')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (852, 'Daniela', 'danielasantacruzvergara@yahoo.com.mx', NULL, 1, '2015-03-18 23:08:51.315670', '2015-03-18 23:08:51.315670')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (853, 'alvaro', 'subgenio@gmail.com', NULL, 1, '2015-03-18 23:08:51.334235', '2015-03-18 23:08:51.334235')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (854, 'Ariztopapelo', '7films@gmail.com', NULL, 1, '2015-03-18 23:08:51.343741', '2015-03-18 23:08:51.343741')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (855, 'mario', 'azur200@hotmail.com', NULL, 1, '2015-03-18 23:08:51.351897', '2015-03-18 23:08:51.351897')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (856, 'Lila', 'findiulas@gmail.com', NULL, 1, '2015-03-18 23:08:51.360707', '2015-03-18 23:08:51.360707')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (857, 'Victor', 'Victor.Araya@live.cl', NULL, 1, '2015-03-18 23:08:51.384122', '2015-03-18 23:08:51.384122')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (858, 'franklin', 'nova_era_@hotmail.com', NULL, 1, '2015-03-18 23:08:51.395012', '2015-03-18 23:08:51.395012')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (859, 'Pilar', 'raga96@gmail.com', NULL, 1, '2015-03-18 23:08:51.417317', '2015-03-18 23:08:51.417317')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (860, 'cristina', 'cristilup77@gmail.com', NULL, 1, '2015-03-18 23:08:51.436618', '2015-03-18 23:08:51.436618')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (861, 'javiera', 'perezjaviera@gmail.com', NULL, 1, '2015-03-18 23:08:51.445288', '2015-03-18 23:08:51.445288')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (862, 'Beatriz', 'beatrizacevedocabello@hotmail.com', NULL, 1, '2015-03-18 23:08:51.453957', '2015-03-18 23:08:51.453957')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (863, 'Lorena', 'lcalderon@graficauno.com', NULL, 1, '2015-03-18 23:08:51.462493', '2015-03-18 23:08:51.462493')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (864, 'kiltronauta', 'Kiltronauta@gmail.com', NULL, 1, '2015-03-18 23:08:51.471050', '2015-03-18 23:08:51.471050')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (865, 'Rodrigo', 'kraken_279@yahoo.es', NULL, 1, '2015-03-18 23:08:51.483793', '2015-03-18 23:08:51.483793')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (866, 'Alejandra', 'alejandra.valenzuelal@gmail.com', NULL, 1, '2015-03-18 23:08:51.495143', '2015-03-18 23:08:51.495143')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (867, 'Enrique', 'arteespinola@hotmail.com', NULL, 1, '2015-03-18 23:08:51.514563', '2015-03-18 23:08:51.514563')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (868, 'Alberto', 'albertomarincastro@gmail.com', NULL, 1, '2015-03-18 23:08:51.533725', '2015-03-18 23:08:51.533725')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (869, 'Cristián', 'ncristianrojasroman@gmail.com', NULL, 1, '2015-03-18 23:08:51.549957', '2015-03-18 23:08:51.549957')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (870, 'Paula', 'zuldeka@hotmail.com', NULL, 1, '2015-03-18 23:08:51.574472', '2015-03-18 23:08:51.574472')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (871, 'f', 'frana.sarina@hotmail.com', NULL, 1, '2015-03-18 23:08:51.599379', '2015-03-18 23:08:51.599379')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (872, 'Lazaro', 'lazaro.naranjo@gmail.com', NULL, 1, '2015-03-18 23:08:51.609796', '2015-03-18 23:08:51.609796')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (873, 'Mercurio', 'mauricio@anaya.cl', NULL, 1, '2015-03-18 23:08:51.618665', '2015-03-18 23:08:51.618665')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (874, 'Mi', 'm.m.a.s.m@hotmail.com', NULL, 1, '2015-03-18 23:08:51.632958', '2015-03-18 23:08:51.632958')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (875, 'claudio', 'cromo@udec.cl', NULL, 1, '2015-03-18 23:08:51.649494', '2015-03-18 23:08:51.649494')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (876, 'ESRA', 'esramuhurcu@gmail.com', NULL, 1, '2015-03-18 23:08:51.677564', '2015-03-18 23:08:51.677564')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (877, 'Cristian', 'imaginamac@gmail.com', NULL, 1, '2015-03-18 23:08:51.694342', '2015-03-18 23:08:51.694342')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (878, 'Valentina', 'vmendiburo@gmail.com', NULL, 1, '2015-03-18 23:08:51.703490', '2015-03-18 23:08:51.703490')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (879, 'BARBARA', 'barbarafernandez.f@gmail.com', NULL, 1, '2015-03-18 23:08:51.711519', '2015-03-18 23:08:51.711519')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (880, 'Inessa', 'iness1221@yahoo.com', NULL, 1, '2015-03-18 23:08:51.719995', '2015-03-18 23:08:51.719995')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (881, 'Macarena', 'yomac.arquitec@gmail.com', NULL, 1, '2015-03-18 23:08:51.744073', '2015-03-18 23:08:51.744073')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (882, 'maria', 'arte_fran@yahoo.com', NULL, 1, '2015-03-18 23:08:51.755876', '2015-03-18 23:08:51.755876')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (883, 'jenny', 'gocasantana@gmail.com', NULL, 1, '2015-03-18 23:08:51.766597', '2015-03-18 23:08:51.766597')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (884, 'Estefani', 'estefistan@gmail.com', NULL, 1, '2015-03-18 23:08:51.783780', '2015-03-18 23:08:51.783780')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (885, 'Gonzalo', 'pataguan@gmail.com', NULL, 1, '2015-03-18 23:08:51.799054', '2015-03-18 23:08:51.799054')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (886, 'juanillo', 'juanillo', NULL, 1, '2015-03-18 23:08:51.808159', '2015-03-18 23:08:51.808159')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (887, 'Felipe', 'foylland@hotmail.com', NULL, 1, '2015-03-18 23:08:51.816394', '2015-03-18 23:08:51.816394')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (888, 'Belen', 'bebita_@msn.com', NULL, 1, '2015-03-18 23:08:51.832422', '2015-03-18 23:08:51.832422')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (889, 'pablo', 'ceballoshoy@gmail.com', NULL, 1, '2015-03-18 23:08:51.847327', '2015-03-18 23:08:51.847327')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (890, 'norka', 'norka_haruko7@hotmail.cl', NULL, 1, '2015-03-18 23:08:51.856616', '2015-03-18 23:08:51.856616')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (891, 'maria', 'acromatica000@yahoo.es', NULL, 1, '2015-03-18 23:08:51.865232', '2015-03-18 23:08:51.865232')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (892, 'Javier', 'javierpz5@hotmail.com', NULL, 1, '2015-03-18 23:08:51.882516', '2015-03-18 23:08:51.882516')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (893, 'Claudio', 'bernal64@gmail.com', NULL, 1, '2015-03-18 23:08:51.897950', '2015-03-18 23:08:51.897950')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (894, 'fillkun', 'fillkunfu@gmail.com', NULL, 1, '2015-03-18 23:08:51.907115', '2015-03-18 23:08:51.907115')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (895, 'felipe', 'smides9@hotmail.com', NULL, 1, '2015-03-18 23:08:51.931343', '2015-03-18 23:08:51.931343')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (896, 'Valeria', 'valeriamazo@gmail.com', NULL, 1, '2015-03-18 23:08:51.941521', '2015-03-18 23:08:51.941521')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (897, 'Claudia', 'claudiaadriazola@hotmail.com', NULL, 1, '2015-03-18 23:08:51.950387', '2015-03-18 23:08:51.950387')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (898, 'Roberto', 'rveloso@yahoo.com', NULL, 1, '2015-03-18 23:08:51.959199', '2015-03-18 23:08:51.959199')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (899, 'VIRGINIA', 'vguilisasti@gmail.com', NULL, 1, '2015-03-18 23:08:51.967787', '2015-03-18 23:08:51.967787')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (900, 'Jorge', 'jorgemeza65@gmail.com', NULL, 1, '2015-03-18 23:08:52.053539', '2015-03-18 23:08:52.053539')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (901, 'Raul', 'rvfrance@gmail.com', NULL, 1, '2015-03-18 23:08:52.062183', '2015-03-18 23:08:52.062183')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (902, 'Marco Antonio', 'desdibujos@gmail.com', NULL, 1, '2015-03-18 23:08:52.070606', '2015-03-18 23:08:52.070606')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (903, 'nea', 'neamc3@yahoo.com', NULL, 1, '2015-03-18 23:08:52.078897', '2015-03-18 23:08:52.078897')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (904, 'Ricardo', 'ricardosilveira1@yahoo.com', NULL, 1, '2015-03-18 23:08:52.088645', '2015-03-18 23:08:52.088645')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (905, 'Agim', 'agim@hotmail.es', NULL, 1, '2015-03-18 23:08:52.098896', '2015-03-18 23:08:52.098896')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (906, 'Antonia', 'alabadia@uc.cl', NULL, 1, '2015-03-18 23:08:52.108299', '2015-03-18 23:08:52.108299')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (907, 'Tomas', 'tbrinck@uc.cl', NULL, 1, '2015-03-18 23:08:52.117396', '2015-03-18 23:08:52.117396')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (908, 'ivonne', 'proyectorgroup@yahoo.com', NULL, 1, '2015-03-18 23:08:52.126723', '2015-03-18 23:08:52.126723')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (909, 'CLAUDIA', 'ARTEMULLER@GMAIL.COM', NULL, 1, '2015-03-18 23:08:52.135458', '2015-03-18 23:08:52.135458')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (910, 'Luisa', 'kelpiecilla@hotmail.com', NULL, 1, '2015-03-18 23:08:52.148836', '2015-03-18 23:08:52.148836')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (911, 'Ricardo', 'ceodos@gmail.com', NULL, 1, '2015-03-18 23:08:52.157400', '2015-03-18 23:08:52.157400')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (912, 'Erick', 'erick.strange@gmail.com', NULL, 1, '2015-03-18 23:08:52.166397', '2015-03-18 23:08:52.166397')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (913, 'Otterleo', 'silent.telescope@hotmail.com', NULL, 1, '2015-03-18 23:08:52.175455', '2015-03-18 23:08:52.175455')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (914, 'Eduardo', 'aravena.edo@gmail.com', NULL, 1, '2015-03-18 23:08:52.185104', '2015-03-18 23:08:52.185104')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (915, 'armando', 'afro_tagger@hotmail.com', NULL, 1, '2015-03-18 23:08:52.198996', '2015-03-18 23:08:52.198996')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (916, 'Constanza', 'conita_07@hotmail.com', NULL, 1, '2015-03-18 23:08:52.207811', '2015-03-18 23:08:52.207811')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (917, 'Gabriela', 'gabrielaisabelgabriela@hotmail.com', NULL, 1, '2015-03-18 23:08:52.216517', '2015-03-18 23:08:52.216517')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (918, 'LA', 'lacz2@hotmail.com', NULL, 1, '2015-03-18 23:08:52.225842', '2015-03-18 23:08:52.225842')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (919, 'julio', 'mthscnc@gmail.com', NULL, 1, '2015-03-18 23:08:52.234092', '2015-03-18 23:08:52.234092')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (920, 'Carlos', 'piguillem@gmail.com', NULL, 1, '2015-03-18 23:08:52.248469', '2015-03-18 23:08:52.248469')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (921, 'Victoria', 'victoria.achurra@gmail.com', NULL, 1, '2015-03-18 23:08:52.257318', '2015-03-18 23:08:52.257318')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (922, 'Willis', 'willisvega18@yahoo.com', NULL, 1, '2015-03-18 23:08:52.272736', '2015-03-18 23:08:52.272736')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (923, 'Sebastián', 'reyeslaborie@gmail.com', NULL, 1, '2015-03-18 23:08:52.289845', '2015-03-18 23:08:52.289845')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (924, 'el', 'dadadirt@yahoo.com', NULL, 1, '2015-03-18 23:08:52.300102', '2015-03-18 23:08:52.300102')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (925, 'Ramón', 'artecubiles@hotmail.com', NULL, 1, '2015-03-18 23:08:52.310672', '2015-03-18 23:08:52.310672')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (926, 'Rosario', 'rosarioantonia@hotmail.com', NULL, 1, '2015-03-18 23:08:52.321456', '2015-03-18 23:08:52.321456')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (927, 'Carlos', 'the_silbone@hotmail.com', NULL, 1, '2015-03-18 23:08:52.343879', '2015-03-18 23:08:52.343879')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (928, 'Miguelángel', 'eterno_fulgor@yahoo.com', NULL, 1, '2015-03-18 23:08:52.353919', '2015-03-18 23:08:52.353919')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (929, 'Didier', 'didieroberti@gmail.com', NULL, 1, '2015-03-18 23:08:52.362173', '2015-03-18 23:08:52.362173')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (930, 'francisca', 'valdesfrancisca@gmail.com', NULL, 1, '2015-03-18 23:08:52.371418', '2015-03-18 23:08:52.371418')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (931, 'angel', 'golden_boy611@hotmail.com', NULL, 1, '2015-03-18 23:08:52.380737', '2015-03-18 23:08:52.380737')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (932, 'caglez', 'caglezro@gmail.com', NULL, 1, '2015-03-18 23:08:52.398670', '2015-03-18 23:08:52.398670')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (933, 'Catalina', 'akatalim@gmail.com', NULL, 1, '2015-03-18 23:08:52.407457', '2015-03-18 23:08:52.407457')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (934, 'Francisca', 'famenabar@hotmail.com', NULL, 1, '2015-03-18 23:08:52.416844', '2015-03-18 23:08:52.416844')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (935, 'carola', 'bella.creacion@hotmail.com', NULL, 1, '2015-03-18 23:08:52.434921', '2015-03-18 23:08:52.434921')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (936, 'FRANCISCO', 'uzabeagavalle@hotmail.com', NULL, 1, '2015-03-18 23:08:52.449075', '2015-03-18 23:08:52.449075')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (937, 'joel', 'joeldtw@tutopia.com', NULL, 1, '2015-03-18 23:08:52.457711', '2015-03-18 23:08:52.457711')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (938, 'daniel', 'danielserrano@gmail.com', NULL, 1, '2015-03-18 23:08:52.467000', '2015-03-18 23:08:52.467000')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (939, 'omar', 'corre_forest_@hotmail.com', NULL, 1, '2015-03-18 23:08:52.488539', '2015-03-18 23:08:52.488539')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (940, 'Paula', 'paula.arnal@gmail.com', NULL, 1, '2015-03-18 23:08:52.503727', '2015-03-18 23:08:52.503727')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (941, 'saho', 'inniura@hotmail.com', NULL, 1, '2015-03-18 23:08:52.512253', '2015-03-18 23:08:52.512253')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (942, 'Jorge', 'blauart@hotmail.con', NULL, 1, '2015-03-18 23:08:52.521294', '2015-03-18 23:08:52.521294')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (943, 'Carla', 'carlamckaym@hotmail.com', NULL, 1, '2015-03-18 23:08:52.535715', '2015-03-18 23:08:52.535715')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (944, 'Diego', 'info@diegosantos.com.ar', NULL, 1, '2015-03-18 23:08:52.561186', '2015-03-18 23:08:52.561186')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (945, 'Carolina', 'Carolinalvarezcarcamo@gmail.com', NULL, 1, '2015-03-18 23:08:52.570960', '2015-03-18 23:08:52.570960')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (946, 'CEVADO', 'suspensionado@gmail.com', NULL, 1, '2015-03-18 23:08:52.581523', '2015-03-18 23:08:52.581523')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (947, 'Claudia', 'clau.verdejo@gmail.com', NULL, 1, '2015-03-18 23:08:52.599181', '2015-03-18 23:08:52.599181')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (948, 'Nicole', 'nikure@gmail.com', NULL, 1, '2015-03-18 23:08:52.628224', '2015-03-18 23:08:52.628224')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (949, 'Christopher', 'potrofer@gmail.com', NULL, 1, '2015-03-18 23:08:52.637093', '2015-03-18 23:08:52.637093')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (950, 'Rodrigo', 'rodrigo@pintoh.com', NULL, 1, '2015-03-18 23:08:52.656330', '2015-03-18 23:08:52.656330')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (951, 'Ingo', 'sanhuezakuschel@gmail.com', NULL, 1, '2015-03-18 23:08:52.668228', '2015-03-18 23:08:52.668228')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (952, 'Andrés', 'andresvildosola@gmail.com', NULL, 1, '2015-03-18 23:08:52.733154', '2015-03-18 23:08:52.733154')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (953, 'Matias', 'matiasnoguerra@gmail.com', NULL, 1, '2015-03-18 23:08:52.761927', '2015-03-18 23:08:52.761927')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (954, 'TOMAS', 'arte@tomascastano.com', NULL, 1, '2015-03-18 23:08:52.779404', '2015-03-18 23:08:52.779404')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (955, 'Viviana', 'vivitarock@gmail.com', NULL, 1, '2015-03-18 23:08:53.496267', '2015-03-18 23:08:53.496267')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (956, 'Alexis', 'alexisdvalle@gmail.com', NULL, 1, '2015-03-18 23:08:53.505841', '2015-03-18 23:08:53.505841')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (957, 'carolina', 'grabadoscgh@yahoo.com', NULL, 1, '2015-03-18 23:08:53.514004', '2015-03-18 23:08:53.514004')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (958, 'Gonzalo', 'gonzalostecher@yahoo.com', NULL, 1, '2015-03-18 23:08:53.522122', '2015-03-18 23:08:53.522122')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (959, 'bernardita', 'bernarditalynch@gmail.com', NULL, 1, '2015-03-18 23:08:53.532081', '2015-03-18 23:08:53.532081')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (960, 'gruporipper', 'grupo.ripper@gmail.com', NULL, 1, '2015-03-18 23:08:53.545315', '2015-03-18 23:08:53.545315')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (961, 'Rebeca', 'rebecape@hotmail.com', NULL, 1, '2015-03-18 23:08:53.566907', '2015-03-18 23:08:53.566907')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (962, 'Rodrigo', 'dizzlecciko@gmail.com', NULL, 1, '2015-03-18 23:08:53.578306', '2015-03-18 23:08:53.578306')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (963, 'Macarena', 'macarenariv@gmail.com', NULL, 1, '2015-03-18 23:08:53.595310', '2015-03-18 23:08:53.595310')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (964, 'CAROLINA', 'carolhen58@yahoo.com', NULL, 1, '2015-03-18 23:08:53.604673', '2015-03-18 23:08:53.604673')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (965, 'SoniaGonzalez', 'sonik222@gmail.com', NULL, 1, '2015-03-18 23:08:53.613095', '2015-03-18 23:08:53.613095')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (966, 'sandra', 'princesa_hallulla@yahoo.es', NULL, 1, '2015-03-18 23:08:53.621690', '2015-03-18 23:08:53.621690')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (967, 'Cristián', 'cgomezz@uc.cl', NULL, 1, '2015-03-18 23:08:53.630201', '2015-03-18 23:08:53.630201')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (968, 'camila', 'mafalda_foxy2@hotmail.com', NULL, 1, '2015-03-18 23:08:53.644783', '2015-03-18 23:08:53.644783')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (969, 'francisca', 'franterrazas@hotmail.com', NULL, 1, '2015-03-18 23:08:53.652728', '2015-03-18 23:08:53.652728')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (970, 'Diego', 'dieguetexxx@gmail.com', NULL, 1, '2015-03-18 23:08:53.661185', '2015-03-18 23:08:53.661185')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (971, 'Cristian', 'voltajemarciano@hotmail.com', NULL, 1, '2015-03-18 23:08:53.669525', '2015-03-18 23:08:53.669525')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (972, 'Soledad', 'soledadbravo@hotmail.com', NULL, 1, '2015-03-18 23:08:53.677940', '2015-03-18 23:08:53.677940')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (973, 'Alvaro', 'admin@alvarogiron.com', NULL, 1, '2015-03-18 23:08:53.695741', '2015-03-18 23:08:53.695741')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (974, 'liliana', 'lilianaricci@vtr.net', NULL, 1, '2015-03-18 23:08:53.705184', '2015-03-18 23:08:53.705184')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (975, 'magdalena', 'mpnovoa@gmail.com', NULL, 1, '2015-03-18 23:08:53.713236', '2015-03-18 23:08:53.713236')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (976, 'Claudia', 'claudiayarur@gmail.com', NULL, 1, '2015-03-18 23:08:53.722902', '2015-03-18 23:08:53.722902')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (977, 'Jose', 'trivinosur@gmail.com', NULL, 1, '2015-03-18 23:08:53.730808', '2015-03-18 23:08:53.730808')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (978, 'Valeria', 'iosoifhan@yahoo.com.mx', NULL, 1, '2015-03-18 23:08:53.745122', '2015-03-18 23:08:53.745122')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (979, 'Esteban', 'estebanpappa@hotmail.com', NULL, 1, '2015-03-18 23:08:53.753140', '2015-03-18 23:08:53.753140')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (980, 'Alex', 'alexmezac@yahoo.es', NULL, 1, '2015-03-18 23:08:53.762424', '2015-03-18 23:08:53.762424')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (981, 'Paulo', 'leon3vgc@gmail.com', NULL, 1, '2015-03-18 23:08:53.770846', '2015-03-18 23:08:53.770846')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (982, 'Pta.', 'nfarto@yahoo.es', NULL, 1, '2015-03-18 23:08:53.779607', '2015-03-18 23:08:53.779607')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (983, 'Renato', 'kerocolor@hotmail.com', NULL, 1, '2015-03-18 23:08:53.795358', '2015-03-18 23:08:53.795358')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (984, 'Daniela', 'miljanakovacic@gmail.com', NULL, 1, '2015-03-18 23:08:53.809803', '2015-03-18 23:08:53.809803')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (985, 'antonia', 'antocafati@gmail.com', NULL, 1, '2015-03-18 23:08:53.818474', '2015-03-18 23:08:53.818474')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (986, 'JETZABEL', 'jetzabelgonza@gmail.com', NULL, 1, '2015-03-18 23:08:53.826822', '2015-03-18 23:08:53.826822')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (987, 'Peque', 'pequecanas@gmail.com', NULL, 1, '2015-03-18 23:08:53.844888', '2015-03-18 23:08:53.844888')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (988, 'eduardo', 'lalourbano@mac.com', NULL, 1, '2015-03-18 23:08:53.861053', '2015-03-18 23:08:53.861053')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (989, 'Evelyn', 'ecaritooo@hotmail.com', NULL, 1, '2015-03-18 23:08:53.870535', '2015-03-18 23:08:53.870535')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (990, 'felipe', 'felbaeza@hotmail.com', NULL, 1, '2015-03-18 23:08:53.878887', '2015-03-18 23:08:53.878887')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (991, 'Fernando', 'ferroarte70@hotmail.com', NULL, 1, '2015-03-18 23:08:53.894630', '2015-03-18 23:08:53.894630')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (992, 'Florencia', 'florenciainfante@gmail.com', NULL, 1, '2015-03-18 23:08:53.909335', '2015-03-18 23:08:53.909335')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (993, 'gabriel', 'yonotengoseisdedos@gmail.com', NULL, 1, '2015-03-18 23:08:53.918747', '2015-03-18 23:08:53.918747')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (994, 'lucia', 'luzms06@hotmail.com', NULL, 1, '2015-03-18 23:08:53.927424', '2015-03-18 23:08:53.927424')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (995, 'anaclara', 'anaclaraholm@hotmail.com', NULL, 1, '2015-03-18 23:08:53.944258', '2015-03-18 23:08:53.944258')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (996, 'Juan', 'jczuniga.a@hotmail.com', NULL, 1, '2015-03-18 23:08:53.953469', '2015-03-18 23:08:53.953469')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (997, 'nevenka', 'nevenkart@yahoo.com', NULL, 1, '2015-03-18 23:08:53.961551', '2015-03-18 23:08:53.961551')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (998, 'jacqueline', 'jacodorlhiac@gmail.com', NULL, 1, '2015-03-18 23:08:53.971254', '2015-03-18 23:08:53.971254')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (999, 'Alejandra', 'alepcoirini@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:53.979653', '2015-03-18 23:08:53.979653')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1000, 'David', 'david.quinteros.a@gmail.com', NULL, 1, '2015-03-18 23:08:53.994154', '2015-03-18 23:08:53.994154')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1001, 'Daniela', 'daniaravena@gmail.com', NULL, 1, '2015-03-18 23:08:54.006284', '2015-03-18 23:08:54.006284')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1002, 'lucio', 'an63l6r15@hotmail.com', NULL, 1, '2015-03-18 23:08:54.014666', '2015-03-18 23:08:54.014666')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1003, 'Guillermo', 'will@menta.net', NULL, 1, '2015-03-18 23:08:54.023328', '2015-03-18 23:08:54.023328')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1004, 'susana', 'susanasandia@gmail.com', NULL, 1, '2015-03-18 23:08:54.031732', '2015-03-18 23:08:54.031732')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1005, 'magda', 'maggyaguirre@hotmail.com', NULL, 1, '2015-03-18 23:08:54.045077', '2015-03-18 23:08:54.045077')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1006, 'Koichiro', 'pk_ogino@yahoo.com', NULL, 1, '2015-03-18 23:08:54.053843', '2015-03-18 23:08:54.053843')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1007, 'MONICA', 'leytonmonica@gmail.com', NULL, 1, '2015-03-18 23:08:54.064050', '2015-03-18 23:08:54.064050')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1008, 'Javier', 'jjcoronadog@gmail.com', NULL, 1, '2015-03-18 23:08:54.072773', '2015-03-18 23:08:54.072773')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1009, 'Daniel', 'dansilvaplata@gmail.com', NULL, 1, '2015-03-18 23:08:54.081012', '2015-03-18 23:08:54.081012')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1010, 'Jonh', 'retratosobretela@gmail.com', NULL, 1, '2015-03-18 23:08:54.102186', '2015-03-18 23:08:54.102186')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1011, 'Sergio', 'smujicap@gmail.com', NULL, 1, '2015-03-18 23:08:54.117248', '2015-03-18 23:08:54.117248')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1012, 'Pablo', 'papelmadera@gmail.com', NULL, 1, '2015-03-18 23:08:54.126710', '2015-03-18 23:08:54.126710')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1013, 'MAX', 'maxalarguti@hotmail.com', NULL, 1, '2015-03-18 23:08:54.144858', '2015-03-18 23:08:54.144858')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1014, 'SANDRA', 'sandraguzman01@hotmail.com', NULL, 1, '2015-03-18 23:08:54.153984', '2015-03-18 23:08:54.153984')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1015, 'Gladys', 'gladysvega13@hotmail.com', NULL, 1, '2015-03-18 23:08:54.162605', '2015-03-18 23:08:54.162605')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1016, 'Claudia', 'cv_marga@hotmail.com', NULL, 1, '2015-03-18 23:08:54.171182', '2015-03-18 23:08:54.171182')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1017, 'rosarioateaga', 'rosarioateaga@gmail.com', NULL, 1, '2015-03-18 23:08:54.180010', '2015-03-18 23:08:54.180010')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1018, 'danielita', 'minga269@gmail.com', NULL, 1, '2015-03-18 23:08:54.194536', '2015-03-18 23:08:54.194536')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1019, 'hector', 'inshector@gmail.com', NULL, 1, '2015-03-18 23:08:54.203827', '2015-03-18 23:08:54.203827')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1020, 'francisco', 'romeroarte@gmail.com', NULL, 1, '2015-03-18 23:08:54.212864', '2015-03-18 23:08:54.212864')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1021, 'Julio', 'julio@ducuron.com.ar', NULL, 1, '2015-03-18 23:08:54.221242', '2015-03-18 23:08:54.221242')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1022, 'monica', 'monca_234@hotmail.com', NULL, 1, '2015-03-18 23:08:54.230188', '2015-03-18 23:08:54.230188')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1023, 'ANA', 'mirandaquiroz@mirandaquiroz.cl', NULL, 1, '2015-03-18 23:08:54.243671', '2015-03-18 23:08:54.243671')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1024, 'inês', 'ines.zrgt@gmail.com', NULL, 1, '2015-03-18 23:08:54.252437', '2015-03-18 23:08:54.252437')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1025, 'ANDREA', 'andylampas@hotmail.com', NULL, 1, '2015-03-18 23:08:54.260853', '2015-03-18 23:08:54.260853')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1026, 'Roberto', 'biscein2000@yahoo.com', NULL, 1, '2015-03-18 23:08:54.269755', '2015-03-18 23:08:54.269755')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1027, 'enrique', 'szamozky@gmail.com', NULL, 1, '2015-03-18 23:08:54.278946', '2015-03-18 23:08:54.278946')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1028, 'Carlos', 'camusartist@gmail.com', NULL, 1, '2015-03-18 23:08:54.294013', '2015-03-18 23:08:54.294013')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1029, 'José', 'coto.chadid@gmail.com', NULL, 1, '2015-03-18 23:08:54.303604', '2015-03-18 23:08:54.303604')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1030, 'VERO', 'vpuchi@hotmail.com', NULL, 1, '2015-03-18 23:08:54.312137', '2015-03-18 23:08:54.312137')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1031, 'Lucho', 'luchonomas@hotmail.com', NULL, 1, '2015-03-18 23:08:54.320285', '2015-03-18 23:08:54.320285')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1032, 'ELIA', 'eliarocio1118@gmail.com', NULL, 1, '2015-03-18 23:08:54.329821', '2015-03-18 23:08:54.329821')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1033, 'sylvia', 'sylviariverar@gmail.com', NULL, 1, '2015-03-18 23:08:54.344780', '2015-03-18 23:08:54.344780')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1034, 'Maria', 'mpazbezanilla@gmail.com', NULL, 1, '2015-03-18 23:08:54.353561', '2015-03-18 23:08:54.353561')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1035, 'SOFIA', 'sofiacolacci@yahoo.es', NULL, 1, '2015-03-18 23:08:54.362055', '2015-03-18 23:08:54.362055')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1036, 'ximena', 'xgeisse@gmail.com', NULL, 1, '2015-03-18 23:08:54.370573', '2015-03-18 23:08:54.370573')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1037, 'volamario', 'marco.simola@gmail.com', NULL, 1, '2015-03-18 23:08:54.379320', '2015-03-18 23:08:54.379320')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1038, 'Ingrid', 'kieesbaiser@gmail.com', NULL, 1, '2015-03-18 23:08:54.400045', '2015-03-18 23:08:54.400045')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1039, 'Arrieta', 'paula.arrieta@arrietascl.org', NULL, 1, '2015-03-18 23:08:54.435056', '2015-03-18 23:08:54.435056')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1040, 'Gabriel', 'gabriel.rodriguez@paisfotografico.cl', NULL, 1, '2015-03-18 23:08:54.446101', '2015-03-18 23:08:54.446101')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1041, 'Astrid', 'astridfh@hotmail.com', NULL, 1, '2015-03-18 23:08:54.460159', '2015-03-18 23:08:54.460159')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1042, 'María', 'macarena26molina@hotmail.com', NULL, 1, '2015-03-18 23:08:54.477794', '2015-03-18 23:08:54.477794')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1043, 'Elisa', 'balmacedaelisa@gmail.com', NULL, 1, '2015-03-18 23:08:54.565072', '2015-03-18 23:08:54.565072')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1044, 'Isabel', 'isavjuliet@yahoo.com', NULL, 1, '2015-03-18 23:08:54.579422', '2015-03-18 23:08:54.579422')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1045, 'GonzaloFloresMuñoz', 'caesadechomba@gmail.com', NULL, 1, '2015-03-18 23:08:54.588385', '2015-03-18 23:08:54.588385')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1046, 'cristian', 'cristianrsa@gmail.com', NULL, 1, '2015-03-18 23:08:54.597060', '2015-03-18 23:08:54.597060')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1047, 'silvana', 'silvanairiondo@hotmail.com', NULL, 1, '2015-03-18 23:08:54.609524', '2015-03-18 23:08:54.609524')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1048, 'Constanza', 'birnizka@hotmail.com', NULL, 1, '2015-03-18 23:08:54.618228', '2015-03-18 23:08:54.618228')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1049, 'fernanda', 'furruti@gmail.com', NULL, 1, '2015-03-18 23:08:54.626560', '2015-03-18 23:08:54.626560')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1050, 'Paulina', 'paulimillas@hotmail.com', NULL, 1, '2015-03-18 23:08:54.635137', '2015-03-18 23:08:54.635137')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1051, 'Jorge', 'manicomiobunkers@hotmail.com', NULL, 1, '2015-03-18 23:08:54.643800', '2015-03-18 23:08:54.643800')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1052, 'Matías', 'nuevas_excusas@hotmail.com', NULL, 1, '2015-03-18 23:08:54.708862', '2015-03-18 23:08:54.708862')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1053, 'flor', 'welcometothechongo@hotmail.com', NULL, 1, '2015-03-18 23:08:54.797796', '2015-03-18 23:08:54.797796')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1054, 'JOSE', 'josecuri1@gmail.com', NULL, 1, '2015-03-18 23:08:54.809634', '2015-03-18 23:08:54.809634')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1055, 'LILIANA', 'lilianapatlayan@hotmail.com', NULL, 1, '2015-03-18 23:08:54.818917', '2015-03-18 23:08:54.818917')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1056, 'Stephanie', 'pollitopooley@hotmail.com', NULL, 1, '2015-03-18 23:08:54.827177', '2015-03-18 23:08:54.827177')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1057, 'rebeca', 'rebecasantaella@yahoo.es', NULL, 1, '2015-03-18 23:08:54.843099', '2015-03-18 23:08:54.843099')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1058, 'maria', 'malena26cl@yahoo.com', NULL, 1, '2015-03-18 23:08:54.851033', '2015-03-18 23:08:54.851033')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1059, 'rebequita', 'luisbsalazar@yahoo.es', NULL, 1, '2015-03-18 23:08:54.860393', '2015-03-18 23:08:54.860393')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1060, 'paul', 'pol.lion7@gmail.com', NULL, 1, '2015-03-18 23:08:54.869003', '2015-03-18 23:08:54.869003')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1061, 'Venjamin', 'bejorque@uc.cl', NULL, 1, '2015-03-18 23:08:54.877602', '2015-03-18 23:08:54.877602')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1062, 'Ignacia', 'aicangi@gmail.com', NULL, 1, '2015-03-18 23:08:54.892533', '2015-03-18 23:08:54.892533')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1063, 'felipe', 'fdelaguilazz11@yahoo.es', NULL, 1, '2015-03-18 23:08:54.908637', '2015-03-18 23:08:54.908637')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1064, 'mike', 'mrr109@aol.com', NULL, 1, '2015-03-18 23:08:54.917195', '2015-03-18 23:08:54.917195')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1065, 'gabriela', 'gcercos@gmail.com', NULL, 1, '2015-03-18 23:08:54.925718', '2015-03-18 23:08:54.925718')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1066, 'francisca', 'peluzza_1989@hotmail.com', NULL, 1, '2015-03-18 23:08:54.941930', '2015-03-18 23:08:54.941930')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1067, 'p3luzz4', 'p3luzz4@hotmail.com', NULL, 1, '2015-03-18 23:08:54.951323', '2015-03-18 23:08:54.951323')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1068, 'Joselo', 'joselonthomassiny@yahoo.es', NULL, 1, '2015-03-18 23:08:55.001437', '2015-03-18 23:08:55.001437')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1069, 'delbatitu', 'delbatitu@montevideo.com.uy', NULL, 1, '2015-03-18 23:08:55.024344', '2015-03-18 23:08:55.024344')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1070, 'tomas', 'gelfriocalor@gmail.com', NULL, 1, '2015-03-18 23:08:55.044723', '2015-03-18 23:08:55.044723')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1071, 'Sebastián', 'seb_ham@yahoo.com', NULL, 1, '2015-03-18 23:08:55.058876', '2015-03-18 23:08:55.058876')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1072, 'julio', 'juliofabresrivas@gmail.com', NULL, 1, '2015-03-18 23:08:55.067756', '2015-03-18 23:08:55.067756')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1073, 'Susana', 'susanabotello@hotmail.com', NULL, 1, '2015-03-18 23:08:55.076335', '2015-03-18 23:08:55.076335')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1074, 'Nicolás', 'nico.olivares@gmail.com', NULL, 1, '2015-03-18 23:08:55.101306', '2015-03-18 23:08:55.101306')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1075, 'ivan', 'theotherfreakshow@gmail.com', NULL, 1, '2015-03-18 23:08:55.111646', '2015-03-18 23:08:55.111646')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1076, 'Patricio', 'patbruna@yahoo.es', NULL, 1, '2015-03-18 23:08:55.134713', '2015-03-18 23:08:55.134713')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1077, 'Ingrid', 'paula.vall@gmail.com', NULL, 1, '2015-03-18 23:08:55.145518', '2015-03-18 23:08:55.145518')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1078, 'Sebastian', 'martinez_fadic@hotmail.com', NULL, 1, '2015-03-18 23:08:55.196036', '2015-03-18 23:08:55.196036')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1079, 'carlos', 'albertovegas_768@msn.com', NULL, 1, '2015-03-18 23:08:55.220213', '2015-03-18 23:08:55.220213')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1080, 'yadira', 'yadiralarreal@hotmail.com', NULL, 1, '2015-03-18 23:08:55.238166', '2015-03-18 23:08:55.238166')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1081, 'Marisol', 'mosh_amg@hotmail.com', NULL, 1, '2015-03-18 23:08:55.247646', '2015-03-18 23:08:55.247646')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1082, 'Carmen', 'carmenshuuu@hotmail.com', NULL, 1, '2015-03-18 23:08:55.264787', '2015-03-18 23:08:55.264787')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1083, 'Fredy', 'fredymebu@hotmail.com', NULL, 1, '2015-03-18 23:08:55.291506', '2015-03-18 23:08:55.291506')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1084, 'carolina', 'segizmundo@gmail.com', NULL, 1, '2015-03-18 23:08:55.308638', '2015-03-18 23:08:55.308638')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1085, 'marcospoeta', 'marcospoeta@hotmail.com', NULL, 1, '2015-03-18 23:08:55.329921', '2015-03-18 23:08:55.329921')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1086, 'Romina', 'rominaortegam@hotmail.com', NULL, 1, '2015-03-18 23:08:55.342546', '2015-03-18 23:08:55.342546')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1087, 'Claudio', 'claudio.penailillo@oxus.cl', NULL, 1, '2015-03-18 23:08:55.410300', '2015-03-18 23:08:55.410300')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1088, 'David', 'driveros@gmail.com', NULL, 1, '2015-03-18 23:08:55.442484', '2015-03-18 23:08:55.442484')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1089, 'clark', 'clarkurt@vtr.net', NULL, 1, '2015-03-18 23:08:55.459106', '2015-03-18 23:08:55.459106')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1090, 'Catalina', 'odiseaskatsh@hotmail.com', NULL, 1, '2015-03-18 23:08:55.467483', '2015-03-18 23:08:55.467483')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1091, 'Luis', 'luisguerramiranda@gmail.com', NULL, 1, '2015-03-18 23:08:55.498383', '2015-03-18 23:08:55.498383')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1092, 'Run', 'runsaber@hotmail.com', NULL, 1, '2015-03-18 23:08:55.518869', '2015-03-18 23:08:55.518869')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1093, 'Gracia', 'graciaviless@hotmail.com', NULL, 1, '2015-03-18 23:08:55.533674', '2015-03-18 23:08:55.533674')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1094, 'Orlando', 'orlandogarridor@gmail.com', NULL, 1, '2015-03-18 23:08:55.555192', '2015-03-18 23:08:55.555192')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1095, 'Pablo', 'pviojo@gmail.com', NULL, 1, '2015-03-18 23:08:55.587080', '2015-03-18 23:08:55.587080')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1096, 'Ignacio', 'letthal@hotmail.com', NULL, 1, '2015-03-18 23:08:55.618702', '2015-03-18 23:08:55.618702')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1097, 'cynsclay', 'cyngr@hotmail.com', NULL, 1, '2015-03-18 23:08:55.641965', '2015-03-18 23:08:55.641965')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1098, 'Rodrigo', 'locorovi@gmail.com', NULL, 1, '2015-03-18 23:08:55.666224', '2015-03-18 23:08:55.666224')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1099, 'Hubert', 'hubert.castillo@gmail.com', NULL, 1, '2015-03-18 23:08:55.730203', '2015-03-18 23:08:55.730203')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1100, 'Felipe', 'felipe.valdivia@hotmail.com', NULL, 1, '2015-03-18 23:08:55.751632', '2015-03-18 23:08:55.751632')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1101, 'Jaime', 'jaime@comodo.cl', NULL, 1, '2015-03-18 23:08:55.767148', '2015-03-18 23:08:55.767148')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1102, 'Signorelli', 'asignorelli@gmail.com', NULL, 1, '2015-03-18 23:08:55.792065', '2015-03-18 23:08:55.792065')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1103, 'antonia', 'antonia@plazagmail.com', NULL, 1, '2015-03-18 23:08:55.821776', '2015-03-18 23:08:55.821776')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1104, 'Carolina', 'caroangel84@gmail.com', NULL, 1, '2015-03-18 23:08:55.849174', '2015-03-18 23:08:55.849174')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1105, 'jack', 'jackhumano@hotmail.com', NULL, 1, '2015-03-18 23:08:55.863714', '2015-03-18 23:08:55.863714')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1106, 'Monserrat', 'psychoretro@gmail.com', NULL, 1, '2015-03-18 23:08:55.923744', '2015-03-18 23:08:55.923744')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1107, 'MARCIAL', 'OPINA@LAICRAM.ES', NULL, 1, '2015-03-18 23:08:55.950461', '2015-03-18 23:08:55.950461')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1108, 'Ignacio', 'ignaciomunozvicuna@gmail.com', NULL, 1, '2015-03-18 23:08:55.965659', '2015-03-18 23:08:55.965659')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1109, 'Carlos', 'tresgatosnegros@gmail.com', NULL, 1, '2015-03-18 23:08:55.977061', '2015-03-18 23:08:55.977061')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1110, 'carolina', 'carola.hermana@gmail.com', NULL, 1, '2015-03-18 23:08:56.009599', '2015-03-18 23:08:56.009599')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1111, 'JULIA', 'julia.sanchez.viveros@gmail.com', NULL, 1, '2015-03-18 23:08:56.024112', '2015-03-18 23:08:56.024112')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1112, 'matias', 'matiasolaruss@hotmail.com', NULL, 1, '2015-03-18 23:08:56.036675', '2015-03-18 23:08:56.036675')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1113, 'Sara', 'sara_cancellieri@hotmail.com', NULL, 1, '2015-03-18 23:08:56.059950', '2015-03-18 23:08:56.059950')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1114, 'CAROLINA', 'carocorrales21@hotmail.com', NULL, 1, '2015-03-18 23:08:56.096583', '2015-03-18 23:08:56.096583')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1115, 'Lucrecia', 'lucreconget@yahoo.es', NULL, 1, '2015-03-18 23:08:56.123986', '2015-03-18 23:08:56.123986')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1116, 'trafyk', 'fquezadaleal@gmail.com', NULL, 1, '2015-03-18 23:08:56.147070', '2015-03-18 23:08:56.147070')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1117, 'Charles', 'cavergara@udec.cl', NULL, 1, '2015-03-18 23:08:56.170572', '2015-03-18 23:08:56.170572')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1118, 'Verónica', 'vroaguirre@gmail.com', NULL, 1, '2015-03-18 23:08:56.192318', '2015-03-18 23:08:56.192318')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1119, 'lisbeth', 'lisbethps@hotmail.com', NULL, 1, '2015-03-18 23:08:56.216303', '2015-03-18 23:08:56.216303')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1120, 'José', 'exorton@gmail.com', NULL, 1, '2015-03-18 23:08:56.243770', '2015-03-18 23:08:56.243770')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1121, 'adolfo', 'adolfo.martinez@hotmail.com', NULL, 1, '2015-03-18 23:08:56.269665', '2015-03-18 23:08:56.269665')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1122, 'el', 'controlealafemme@gmail.com', NULL, 1, '2015-03-18 23:08:56.298874', '2015-03-18 23:08:56.298874')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1123, 'Juan', 'juanpablotapia@gmail.com', NULL, 1, '2015-03-18 23:08:56.321933', '2015-03-18 23:08:56.321933')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1124, 'Javier', 'payanussis@gmail.com', NULL, 1, '2015-03-18 23:08:56.351404', '2015-03-18 23:08:56.351404')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1125, 'Monica', 'monicalabrat@hotmail.com', NULL, 1, '2015-03-18 23:08:56.369698', '2015-03-18 23:08:56.369698')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1126, 'Elizabeth', 'sanhuezalopez@hotmail.com', NULL, 1, '2015-03-18 23:08:56.396296', '2015-03-18 23:08:56.396296')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1127, 'ROBERTO', 'cartes25@gmail.com', NULL, 1, '2015-03-18 23:08:56.410592', '2015-03-18 23:08:56.410592')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1128, 'flavin', 'fcolavin@gmail.com', NULL, 1, '2015-03-18 23:08:56.444095', '2015-03-18 23:08:56.444095')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1129, 'Macarena', 'cinta.amarga@gmail.com', NULL, 1, '2015-03-18 23:08:56.472725', '2015-03-18 23:08:56.472725')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1130, 'MONA', 'monaurzua@gmail.com', NULL, 1, '2015-03-18 23:08:56.488221', '2015-03-18 23:08:56.488221')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1131, 'Gabriel', 'gabotron@hotmail.com', NULL, 1, '2015-03-18 23:08:56.506484', '2015-03-18 23:08:56.506484')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1132, 'karina', 'karinacastanedaz@hotmail.com', NULL, 1, '2015-03-18 23:08:56.522391', '2015-03-18 23:08:56.522391')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1133, 'huaira', 'bhuaira@yahoo.com.ar', NULL, 1, '2015-03-18 23:08:56.554152', '2015-03-18 23:08:56.554152')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1134, 'Pedro', 'trueno.pe@gmail.com', NULL, 1, '2015-03-18 23:08:56.651797', '2015-03-18 23:08:56.651797')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1135, 'Francisco', 'cromososma@gmail.com', NULL, 1, '2015-03-18 23:08:56.669343', '2015-03-18 23:08:56.669343')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1136, 'Francisco', 'franciscositja@yahoo.com', NULL, 1, '2015-03-18 23:08:56.686846', '2015-03-18 23:08:56.686846')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1137, 'CRISTOBAL', 'cristobalgazmuri@gmail.com', NULL, 1, '2015-03-18 23:08:56.707445', '2015-03-18 23:08:56.707445')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1138, 'jose', 'jm_marty@hotmail.com', NULL, 1, '2015-03-18 23:08:56.742573', '2015-03-18 23:08:56.742573')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1139, 'Gonzalo', 'blodoks@hotmail.com', NULL, 1, '2015-03-18 23:08:56.762395', '2015-03-18 23:08:56.762395')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1140, 'alfonso', 'cruzjalfonso@yahoo.es', NULL, 1, '2015-03-18 23:08:56.785437', '2015-03-18 23:08:56.785437')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1141, 'Alvaro', 'wirinkutral@gmail.com', NULL, 1, '2015-03-18 23:08:56.821208', '2015-03-18 23:08:56.821208')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1142, 'alex', 'al_atac3@hotmail.com', NULL, 1, '2015-03-18 23:08:56.855861', '2015-03-18 23:08:56.855861')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1143, 'Javiera', 'delesterorealizadora@gmail.com', NULL, 1, '2015-03-18 23:08:56.888594', '2015-03-18 23:08:56.888594')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1144, 'Jorge', 'jorgemorenogomez@gmail.com', NULL, 1, '2015-03-18 23:08:56.906915', '2015-03-18 23:08:56.906915')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1145, 'José', 'jose.conchajara@gmail.com', NULL, 1, '2015-03-18 23:08:56.919557', '2015-03-18 23:08:56.919557')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1146, 'Roberto', 'robertogiustigiusti@gmail.com', NULL, 1, '2015-03-18 23:08:56.942277', '2015-03-18 23:08:56.942277')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1147, 'María', 'mariaagabler@gmail.com', NULL, 1, '2015-03-18 23:08:56.974656', '2015-03-18 23:08:56.974656')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1148, 'Viviana', 'corvalanarmijo@gmail.com', NULL, 1, '2015-03-18 23:08:56.995577', '2015-03-18 23:08:56.995577')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1149, 'Ales', 'ales.villegas@gmail.com', NULL, 1, '2015-03-18 23:08:57.031657', '2015-03-18 23:08:57.031657')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1150, 'gabriel', 'elartista04@hotmail.com', NULL, 1, '2015-03-18 23:08:57.054747', '2015-03-18 23:08:57.054747')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1151, 'Malinalli', 'quiauhtecpa@yahoo.com.mx', NULL, 1, '2015-03-18 23:08:57.085083', '2015-03-18 23:08:57.085083')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1152, 'Miguel', 'miguel.dinamarca@gmail.com', NULL, 1, '2015-03-18 23:08:57.109735', '2015-03-18 23:08:57.109735')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1153, 'Hugo', 'moephius@gmail.com', NULL, 1, '2015-03-18 23:08:57.140180', '2015-03-18 23:08:57.140180')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1154, 'René', 'renemoya4@gmail.com', NULL, 1, '2015-03-18 23:08:57.162033', '2015-03-18 23:08:57.162033')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1155, 'Brisa', 'ciacaidalibre@hotmail.com', NULL, 1, '2015-03-18 23:08:57.244260', '2015-03-18 23:08:57.244260')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1156, 'Flavio', 'flapan@vtr.net', NULL, 1, '2015-03-18 23:08:57.276744', '2015-03-18 23:08:57.276744')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1157, 'Alexa', 'alexaphotos@gmail.com', NULL, 1, '2015-03-18 23:08:57.303067', '2015-03-18 23:08:57.303067')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1158, 'Claudio', 'alescartonera@gmail.com', NULL, 1, '2015-03-18 23:08:57.342837', '2015-03-18 23:08:57.342837')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1159, 'Claudia', 'laclaudiasalas@gmail.com', NULL, 1, '2015-03-18 23:08:57.366894', '2015-03-18 23:08:57.366894')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1160, 'Joaquin', 'iturrietabarra@gmail.com', NULL, 1, '2015-03-18 23:08:57.389218', '2015-03-18 23:08:57.389218')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1161, 'Francisco', 'francisco.sitja@gmail.com', NULL, 1, '2015-03-18 23:08:57.418270', '2015-03-18 23:08:57.418270')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1162, 'alex', 'spiacente.signore@gmail.com', NULL, 1, '2015-03-18 23:08:57.433691', '2015-03-18 23:08:57.433691')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1163, 'Claudia', 'Clau_bwm@hotmail.com', NULL, 1, '2015-03-18 23:08:57.465528', '2015-03-18 23:08:57.465528')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1164, 'Pilar', 'deliriosvioletas@gmail.com', NULL, 1, '2015-03-18 23:08:57.485208', '2015-03-18 23:08:57.485208')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1165, 'Pilarde', 'pateberlin@hotmail.es', NULL, 1, '2015-03-18 23:08:57.512237', '2015-03-18 23:08:57.512237')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1166, 'Ana', 'acvicuna@gmail.com', NULL, 1, '2015-03-18 23:08:57.531864', '2015-03-18 23:08:57.531864')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1167, 'Nico', 'norellana@gmail.com', NULL, 1, '2015-03-18 23:08:57.553216', '2015-03-18 23:08:57.553216')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1168, 'Triana', 'yuki_sunao@hotmail.com', NULL, 1, '2015-03-18 23:08:57.577733', '2015-03-18 23:08:57.577733')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1169, 'fjba', 'mozaico@gmail.com', NULL, 1, '2015-03-18 23:08:57.609834', '2015-03-18 23:08:57.609834')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1170, 'Franco', 'etertaller@hotmail.com', NULL, 1, '2015-03-18 23:08:57.629974', '2015-03-18 23:08:57.629974')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1171, 'Jorge', 'arquijorge.dib@gmail.com', NULL, 1, '2015-03-18 23:08:57.660593', '2015-03-18 23:08:57.660593')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1172, 'Francisca', 'francisca.martinezfernandez@gmail.com', NULL, 1, '2015-03-18 23:08:57.676065', '2015-03-18 23:08:57.676065')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1173, 'EDWARDS', 'DOBLESTAY@GMAIL.COM', NULL, 1, '2015-03-18 23:08:57.700206', '2015-03-18 23:08:57.700206')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1174, 'andrea', 'dipunto@vtr.net', NULL, 1, '2015-03-18 23:08:57.761360', '2015-03-18 23:08:57.761360')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1175, 'Mario', 'fotos.omega@gmail.com', NULL, 1, '2015-03-18 23:08:57.784943', '2015-03-18 23:08:57.784943')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1176, 'sole', 'sole.p.o@gmail.com', NULL, 1, '2015-03-18 23:08:57.810442', '2015-03-18 23:08:57.810442')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1177, 'Scandar', 's.bh_@hotmail.com', NULL, 1, '2015-03-18 23:08:57.841521', '2015-03-18 23:08:57.841521')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1178, 'Carolina', 'carolinasoft@gmail.com', NULL, 1, '2015-03-18 23:08:57.867694', '2015-03-18 23:08:57.867694')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1179, 'Elias', 'elias.carlo@gmail.com', NULL, 1, '2015-03-18 23:08:57.894865', '2015-03-18 23:08:57.894865')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1180, 'paola', 'pcrios@gmail.com', NULL, 1, '2015-03-18 23:08:57.956400', '2015-03-18 23:08:57.956400')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1181, 'loreto', 'loretogreve@hotmail.com', NULL, 1, '2015-03-18 23:08:58.000758', '2015-03-18 23:08:58.000758')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1182, 'Gerardo', 'olmazabal@gmail.com', NULL, 1, '2015-03-18 23:08:58.022124', '2015-03-18 23:08:58.022124')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1183, 'Ale', 'avillas1000@yahoo.com', NULL, 1, '2015-03-18 23:08:58.043051', '2015-03-18 23:08:58.043051')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1184, 'Daniel', 'no_surprises@live.cl', NULL, 1, '2015-03-18 23:08:58.062943', '2015-03-18 23:08:58.062943')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1185, 'Paulina', 'paulinagarciac@gmail.com', NULL, 1, '2015-03-18 23:08:58.074334', '2015-03-18 23:08:58.074334')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1186, 'aaaa', 'pichulita@esfera.cl', NULL, 1, '2015-03-18 23:08:58.100927', '2015-03-18 23:08:58.100927')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1187, 'felipe', 'mocoetereo@hotmail.com', NULL, 1, '2015-03-18 23:08:58.118582', '2015-03-18 23:08:58.118582')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1188, 'felipegonzalezvalero', 'fgonzalezarriagada@gmail.com', NULL, 1, '2015-03-18 23:08:58.133617', '2015-03-18 23:08:58.133617')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1189, 'Manuel', 'manuelss@hotmail.com', NULL, 1, '2015-03-18 23:08:58.166093', '2015-03-18 23:08:58.166093')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1190, 'Claudia', 'cmibanez@puc.cl', NULL, 1, '2015-03-18 23:08:58.189194', '2015-03-18 23:08:58.189194')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1191, 'Rodrigo', 'violante.rodrigo@gmail.com', NULL, 1, '2015-03-18 23:08:58.217891', '2015-03-18 23:08:58.217891')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1192, 'Cristobal', 'tb.cristobal@gmail.com', NULL, 1, '2015-03-18 23:08:58.230126', '2015-03-18 23:08:58.230126')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1193, 'Joseph', 'jshaoul@gmail.com', NULL, 1, '2015-03-18 23:08:59.074422', '2015-03-18 23:08:59.074422')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1194, 'Verónica', 'vroaguirre@hotmail.com', NULL, 1, '2015-03-18 23:08:59.084274', '2015-03-18 23:08:59.084274')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1195, 'Cristian', 'cmoralesk@gmail.com', NULL, 1, '2015-03-18 23:08:59.092976', '2015-03-18 23:08:59.092976')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1196, 'Andres', 'marchantdearte@gmail.com', NULL, 1, '2015-03-18 23:08:59.101400', '2015-03-18 23:08:59.101400')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1197, 'francisca', 'pancha_al@hotmail.com', NULL, 1, '2015-03-18 23:08:59.111358', '2015-03-18 23:08:59.111358')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1198, 'Carolina', 'caroparra@hotmail.com', NULL, 1, '2015-03-18 23:08:59.133189', '2015-03-18 23:08:59.133189')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1199, 'Rodrigo', 'fuentesrodrigo@gmail.com', NULL, 1, '2015-03-18 23:08:59.147440', '2015-03-18 23:08:59.147440')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1200, 'Daniela', 'danizeta@gmail.com', NULL, 1, '2015-03-18 23:08:59.156750', '2015-03-18 23:08:59.156750')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1201, 'Cristián', 'cristiandepablo@gmail.com', NULL, 1, '2015-03-18 23:08:59.164876', '2015-03-18 23:08:59.164876')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1202, 'darwin', 'urbanodonte@gmail.com', NULL, 1, '2015-03-18 23:08:59.181927', '2015-03-18 23:08:59.181927')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1203, 'JAIME', 'RUTHD4444@HOTMAIL.COM', NULL, 1, '2015-03-18 23:08:59.190734', '2015-03-18 23:08:59.190734')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1204, 'eduardo', 'fromebg@hotmail.com', NULL, 1, '2015-03-18 23:08:59.199519', '2015-03-18 23:08:59.199519')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1205, 'CRISTIAN', 'pecesillo@gmail.com', NULL, 1, '2015-03-18 23:08:59.285573', '2015-03-18 23:08:59.285573')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1206, 'Raimundo', 'raymondlakes@gmail.com', NULL, 1, '2015-03-18 23:08:59.294818', '2015-03-18 23:08:59.294818')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1207, 'Paulo', 'methoz@gmail.com', NULL, 1, '2015-03-18 23:08:59.304090', '2015-03-18 23:08:59.304090')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1208, 'Doris', 'dmoralesvogt@yahoo.es', NULL, 1, '2015-03-18 23:08:59.313034', '2015-03-18 23:08:59.313034')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1209, 'pablo', 'pablo_88x@hotmail.com', NULL, 1, '2015-03-18 23:08:59.321959', '2015-03-18 23:08:59.321959')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1210, 'Romina', 'caesargazli@gmail.com', NULL, 1, '2015-03-18 23:08:59.349389', '2015-03-18 23:08:59.349389')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1211, 'Paola', 'pferraris@vtr.net', NULL, 1, '2015-03-18 23:08:59.358955', '2015-03-18 23:08:59.358955')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1212, 'Alberto', '1220@albertolazo.cl', NULL, 1, '2015-03-18 23:08:59.366879', '2015-03-18 23:08:59.366879')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1213, 'MARIA', 'mim698@hotmail.com', NULL, 1, '2015-03-18 23:08:59.375788', '2015-03-18 23:08:59.375788')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1214, 'MANE', 'manemoraga@yahoo.com', NULL, 1, '2015-03-18 23:08:59.384723', '2015-03-18 23:08:59.384723')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1215, 'Christian', 'metamann@metamann.com', NULL, 1, '2015-03-18 23:08:59.397662', '2015-03-18 23:08:59.397662')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1216, 'Alfredo', 'tonika@entelchile.net', NULL, 1, '2015-03-18 23:08:59.406543', '2015-03-18 23:08:59.406543')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1217, 'valentina', 'tinne_duir@hotmail.com', NULL, 1, '2015-03-18 23:08:59.415037', '2015-03-18 23:08:59.415037')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1218, 'Jack', 'poetayladron@gmail.com', NULL, 1, '2015-03-18 23:08:59.423373', '2015-03-18 23:08:59.423373')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1219, 'alberto', 'almabusari@hotmail.com', NULL, 1, '2015-03-18 23:08:59.432236', '2015-03-18 23:08:59.432236')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1220, 'Alvaro', 'aqt@powermedia.cl', NULL, 1, '2015-03-18 23:08:59.448231', '2015-03-18 23:08:59.448231')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1221, 'Nicolás', 'le.ivre@gmail.com', NULL, 1, '2015-03-18 23:08:59.457502', '2015-03-18 23:08:59.457502')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1222, 'RAMON', 'gtramonna@hotmail.com', NULL, 1, '2015-03-18 23:08:59.466307', '2015-03-18 23:08:59.466307')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1223, 'liliana', 'lilianismo@hotmail.com', NULL, 1, '2015-03-18 23:08:59.475558', '2015-03-18 23:08:59.475558')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1224, 'Estefanía', 'cramberrie@gmail.com', NULL, 1, '2015-03-18 23:08:59.484103', '2015-03-18 23:08:59.484103')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1225, 'macarena', 'macarenaperich@gmail.com', NULL, 1, '2015-03-18 23:08:59.498578', '2015-03-18 23:08:59.498578')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1226, 'Javier', 'javier.rodriguez.pino@gmail.com', NULL, 1, '2015-03-18 23:08:59.507339', '2015-03-18 23:08:59.507339')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1227, 'ruboc', 'ru.sottolichio@gmail.com', NULL, 1, '2015-03-18 23:08:59.515668', '2015-03-18 23:08:59.515668')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1228, 'Juan', 'jpfarru@hotmail.com', NULL, 1, '2015-03-18 23:08:59.524548', '2015-03-18 23:08:59.524548')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1229, 'Dominique', 'domilath@gmail.com', NULL, 1, '2015-03-18 23:08:59.533493', '2015-03-18 23:08:59.533493')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1230, 'hugo', 'hugo.arenas@enaer.cl', NULL, 1, '2015-03-18 23:08:59.547548', '2015-03-18 23:08:59.547548')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1231, 'Carlos', 'artecota@yahoo.es', NULL, 1, '2015-03-18 23:08:59.557231', '2015-03-18 23:08:59.557231')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1232, 'CarloCota', 'artecotacarloscarrasco@gmail.com', NULL, 1, '2015-03-18 23:08:59.565756', '2015-03-18 23:08:59.565756')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1233, 'joel', 'g29digital@gmail.com', NULL, 1, '2015-03-18 23:08:59.574945', '2015-03-18 23:08:59.574945')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1234, 'Constanza', 'm.constanza.avello@gmail.com', NULL, 1, '2015-03-18 23:08:59.583877', '2015-03-18 23:08:59.583877')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1235, 'carla', 'carlis306@hotmail.com', NULL, 1, '2015-03-18 23:08:59.597988', '2015-03-18 23:08:59.597988')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1236, 'DYANGO', 'dyango.escultor@gmail.com', NULL, 1, '2015-03-18 23:08:59.606672', '2015-03-18 23:08:59.606672')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1237, 'María', 'jesu_cdm@hotmail.com', NULL, 1, '2015-03-18 23:08:59.615102', '2015-03-18 23:08:59.615102')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1238, 'Felipe', 'henruz@gmail.com', NULL, 1, '2015-03-18 23:08:59.624247', '2015-03-18 23:08:59.624247')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1239, 'Colectivo', 'michwanoo1@hotmail.com', NULL, 1, '2015-03-18 23:08:59.633707', '2015-03-18 23:08:59.633707')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1240, 'ivhan', 'ivhan_franco@hotmail.com', NULL, 1, '2015-03-18 23:08:59.647063', '2015-03-18 23:08:59.647063')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1241, 'Barbara', 'barbarawormull@hotmail.com', NULL, 1, '2015-03-18 23:08:59.655565', '2015-03-18 23:08:59.655565')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1242, 'Maria', 'mlavaisse@hotmail.com', NULL, 1, '2015-03-18 23:08:59.665561', '2015-03-18 23:08:59.665561')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1243, 'Beatriz', 'beatrizvarga@gmail.com', NULL, 1, '2015-03-18 23:08:59.674147', '2015-03-18 23:08:59.674147')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1244, 'Said', 'saidokins@yahoo.com.mx', NULL, 1, '2015-03-18 23:08:59.682719', '2015-03-18 23:08:59.682719')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1245, 'Miguel', 'zs@live.cl', NULL, 1, '2015-03-18 23:08:59.698316', '2015-03-18 23:08:59.698316')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1246, 'Joselyne', 'katty9981@hotmail.com', NULL, 1, '2015-03-18 23:08:59.706969', '2015-03-18 23:08:59.706969')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1247, 'Enric', 'info@enricbardera.com', NULL, 1, '2015-03-18 23:08:59.715509', '2015-03-18 23:08:59.715509')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1248, 'Paulina', 'paulinavelizg@gmail.com', NULL, 1, '2015-03-18 23:08:59.725204', '2015-03-18 23:08:59.725204')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1249, 'victor', 'victortugahiena@hotmail.com', NULL, 1, '2015-03-18 23:08:59.734416', '2015-03-18 23:08:59.734416')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1250, 'Carolina', 'artistavisualcca@gmail.com', NULL, 1, '2015-03-18 23:08:59.747757', '2015-03-18 23:08:59.747757')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1251, 'Carolina', 'carolinapazcortes@gmail.com', NULL, 1, '2015-03-18 23:08:59.756520', '2015-03-18 23:08:59.756520')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1252, 'carolina', 'pazpudica@gmail.com', NULL, 1, '2015-03-18 23:08:59.765407', '2015-03-18 23:08:59.765407')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1253, 'nicole', 'piojito_0.7@hotmail.com', NULL, 1, '2015-03-18 23:08:59.774403', '2015-03-18 23:08:59.774403')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1254, 'ALEJANDRO', 'schmittzalba@yahoo.es', NULL, 1, '2015-03-18 23:08:59.783062', '2015-03-18 23:08:59.783062')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1255, 'Carlos', 'brunacarlos@gmail.com', NULL, 1, '2015-03-18 23:08:59.797342', '2015-03-18 23:08:59.797342')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1256, 'SALA', 'info@sala01.cl', NULL, 1, '2015-03-18 23:08:59.806065', '2015-03-18 23:08:59.806065')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1257, 'Felipe', 'felipe-aliaga@hotmail.com', NULL, 1, '2015-03-18 23:08:59.814336', '2015-03-18 23:08:59.814336')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1258, 'Pía', 'piadellorto@gmail.com', NULL, 1, '2015-03-18 23:08:59.823989', '2015-03-18 23:08:59.823989')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1259, 'All', 'masacra1@hotmail.com', NULL, 1, '2015-03-18 23:08:59.833780', '2015-03-18 23:08:59.833780')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1260, 'CaRoLiNa', 'karoars.m.n@hotmail.com', NULL, 1, '2015-03-18 23:08:59.847475', '2015-03-18 23:08:59.847475')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1261, 'David', 'elsir@hotmail.com', NULL, 1, '2015-03-18 23:08:59.874872', '2015-03-18 23:08:59.874872')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1262, 'Claudio', 'ce.aguileraalvarez@gmail.com', NULL, 1, '2015-03-18 23:08:59.897722', '2015-03-18 23:08:59.897722')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1263, 'maria', 'mariaguzmanc@gmail.com', NULL, 1, '2015-03-18 23:08:59.922121', '2015-03-18 23:08:59.922121')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1264, 'HAYDEE', 'sweet_child_82@hotmail.com', NULL, 1, '2015-03-18 23:08:59.932837', '2015-03-18 23:08:59.932837')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1265, 'Leonardo', 'dark_hunter_sr@hotmail.com', NULL, 1, '2015-03-18 23:08:59.941377', '2015-03-18 23:08:59.941377')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1266, 'Mauricio', 'mauroolivares@gmail.com', NULL, 1, '2015-03-18 23:08:59.955107', '2015-03-18 23:08:59.955107')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1267, 'camila', 'camii.relax@gmail.com', NULL, 1, '2015-03-18 23:09:00.025073', '2015-03-18 23:09:00.025073')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1268, 'Gustavo', 'gustavors@gmail.com', NULL, 1, '2015-03-18 23:09:00.052958', '2015-03-18 23:09:00.052958')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1269, 'Jacqueline', 'juju1992@hotmail.com', NULL, 1, '2015-03-18 23:09:00.062448', '2015-03-18 23:09:00.062448')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1270, 'Geraldine', 'tarasolar@gmail.com', NULL, 1, '2015-03-18 23:09:00.080989', '2015-03-18 23:09:00.080989')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1271, 'cindy', 'vivemosaico@gmail.com', NULL, 1, '2015-03-18 23:09:00.090358', '2015-03-18 23:09:00.090358')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1272, 'Jaime', 'superjaimo@gmail.com', NULL, 1, '2015-03-18 23:09:00.099323', '2015-03-18 23:09:00.099323')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1273, 'Mila', 'videodanzacl@gmail.com', NULL, 1, '2015-03-18 23:09:00.130467', '2015-03-18 23:09:00.130467')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1274, 'cristian', 'cristian_rsa@hotmail.com', NULL, 1, '2015-03-18 23:09:00.144426', '2015-03-18 23:09:00.144426')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1275, 'Salvador', 'sreyes@ripley.cl', NULL, 1, '2015-03-18 23:09:00.153332', '2015-03-18 23:09:00.153332')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1276, 'oscar', 'robot2xl@gmail.com', NULL, 1, '2015-03-18 23:09:00.167763', '2015-03-18 23:09:00.167763')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1277, 'claudia', 'videofemme@yahoo.com', NULL, 1, '2015-03-18 23:09:00.180482', '2015-03-18 23:09:00.180482')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1278, 'PIOJORADIOACTIVO', 'jetiandolamoska@hotmail.com', NULL, 1, '2015-03-18 23:09:00.189950', '2015-03-18 23:09:00.189950')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1279, 'Andres', 'franco_zuna@hotmail.com', NULL, 1, '2015-03-18 23:09:00.244668', '2015-03-18 23:09:00.244668')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1280, 'Diego', 'throne_of_alzeth88@hotmail.com', NULL, 1, '2015-03-18 23:09:00.274449', '2015-03-18 23:09:00.274449')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1281, 'gustavo', 'gustavodanielrios@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:00.283841', '2015-03-18 23:09:00.283841')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1282, 'ian', 'oyeian@hotmail.com', NULL, 1, '2015-03-18 23:09:00.297257', '2015-03-18 23:09:00.297257')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1283, 'David', 'david.floreshora@gmail.com', NULL, 1, '2015-03-18 23:09:00.306810', '2015-03-18 23:09:00.306810')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1284, 'nilo', 'nilo.casares@uv.es', NULL, 1, '2015-03-18 23:09:00.315437', '2015-03-18 23:09:00.315437')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1285, 'Andrea', 'praeesse@hotmail.com', NULL, 1, '2015-03-18 23:09:00.324338', '2015-03-18 23:09:00.324338')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1286, 'cristian', 'crismurg_93@hotmail.com', NULL, 1, '2015-03-18 23:09:00.345204', '2015-03-18 23:09:00.345204')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1287, 'arturo', 'laradiocarpintero@gmail.com', NULL, 1, '2015-03-18 23:09:00.378482', '2015-03-18 23:09:00.378482')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1288, 'C.', 'cglorianova@gmail.com', NULL, 1, '2015-03-18 23:09:00.396420', '2015-03-18 23:09:00.396420')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1289, 'paraiso', 'podriasveniraverme@gmail.com', NULL, 1, '2015-03-18 23:09:00.422818', '2015-03-18 23:09:00.422818')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1290, 'Carlos', 'cdeurresti@skinrsp.cl', NULL, 1, '2015-03-18 23:09:00.432303', '2015-03-18 23:09:00.432303')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1291, 'Rubnéia', 'rubneia@gmail.com', NULL, 1, '2015-03-18 23:09:00.446926', '2015-03-18 23:09:00.446926')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1292, 'Carlos', 'cureta@pmc.cl', NULL, 1, '2015-03-18 23:09:00.456079', '2015-03-18 23:09:00.456079')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1293, 'javier', 'jasi71@hotmail.com', NULL, 1, '2015-03-18 23:09:00.476335', '2015-03-18 23:09:00.476335')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1294, 'OUED', 'oued2@yahoo.es', NULL, 1, '2015-03-18 23:09:00.485985', '2015-03-18 23:09:00.485985')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1295, 'Hijo', 'hijo_ra@hotmail.com', NULL, 1, '2015-03-18 23:09:00.507420', '2015-03-18 23:09:00.507420')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1296, 'daniela', 'danielaperezdearce@hotmail.com', NULL, 1, '2015-03-18 23:09:00.516206', '2015-03-18 23:09:00.516206')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1297, 'la', 'rosaeliasmass@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:00.532654', '2015-03-18 23:09:00.532654')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1298, 'nora', 'in_unda@hotmail.com', NULL, 1, '2015-03-18 23:09:00.565861', '2015-03-18 23:09:00.565861')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1299, 'ROBERTO', 'faundez.roberto@gmail.com', NULL, 1, '2015-03-18 23:09:00.574991', '2015-03-18 23:09:00.574991')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1300, 'Valentina', 'valentina.montero@gmail.com', NULL, 1, '2015-03-18 23:09:00.599760', '2015-03-18 23:09:00.599760')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1301, 'BodhiNirav', 'bodhinirav@gmail.com', NULL, 1, '2015-03-18 23:09:00.633054', '2015-03-18 23:09:00.633054')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1302, 'Constanza', 'cotaguell@gmail.com', NULL, 1, '2015-03-18 23:09:00.666778', '2015-03-18 23:09:00.666778')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1303, 'Sergio', 'sergioamado@claroscuroafv.com', NULL, 1, '2015-03-18 23:09:00.699485', '2015-03-18 23:09:00.699485')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1304, 'Monica', 'mrojaspi@gmail.com', NULL, 1, '2015-03-18 23:09:00.724518', '2015-03-18 23:09:00.724518')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1305, 'mg', 'milaymultitud@gmail.com', NULL, 1, '2015-03-18 23:09:00.759719', '2015-03-18 23:09:00.759719')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1306, 'jenny', 'gocasantana@hotmail.com', NULL, 1, '2015-03-18 23:09:00.793725', '2015-03-18 23:09:00.793725')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1307, 'Alejandro', 'alejandrovisual@gmail.com', NULL, 1, '2015-03-18 23:09:00.822976', '2015-03-18 23:09:00.822976')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1308, 'Juan', 'pequenyojuan@gmail.com', NULL, 1, '2015-03-18 23:09:00.845968', '2015-03-18 23:09:00.845968')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1309, 'Natalia', 'solnaciente29@gmail.com', NULL, 1, '2015-03-18 23:09:00.866216', '2015-03-18 23:09:00.866216')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1310, 'Renzo', 'renzovisual@gmail.com', NULL, 1, '2015-03-18 23:09:00.895880', '2015-03-18 23:09:00.895880')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1311, 'alejandro', 'elcanoa@gmail.com', NULL, 1, '2015-03-18 23:09:00.912474', '2015-03-18 23:09:00.912474')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1312, 'Mac', 'mac@mac.cl', NULL, 1, '2015-03-18 23:09:00.921549', '2015-03-18 23:09:00.921549')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1313, 'valentina', 'vacc85@yahoo.com', NULL, 1, '2015-03-18 23:09:00.952925', '2015-03-18 23:09:00.952925')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1314, 'Hector', 'berceruelohector@gmail.com', NULL, 1, '2015-03-18 23:09:00.967393', '2015-03-18 23:09:00.967393')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1315, 'Sebastian', 'concigliery@gmail.com', NULL, 1, '2015-03-18 23:09:00.993063', '2015-03-18 23:09:00.993063')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1316, 'Paula', 'tiepola@gmail.com', NULL, 1, '2015-03-18 23:09:01.019552', '2015-03-18 23:09:01.019552')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1317, 'nani', 'nanidesarasqueta@gmail.com', NULL, 1, '2015-03-18 23:09:01.043370', '2015-03-18 23:09:01.043370')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1318, 'raquel', 'quenita__s@hotmail.com', NULL, 1, '2015-03-18 23:09:01.067371', '2015-03-18 23:09:01.067371')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1319, 'Orlita', 'orlitaromerogomez@gmail.com', NULL, 1, '2015-03-18 23:09:01.102696', '2015-03-18 23:09:01.102696')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1320, 'Pablo', 'pitapia@hotmail.com', NULL, 1, '2015-03-18 23:09:01.133224', '2015-03-18 23:09:01.133224')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1321, 'patricio', 'patbrunapo@gmail.com', NULL, 1, '2015-03-18 23:09:01.152690', '2015-03-18 23:09:01.152690')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1322, 'Martín', 'lecarospalumbo@gmail.com', NULL, 1, '2015-03-18 23:09:01.175626', '2015-03-18 23:09:01.175626')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1323, 'Luisa', 'luisa@srtata.com', NULL, 1, '2015-03-18 23:09:01.199187', '2015-03-18 23:09:01.199187')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1324, 'Ano', 'pabloncholoncho@hotmail.com', NULL, 1, '2015-03-18 23:09:01.226120', '2015-03-18 23:09:01.226120')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1325, 'Francisca', 'pesaitamarisopa@yahoo.com', NULL, 1, '2015-03-18 23:09:01.249293', '2015-03-18 23:09:01.249293')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1326, 'Mibuel', 'mmiranda4@hotmail.com', NULL, 1, '2015-03-18 23:09:01.277575', '2015-03-18 23:09:01.277575')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1327, 'joaquin', 'jdm@tmconceptos.cl', NULL, 1, '2015-03-18 23:09:01.307746', '2015-03-18 23:09:01.307746')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1328, 'Javiera', 'javierarte68@yahoo.es', NULL, 1, '2015-03-18 23:09:01.332785', '2015-03-18 23:09:01.332785')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1329, 'cordelia', 'cordegarza2@hotmail.com', NULL, 1, '2015-03-18 23:09:01.342406', '2015-03-18 23:09:01.342406')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1330, 'Eric', 'alcibarcr@hotmail.com', NULL, 1, '2015-03-18 23:09:01.361414', '2015-03-18 23:09:01.361414')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1331, 'Juan', 'jpriquelmem@gmail.com', NULL, 1, '2015-03-18 23:09:01.370106', '2015-03-18 23:09:01.370106')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1332, 'Jorge', 'vetealinfierno2@gmail.com', NULL, 1, '2015-03-18 23:09:01.388675', '2015-03-18 23:09:01.388675')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1333, 'Vicente', 'Necro__Goth@hotmail.com', NULL, 1, '2015-03-18 23:09:01.423819', '2015-03-18 23:09:01.423819')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1334, 'Gabriela', 'gabriela.aranguiz@hotmail.com', NULL, 1, '2015-03-18 23:09:01.440993', '2015-03-18 23:09:01.440993')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1335, 'Barbara', 'potter.barbarita@gmail.com', NULL, 1, '2015-03-18 23:09:01.467251', '2015-03-18 23:09:01.467251')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1336, 'Eduardo', 'edoaraos@yahoo.es', NULL, 1, '2015-03-18 23:09:01.477092', '2015-03-18 23:09:01.477092')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1337, 'constanza', 'constanzaloyolola@gmail.com', NULL, 1, '2015-03-18 23:09:01.540902', '2015-03-18 23:09:01.540902')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1338, 'samuelsarmiento', 'samuelsarmiento87@hotmail.com', NULL, 1, '2015-03-18 23:09:01.568440', '2015-03-18 23:09:01.568440')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1339, 'A.', 'gusmillon@gmail.com', NULL, 1, '2015-03-18 23:09:01.596310', '2015-03-18 23:09:01.596310')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1340, 'deisy', 'marcelinavargas@hotmail.com', NULL, 1, '2015-03-18 23:09:01.621581', '2015-03-18 23:09:01.621581')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1341, 'romulo', 'roartma@gmail.com', NULL, 1, '2015-03-18 23:09:01.646313', '2015-03-18 23:09:01.646313')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1342, 'samir', 'samir1488@hotmail.com', NULL, 1, '2015-03-18 23:09:01.668671', '2015-03-18 23:09:01.668671')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1343, 'Carlos', 'graficadesplazada@mail.com', NULL, 1, '2015-03-18 23:09:01.695223', '2015-03-18 23:09:01.695223')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1344, 'Carlos', 'graficadesplazada@gmail.com', NULL, 1, '2015-03-18 23:09:01.719538', '2015-03-18 23:09:01.719538')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1345, 'Francisca', 'franciscaaaaa@gmail.com', NULL, 1, '2015-03-18 23:09:01.743213', '2015-03-18 23:09:01.743213')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1346, 'Lester', 'ceroenlaizquierda@yahoo.es', NULL, 1, '2015-03-18 23:09:01.767478', '2015-03-18 23:09:01.767478')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1347, 'gonzalo', 'gonzalopinoi@gmail.com', NULL, 1, '2015-03-18 23:09:01.791469', '2015-03-18 23:09:01.791469')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1348, 'Lady', 'belamorte@hotmail.com', NULL, 1, '2015-03-18 23:09:01.816957', '2015-03-18 23:09:01.816957')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1349, 'Fernanda', 'belamorte@htomail.com', NULL, 1, '2015-03-18 23:09:01.890201', '2015-03-18 23:09:01.890201')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1350, 'Sebastián', 'sebastian.gaete@gmail.com', NULL, 1, '2015-03-18 23:09:01.917699', '2015-03-18 23:09:01.917699')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1351, 'BRAVOESARTE', 'bravoesarteltda@gmail.com', NULL, 1, '2015-03-18 23:09:01.926886', '2015-03-18 23:09:01.926886')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1352, 'gonzalo', 'odiogratuito_6@hotmail.com', NULL, 1, '2015-03-18 23:09:01.954181', '2015-03-18 23:09:01.954181')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1353, 'gonzalo', 'carvajal.6@gmail.com', NULL, 1, '2015-03-18 23:09:01.977883', '2015-03-18 23:09:01.977883')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1354, 'alejandrosanchez', 'alejandro.paint@hotmail.com', NULL, 1, '2015-03-18 23:09:01.986952', '2015-03-18 23:09:01.986952')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1355, 'Benito', 'rar@vtr.net', NULL, 1, '2015-03-18 23:09:02.001117', '2015-03-18 23:09:02.001117')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1356, 'Alexandr', 'bogomazov@gmail.com', NULL, 1, '2015-03-18 23:09:02.017603', '2015-03-18 23:09:02.017603')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1357, 'Kathrina_Blanko', 'kathrina_blanko@yahoo.com', NULL, 1, '2015-03-18 23:09:02.040977', '2015-03-18 23:09:02.040977')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1358, 'rebelion', 'rebelion.aka.rebe@gmail.com', NULL, 1, '2015-03-18 23:09:02.135348', '2015-03-18 23:09:02.135348')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1359, 'Juan', 'jpchinasky@gmail.com', NULL, 1, '2015-03-18 23:09:02.144108', '2015-03-18 23:09:02.144108')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1360, 'monitta', 'damona_zsa@hotmail.com', NULL, 1, '2015-03-18 23:09:02.152484', '2015-03-18 23:09:02.152484')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1361, 'Mary', 'magenttaa@gmail.com', NULL, 1, '2015-03-18 23:09:02.160610', '2015-03-18 23:09:02.160610')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1362, 'Blokis!', 'blokis@gmail.com', NULL, 1, '2015-03-18 23:09:02.175293', '2015-03-18 23:09:02.175293')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1363, 'Leticia', 'leticiagshinozaki@yahoo.com', NULL, 1, '2015-03-18 23:09:02.201065', '2015-03-18 23:09:02.201065')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1364, 'Armando', 'armando.urrea@yahoo.es', NULL, 1, '2015-03-18 23:09:02.210995', '2015-03-18 23:09:02.210995')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1365, 'matias', 'matias.elgueta.zarhi@gmail.com', NULL, 1, '2015-03-18 23:09:02.225724', '2015-03-18 23:09:02.225724')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1366, 'FERNANDOMENASOANEZ', 'fernandomenasoanez@libero.it', NULL, 1, '2015-03-18 23:09:02.235789', '2015-03-18 23:09:02.235789')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1367, 'Francisco', 'friosaraya@gmail.com', NULL, 1, '2015-03-18 23:09:02.245293', '2015-03-18 23:09:02.245293')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1368, 'academia', 'academiadeartemartinsoria@gmail.com', NULL, 1, '2015-03-18 23:09:02.253522', '2015-03-18 23:09:02.253522')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1369, 'Mikel', 'mgaragorri@gmail.com', NULL, 1, '2015-03-18 23:09:02.262260', '2015-03-18 23:09:02.262260')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1370, 'COLUMPIO', 'columpiomadrid@yahoo.es', NULL, 1, '2015-03-18 23:09:02.287850', '2015-03-18 23:09:02.287850')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1371, 'Sara', 'saradiciero@ciudad.com.ar', NULL, 1, '2015-03-18 23:09:02.300761', '2015-03-18 23:09:02.300761')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1372, 'cesar', 'renuard84@yahoo.com', NULL, 1, '2015-03-18 23:09:02.324781', '2015-03-18 23:09:02.324781')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1373, 'virginia', 'vguilisasti@hotmail.com', NULL, 1, '2015-03-18 23:09:02.346024', '2015-03-18 23:09:02.346024')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1374, 'Montserrat', 'montsellados@lleida.org', NULL, 1, '2015-03-18 23:09:02.373526', '2015-03-18 23:09:02.373526')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1375, 'Montserrat', 'montsellados@ono.es', NULL, 1, '2015-03-18 23:09:02.382516', '2015-03-18 23:09:02.382516')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1376, 'Montse', 'montsellados@ono.com', NULL, 1, '2015-03-18 23:09:02.393117', '2015-03-18 23:09:02.393117')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1377, 'DHIMAS', 'dhimassantos@gmail.com', NULL, 1, '2015-03-18 23:09:02.408691', '2015-03-18 23:09:02.408691')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1378, 'Jaime', 'jaime_var@hotmail.com', NULL, 1, '2015-03-18 23:09:02.444455', '2015-03-18 23:09:02.444455')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1379, 'Fabian', 'fabianortiz@gmail.com', NULL, 1, '2015-03-18 23:09:02.681222', '2015-03-18 23:09:02.681222')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1380, 'propagunder', 'propagunder@gmail.com', NULL, 1, '2015-03-18 23:09:02.690478', '2015-03-18 23:09:02.690478')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1381, 'matias', 'marakanaso@hotmail.com', NULL, 1, '2015-03-18 23:09:02.701006', '2015-03-18 23:09:02.701006')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1382, 'Polly', 'boca___boca@hotmail.com', NULL, 1, '2015-03-18 23:09:02.712294', '2015-03-18 23:09:02.712294')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1383, 'Sofia', 'sofinovella@mac.com', NULL, 1, '2015-03-18 23:09:02.741133', '2015-03-18 23:09:02.741133')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1384, 'Diana', 'harosauza_d@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:03.438615', '2015-03-18 23:09:03.438615')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1385, 'ALBERTO', 'sciortino_a@hotmail.com', NULL, 1, '2015-03-18 23:09:03.448480', '2015-03-18 23:09:03.448480')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1386, 'Gonzalo', 'golazodewander@hotmail.com', NULL, 1, '2015-03-18 23:09:03.457438', '2015-03-18 23:09:03.457438')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1387, 'Yumbel', 'delcolordelcielo@gmail.com', NULL, 1, '2015-03-18 23:09:03.465537', '2015-03-18 23:09:03.465537')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1388, 'galo', 'galovilches@gmail.com', NULL, 1, '2015-03-18 23:09:03.474338', '2015-03-18 23:09:03.474338')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1389, 'galo', 'anitatequieromucho@hotmail.com', NULL, 1, '2015-03-18 23:09:03.489758', '2015-03-18 23:09:03.489758')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1390, 'Amparo', 'amparobaeza@gmail.com', NULL, 1, '2015-03-18 23:09:03.510497', '2015-03-18 23:09:03.510497')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1391, 'carlos', 'francaryave@gmail.com', NULL, 1, '2015-03-18 23:09:03.520413', '2015-03-18 23:09:03.520413')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1392, 'carlos', 'francaryave@hotmail.com', NULL, 1, '2015-03-18 23:09:03.538970', '2015-03-18 23:09:03.538970')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1393, 'Italo', 'interruptorno@hotmail.com', NULL, 1, '2015-03-18 23:09:03.547535', '2015-03-18 23:09:03.547535')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1394, 'strahinja', 'pincel_vacio@hotmail.com', NULL, 1, '2015-03-18 23:09:03.556397', '2015-03-18 23:09:03.556397')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1395, 'valentina', 'valehb_91@hotmail.com', NULL, 1, '2015-03-18 23:09:03.565018', '2015-03-18 23:09:03.565018')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1396, 'Verónica', 'beckermv@gmail.com', NULL, 1, '2015-03-18 23:09:03.574336', '2015-03-18 23:09:03.574336')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1397, 'carol', 'carolvisual@gmail.com', NULL, 1, '2015-03-18 23:09:03.589299', '2015-03-18 23:09:03.589299')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1398, 'Cristina', 'cris_horo@hotmail.com', NULL, 1, '2015-03-18 23:09:03.598222', '2015-03-18 23:09:03.598222')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1399, 'Strahinja', 'strahinjab@gmail.com', NULL, 1, '2015-03-18 23:09:03.606513', '2015-03-18 23:09:03.606513')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1400, 'Pulo', 'paulocontrerasadonis@gmail.com', NULL, 1, '2015-03-18 23:09:03.615191', '2015-03-18 23:09:03.615191')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1401, 'juan', 'info@juancarloscastillo.com', NULL, 1, '2015-03-18 23:09:03.624819', '2015-03-18 23:09:03.624819')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1402, 'Josè', 'josemiguelfortunatti@gmail.com', NULL, 1, '2015-03-18 23:09:03.638683', '2015-03-18 23:09:03.638683')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1403, 'Pam', 'pan.cun.miel@gmail.com', NULL, 1, '2015-03-18 23:09:03.646912', '2015-03-18 23:09:03.646912')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1404, 'Ricardo', 'rrdecs@hotmail.com', NULL, 1, '2015-03-18 23:09:03.655317', '2015-03-18 23:09:03.655317')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1405, 'stella', 'smbrieva@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:03.663754', '2015-03-18 23:09:03.663754')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1406, 'Camila', 'camiastabupe@yahoo.com', NULL, 1, '2015-03-18 23:09:03.672638', '2015-03-18 23:09:03.672638')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1407, 'Camila', 'camiastabupe@hotmail.com', NULL, 1, '2015-03-18 23:09:03.688401', '2015-03-18 23:09:03.688401')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1408, 'Camila', 'camiastabupe@gmail.com', NULL, 1, '2015-03-18 23:09:03.697400', '2015-03-18 23:09:03.697400')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1409, 'CLAUDIA', 'lasorda70@yahoo.com', NULL, 1, '2015-03-18 23:09:03.706024', '2015-03-18 23:09:03.706024')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1410, 'Fabiola', 'ffabiola@live.cl', NULL, 1, '2015-03-18 23:09:03.714672', '2015-03-18 23:09:03.714672')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1411, 'Maria', 'maca_rivera@hotmail.com', NULL, 1, '2015-03-18 23:09:03.723632', '2015-03-18 23:09:03.723632')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1412, 'NATALIA', 'natilr@gmail.com', NULL, 1, '2015-03-18 23:09:03.739636', '2015-03-18 23:09:03.739636')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1413, 'Juan', 'moya.jp@gmail.com', NULL, 1, '2015-03-18 23:09:03.748449', '2015-03-18 23:09:03.748449')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1414, 'test', 'miguelmichelson@artenlinea.com', NULL, 1, '2015-03-18 23:09:03.757005', '2015-03-18 23:09:03.757005')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1415, 'Celeste', 'celextextex@gmail.com', NULL, 1, '2015-03-18 23:09:03.765251', '2015-03-18 23:09:03.765251')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1416, 'franco', 'franco_simonetti@hotmail.com', NULL, 1, '2015-03-18 23:09:03.789581', '2015-03-18 23:09:03.789581')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1417, 'Karen', 'karensoto_03@hotmail.com', NULL, 1, '2015-03-18 23:09:03.798487', '2015-03-18 23:09:03.798487')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1418, 'matias', 'matiasreyne@hotmail.com', NULL, 1, '2015-03-18 23:09:03.806387', '2015-03-18 23:09:03.806387')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1419, 'macro', 'psicomartillazo@gmail.com', NULL, 1, '2015-03-18 23:09:03.814466', '2015-03-18 23:09:03.814466')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1420, 'enrique', 'enriquecrusellas@hispeed.ch', NULL, 1, '2015-03-18 23:09:03.823945', '2015-03-18 23:09:03.823945')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1421, 'Maria', 'meugeniapoblete@gmail.com', NULL, 1, '2015-03-18 23:09:03.839208', '2015-03-18 23:09:03.839208')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1422, 'pulo_pixel', 'pulo@live.cl', NULL, 1, '2015-03-18 23:09:03.851985', '2015-03-18 23:09:03.851985')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1423, 'claudio', 'claudioromo@gmail.com', NULL, 1, '2015-03-18 23:09:03.860695', '2015-03-18 23:09:03.860695')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1424, 'Matías', 'matis.otondo@gmail.com', NULL, 1, '2015-03-18 23:09:03.869150', '2015-03-18 23:09:03.869150')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1425, 'Matías', 'matias.otondo@gmail.com', NULL, 1, '2015-03-18 23:09:03.887390', '2015-03-18 23:09:03.887390')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1426, 'Academia', 'academiamartinsoria@gmail.com', NULL, 1, '2015-03-18 23:09:03.903067', '2015-03-18 23:09:03.903067')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1427, 'Martín', 'academiams@gmail.com', NULL, 1, '2015-03-18 23:09:03.912770', '2015-03-18 23:09:03.912770')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1428, 'Astrid', 'art@artconsultants.de', NULL, 1, '2015-03-18 23:09:03.922118', '2015-03-18 23:09:03.922118')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1429, 'Paloma', 'paloma.iq@hotmail.com', NULL, 1, '2015-03-18 23:09:03.937809', '2015-03-18 23:09:03.937809')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1430, 'maria', 'mzcote@gmail.com', NULL, 1, '2015-03-18 23:09:03.953606', '2015-03-18 23:09:03.953606')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1431, 'Jacinta', 'jazjacinta@gmail.com', NULL, 1, '2015-03-18 23:09:03.962392', '2015-03-18 23:09:03.962392')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1432, 'Blanco', 'blancosanto@yahoo.es', NULL, 1, '2015-03-18 23:09:03.970688', '2015-03-18 23:09:03.970688')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1433, 'Francisco', 'francisco.uzabeaga@gmail.com', NULL, 1, '2015-03-18 23:09:03.986683', '2015-03-18 23:09:03.986683')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1434, 'artista', 'nenereguera@hotmail.com', NULL, 1, '2015-03-18 23:09:03.995643', '2015-03-18 23:09:03.995643')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1435, 'jaime', 'sothik@hotmail.com', NULL, 1, '2015-03-18 23:09:04.004270', '2015-03-18 23:09:04.004270')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1436, 'CARLOS', 'carlosvergarariv@gmail.com', NULL, 1, '2015-03-18 23:09:04.012746', '2015-03-18 23:09:04.012746')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1437, 'Rosana', 'ro@rosanaruiz.com.ar', NULL, 1, '2015-03-18 23:09:04.023096', '2015-03-18 23:09:04.023096')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1438, 'Macka', 'Maca_eminem9@hotmail.com', NULL, 1, '2015-03-18 23:09:04.037211', '2015-03-18 23:09:04.037211')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1439, 'Ingrid', 'ingridlauw@gmail.com', NULL, 1, '2015-03-18 23:09:04.059511', '2015-03-18 23:09:04.059511')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1440, 'Andrés', 'andres@colectivopanal.org', NULL, 1, '2015-03-18 23:09:04.070352', '2015-03-18 23:09:04.070352')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1441, 'Marco', 'markucha_punk@yahoo.com', NULL, 1, '2015-03-18 23:09:04.086743', '2015-03-18 23:09:04.086743')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1442, 'Debbie', 'debbie.imclick@gmail.com', NULL, 1, '2015-03-18 23:09:04.095654', '2015-03-18 23:09:04.095654')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1443, 'josiana', 'bjosiana@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:04.105249', '2015-03-18 23:09:04.105249')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1444, 'Leopoldo', 'iozoi_ra@hotmail.com', NULL, 1, '2015-03-18 23:09:04.114594', '2015-03-18 23:09:04.114594')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1445, 'Paulina', 'hemiparasito@gmail.com', NULL, 1, '2015-03-18 23:09:04.123586', '2015-03-18 23:09:04.123586')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1446, 'María', 'mariaorecart@gmail.com', NULL, 1, '2015-03-18 23:09:04.137014', '2015-03-18 23:09:04.137014')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1447, 'Marta', 'martasimil@gmail.com', NULL, 1, '2015-03-18 23:09:04.146126', '2015-03-18 23:09:04.146126')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1448, 'Claudio', 'tintomir@gmail.com', NULL, 1, '2015-03-18 23:09:04.155683', '2015-03-18 23:09:04.155683')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1449, 'Macarena', 'macalvarado@gmail.com', NULL, 1, '2015-03-18 23:09:04.164196', '2015-03-18 23:09:04.164196')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1450, 'Maria', 'rodriguezlapuentefernandez@gmail.com', NULL, 1, '2015-03-18 23:09:04.172532', '2015-03-18 23:09:04.172532')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1451, 'Maria', 'yahveh-jire@hotmail.com', NULL, 1, '2015-03-18 23:09:04.187287', '2015-03-18 23:09:04.187287')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1452, 'catalina', 'numeroquince@gmail.com', NULL, 1, '2015-03-18 23:09:04.196131', '2015-03-18 23:09:04.196131')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1453, 'Maria', 'numeroquince@hotmail.com', NULL, 1, '2015-03-18 23:09:04.204689', '2015-03-18 23:09:04.204689')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1454, 'catalina', 'catalina_rosati@hotmail.com', NULL, 1, '2015-03-18 23:09:04.213617', '2015-03-18 23:09:04.213617')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1455, 'macarena', 'macapaztv@hotmail.com', NULL, 1, '2015-03-18 23:09:04.223261', '2015-03-18 23:09:04.223261')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1456, 'neme', 'nemee_@hotmail.com', NULL, 1, '2015-03-18 23:09:04.237531', '2015-03-18 23:09:04.237531')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1457, 'nemesio', 'nemesio.orellana@gmail.com', NULL, 1, '2015-03-18 23:09:04.246280', '2015-03-18 23:09:04.246280')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1458, 'Nancy', 'Nancy.mansillaa@gmail.com', NULL, 1, '2015-03-18 23:09:04.255983', '2015-03-18 23:09:04.255983')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1459, 'Gustavo', 'g_fuenzlaida_u@hotmail.com', NULL, 1, '2015-03-18 23:09:04.264805', '2015-03-18 23:09:04.264805')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1460, 'gustavo', 'g_fuenzalida_u@hotmail.com', NULL, 1, '2015-03-18 23:09:04.274103', '2015-03-18 23:09:04.274103')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1461, 'Eileen', 'ejluneck@uc.cl', NULL, 1, '2015-03-18 23:09:04.286116', '2015-03-18 23:09:04.286116')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1462, 'Felipe', 'feliash@showbeats.cl', NULL, 1, '2015-03-18 23:09:04.295374', '2015-03-18 23:09:04.295374')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1463, 'Macarena', 'macapaztb@gmail.com', NULL, 1, '2015-03-18 23:09:04.303359', '2015-03-18 23:09:04.303359')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1464, 'carlos', 'amadorzuniga@hotmail.fr', NULL, 1, '2015-03-18 23:09:04.313245', '2015-03-18 23:09:04.313245')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1465, 'Romina', 'rominarebolledo@hotmail.com', NULL, 1, '2015-03-18 23:09:04.322782', '2015-03-18 23:09:04.322782')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1466, 'M.', 'micarod@gmail.com', NULL, 1, '2015-03-18 23:09:04.335962', '2015-03-18 23:09:04.335962')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1467, 'Javier', 'hjavibi@hotmail.com', NULL, 1, '2015-03-18 23:09:04.356722', '2015-03-18 23:09:04.356722')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1468, 'Mª', 'mbueno54@yahoo.es', NULL, 1, '2015-03-18 23:09:04.383841', '2015-03-18 23:09:04.383841')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1469, 'Richard', 'richard.pintura@gmail.com', NULL, 1, '2015-03-18 23:09:04.394857', '2015-03-18 23:09:04.394857')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1470, 'Rubén', 'ruben@rubendeluis.com', NULL, 1, '2015-03-18 23:09:04.413238', '2015-03-18 23:09:04.413238')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1471, 'Val', 'val_balmaceda@hotmail.com', NULL, 1, '2015-03-18 23:09:04.425135', '2015-03-18 23:09:04.425135')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1472, 'CONSTANZA', 'conimedina@gmail.com', NULL, 1, '2015-03-18 23:09:04.436915', '2015-03-18 23:09:04.436915')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1473, 'pamela', 'disnois@gmail.com', NULL, 1, '2015-03-18 23:09:04.446306', '2015-03-18 23:09:04.446306')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1474, 'elirom', 'elirom_1555@hotmail.com', NULL, 1, '2015-03-18 23:09:04.472562', '2015-03-18 23:09:04.472562')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1475, 'Vilma', 'vilma.b.p@onda.com.br', NULL, 1, '2015-03-18 23:09:04.486427', '2015-03-18 23:09:04.486427')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1476, 'e.romo', 'e.romo.art@gmail.com', NULL, 1, '2015-03-18 23:09:04.495090', '2015-03-18 23:09:04.495090')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1477, 'disnois', 'disnois@yahoo.com', NULL, 1, '2015-03-18 23:09:04.507860', '2015-03-18 23:09:04.507860')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1478, 'paula', 'paaulaanovoaa@gmail.com', NULL, 1, '2015-03-18 23:09:04.543680', '2015-03-18 23:09:04.543680')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1479, 'Jènifer', 'deathdealer_96@hotmail.com', NULL, 1, '2015-03-18 23:09:04.553388', '2015-03-18 23:09:04.553388')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1480, 'Diego', 'die.rodriguez.perez@gmail.com', NULL, 1, '2015-03-18 23:09:04.563001', '2015-03-18 23:09:04.563001')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1481, 'Ivonne', 'ipalacios@manquehue.net', NULL, 1, '2015-03-18 23:09:04.571941', '2015-03-18 23:09:04.571941')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1482, 'Enrique', 'silverstein_emo@hotmail.com', NULL, 1, '2015-03-18 23:09:04.633841', '2015-03-18 23:09:04.633841')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1483, 'CLAUDIO', 'CAFERESTOBAR.VALENTTINO@GMAIL.COM', NULL, 1, '2015-03-18 23:09:04.662716', '2015-03-18 23:09:04.662716')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1484, 'María', 'mpepav@yahoo.es', NULL, 1, '2015-03-18 23:09:04.674497', '2015-03-18 23:09:04.674497')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1485, 'Matto', 'matto@tubatuba.net', NULL, 1, '2015-03-18 23:09:04.686597', '2015-03-18 23:09:04.686597')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1486, 'Pablo', 'pablo.rivera.t@gmail.com', NULL, 1, '2015-03-18 23:09:04.699676', '2015-03-18 23:09:04.699676')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1487, 'luciana', 'lucianagomez193@hotmail.com', NULL, 1, '2015-03-18 23:09:04.753907', '2015-03-18 23:09:04.753907')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1488, 'Gabriela', 'info@gabrielacornejo.cl', NULL, 1, '2015-03-18 23:09:04.775999', '2015-03-18 23:09:04.775999')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1489, 'chasco51', 'orlandito_galli@hotmail.com.ar', NULL, 1, '2015-03-18 23:09:04.787601', '2015-03-18 23:09:04.787601')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1490, 'chasco510', 'orlandito_galli@hotmail.com', NULL, 1, '2015-03-18 23:09:04.804554', '2015-03-18 23:09:04.804554')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1491, 'Loreto', 'loa.ojeda@blogspot.com', NULL, 1, '2015-03-18 23:09:04.813245', '2015-03-18 23:09:04.813245')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1492, 'Amaru', 'amarupintor@gmail.com', NULL, 1, '2015-03-18 23:09:04.830986', '2015-03-18 23:09:04.830986')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1493, 'daniela', 'daniela-sh@hotmail-DISABLED.com', NULL, 1, '2015-03-18 23:09:04.844731', '2015-03-18 23:09:04.844731')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1494, 'cata', 'cmenal@vtr.net', NULL, 1, '2015-03-18 23:09:04.867581', '2015-03-18 23:09:04.867581')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1495, 'mena', 'cmgeneraciondecontenidos@gmail.com', NULL, 1, '2015-03-18 23:09:04.955291', '2015-03-18 23:09:04.955291')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1496, 'felipe', 'fotomorfosis@gmail.com', NULL, 1, '2015-03-18 23:09:04.989985', '2015-03-18 23:09:04.989985')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1497, 'Mariela', 'galactomari@yahoo.com', NULL, 1, '2015-03-18 23:09:05.018874', '2015-03-18 23:09:05.018874')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1498, 'Sara', 'dplandiura@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:05.027630', '2015-03-18 23:09:05.027630')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1499, 'Max', 'maxsepulvedaz@gmail.com', NULL, 1, '2015-03-18 23:09:05.036446', '2015-03-18 23:09:05.036446')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1500, 'J', '8ctopus@gmail.com', NULL, 1, '2015-03-18 23:09:05.051571', '2015-03-18 23:09:05.051571')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1501, 'Manuel', 'bythor@vtr.net', NULL, 1, '2015-03-18 23:09:05.078189', '2015-03-18 23:09:05.078189')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1502, 'Laura', 'mundorealmecanico@hotmail.com', NULL, 1, '2015-03-18 23:09:05.111383', '2015-03-18 23:09:05.111383')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1503, 'Laura', 'halloweendenoche@hotmail.com', NULL, 1, '2015-03-18 23:09:05.123067', '2015-03-18 23:09:05.123067')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1504, 'Mauricio', 'mcostagui@hotmail.com', NULL, 1, '2015-03-18 23:09:05.145894', '2015-03-18 23:09:05.145894')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1505, 'Camila', 'camilmontero@gmail.com', NULL, 1, '2015-03-18 23:09:05.173003', '2015-03-18 23:09:05.173003')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1506, 'pato', 'pmantilla74@gmail.com', NULL, 1, '2015-03-18 23:09:05.183483', '2015-03-18 23:09:05.183483')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1507, 'Juan', 'juanpablo_arancibia@hotmail.com', NULL, 1, '2015-03-18 23:09:05.196016', '2015-03-18 23:09:05.196016')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1508, 'Marcela', 'diazbaeza123@mi.cl', NULL, 1, '2015-03-18 23:09:05.218809', '2015-03-18 23:09:05.218809')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1509, 'sebajork', 'blank_10@live.com', NULL, 1, '2015-03-18 23:09:05.244808', '2015-03-18 23:09:05.244808')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1510, 'Pablo', 'pablo.salamandra@gmail.com', NULL, 1, '2015-03-18 23:09:05.348421', '2015-03-18 23:09:05.348421')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1511, 'Raúl', 'rauldinizio56@hotmail.com', NULL, 1, '2015-03-18 23:09:05.358068', '2015-03-18 23:09:05.358068')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1512, 'Macarena', 'macapaztb@hotmail.com', NULL, 1, '2015-03-18 23:09:05.367362', '2015-03-18 23:09:05.367362')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1513, 'Leandro', 'leandro.campillay@gmail.com', NULL, 1, '2015-03-18 23:09:05.376724', '2015-03-18 23:09:05.376724')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1514, 'jesus', 'juniordeoro@hotmail.com', NULL, 1, '2015-03-18 23:09:05.389545', '2015-03-18 23:09:05.389545')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1515, 'sofía', 'camariwi@gmail.com', NULL, 1, '2015-03-18 23:09:05.404631', '2015-03-18 23:09:05.404631')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1516, 'Daniel', 'paz.rios@gmail.com', NULL, 1, '2015-03-18 23:09:05.418548', '2015-03-18 23:09:05.418548')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1517, 'Daniel', 'pas.rios@gmail.com', NULL, 1, '2015-03-18 23:09:05.428579', '2015-03-18 23:09:05.428579')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1518, 'Susana', 'susnahmias@hotmail.com', NULL, 1, '2015-03-18 23:09:05.452390', '2015-03-18 23:09:05.452390')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1519, 'SARANGELLO', 'sarangello@hotmail.com', NULL, 1, '2015-03-18 23:09:05.467873', '2015-03-18 23:09:05.467873')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1520, 'Raquel', 'sarangello@gmail.com', NULL, 1, '2015-03-18 23:09:05.478263', '2015-03-18 23:09:05.478263')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1521, 'evelyn', 'eveartes@gmail.com', NULL, 1, '2015-03-18 23:09:05.489745', '2015-03-18 23:09:05.489745')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1522, 'ISAAC', 'HOLIMX@GMAIL.COM', NULL, 1, '2015-03-18 23:09:05.529793', '2015-03-18 23:09:05.529793')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1523, 'Constanza', 'conigazmuri@hotmail.com', NULL, 1, '2015-03-18 23:09:05.550691', '2015-03-18 23:09:05.550691')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1524, 'fUcKiNgToYs!!!', 'acciondepulsar@gmail.com', NULL, 1, '2015-03-18 23:09:05.575176', '2015-03-18 23:09:05.575176')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1525, 'martínez', 'myriam.martinez@ec.europa.eu', NULL, 1, '2015-03-18 23:09:05.597985', '2015-03-18 23:09:05.597985')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1526, 'nicolas', 'tragasalivablog@gmail.com', NULL, 1, '2015-03-18 23:09:05.619833', '2015-03-18 23:09:05.619833')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1527, 'Jesús', 'jesusjansana@gmail.com', NULL, 1, '2015-03-18 23:09:05.641111', '2015-03-18 23:09:05.641111')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1528, 'peli', 'hombrequeselevoloelmate@gmail.com', NULL, 1, '2015-03-18 23:09:05.656558', '2015-03-18 23:09:05.656558')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1529, 'Maria', 'marita_jesus@hotmail.com', NULL, 1, '2015-03-18 23:09:05.678883', '2015-03-18 23:09:05.678883')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1530, 'Paulina', 'paulillanten@gmail.com', NULL, 1, '2015-03-18 23:09:05.705065', '2015-03-18 23:09:05.705065')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1531, 'zoe', 'acuario_30_24@hotmail.com', NULL, 1, '2015-03-18 23:09:05.714448', '2015-03-18 23:09:05.714448')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1532, 'Marla', 'marlafreire07@gmail.com', NULL, 1, '2015-03-18 23:09:05.730068', '2015-03-18 23:09:05.730068')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1533, 'FBN', 'fbnagel@gmail.com', NULL, 1, '2015-03-18 23:09:05.755188', '2015-03-18 23:09:05.755188')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1534, '::::::::::::.((((O_o)))))))))))):::::::', 'frydahvelazquez@live.com.mx', NULL, 1, '2015-03-18 23:09:05.778142', '2015-03-18 23:09:05.778142')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1535, 'cristian', 'cristiankirby@gmail.com', NULL, 1, '2015-03-18 23:09:05.808365', '2015-03-18 23:09:05.808365')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1536, 'Pía', 'piaurmeneta@gmail.com', NULL, 1, '2015-03-18 23:09:05.830976', '2015-03-18 23:09:05.830976')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1537, 'Álvaro', 'escobardechile@gmail.com', NULL, 1, '2015-03-18 23:09:05.848974', '2015-03-18 23:09:05.848974')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1538, 'antonia', 'antonia.isaacson@gmail.com', NULL, 1, '2015-03-18 23:09:05.867102', '2015-03-18 23:09:05.867102')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1539, 'Mariano', 'marianojaviermarcos@gmail.com', NULL, 1, '2015-03-18 23:09:05.884537', '2015-03-18 23:09:05.884537')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1540, 'soluciones', 'regle.com@gmail.com', NULL, 1, '2015-03-18 23:09:05.906346', '2015-03-18 23:09:05.906346')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1541, 'Alfonso', 'escultor@alfonsoperezplaza.es', NULL, 1, '2015-03-18 23:09:05.922277', '2015-03-18 23:09:05.922277')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1542, 'Francisco', 'infoarte0@gmail.com', NULL, 1, '2015-03-18 23:09:05.932380', '2015-03-18 23:09:05.932380')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1543, 'Pablo', 'galeriacallejera@gmail.com', NULL, 1, '2015-03-18 23:09:05.942371', '2015-03-18 23:09:05.942371')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1544, 'luis', 'la.heviag@gmail.com', NULL, 1, '2015-03-18 23:09:05.952773', '2015-03-18 23:09:05.952773')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1545, 'Natalia', 'nataliabarrueto@hotmail.com', NULL, 1, '2015-03-18 23:09:05.966065', '2015-03-18 23:09:05.966065')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1546, 'Natalia', 'nataliabarrueto@gmail.com', NULL, 1, '2015-03-18 23:09:05.975816', '2015-03-18 23:09:05.975816')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1547, 'maría', 'invunche@hotmail.com', NULL, 1, '2015-03-18 23:09:06.013013', '2015-03-18 23:09:06.013013')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1548, 'cristian', 'lagos30_@hotmail.com', NULL, 1, '2015-03-18 23:09:06.022626', '2015-03-18 23:09:06.022626')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1549, 'Pedro', 'pedropablo797@gmail.com', NULL, 1, '2015-03-18 23:09:06.050395', '2015-03-18 23:09:06.050395')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1550, 'Ivan', 'ivanpawluk@hotmail.com', NULL, 1, '2015-03-18 23:09:06.066611', '2015-03-18 23:09:06.066611')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1551, 'MIRANDA', 'ANIMIRANDA@MIRANDAQUIROZ.CL', NULL, 1, '2015-03-18 23:09:06.078007', '2015-03-18 23:09:06.078007')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1552, 'Debbie', 'debbie.imclick@gmail.co', NULL, 1, '2015-03-18 23:09:06.101074', '2015-03-18 23:09:06.101074')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1553, 'lucia', 'luchiledesma@gmail.com', NULL, 1, '2015-03-18 23:09:06.116592', '2015-03-18 23:09:06.116592')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1554, 'mariela', 'grullademetal@yahoo.com', NULL, 1, '2015-03-18 23:09:06.140381', '2015-03-18 23:09:06.140381')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1555, 'Mariela', 'grullademetal@hotmail.com', NULL, 1, '2015-03-18 23:09:06.151557', '2015-03-18 23:09:06.151557')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1556, 'fryda', 'frydaenlaluna@hotmail.com', NULL, 1, '2015-03-18 23:09:06.168194', '2015-03-18 23:09:06.168194')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1557, 'Gabriela', 'ella_happy_mom@yahoo.com', NULL, 1, '2015-03-18 23:09:06.179236', '2015-03-18 23:09:06.179236')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1558, 'ALEJANDRA', 'alejandra-aranda@hotmail.com', NULL, 1, '2015-03-18 23:09:06.189409', '2015-03-18 23:09:06.189409')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1559, 'José', 'relapse25@hotmail.com', NULL, 1, '2015-03-18 23:09:06.215098', '2015-03-18 23:09:06.215098')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1560, 'Adriana', 'adrianalanni@gmail.com', NULL, 1, '2015-03-18 23:09:06.234184', '2015-03-18 23:09:06.234184')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1561, 'David', 'davidlazzuri@hotmail.com', NULL, 1, '2015-03-18 23:09:06.263539', '2015-03-18 23:09:06.263539')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1562, 'shn2', 'luisengranajes@gmail.com', NULL, 1, '2015-03-18 23:09:06.277532', '2015-03-18 23:09:06.277532')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1563, 'Manzana', 'balaconalasdemaripoza@hotmail.com', NULL, 1, '2015-03-18 23:09:06.303597', '2015-03-18 23:09:06.303597')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1564, 'Rosario', 'gestiondearte@gmail.com', NULL, 1, '2015-03-18 23:09:06.327116', '2015-03-18 23:09:06.327116')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1565, 'Daniela', 'pequisbaldo@yahoo.com', NULL, 1, '2015-03-18 23:09:06.355808', '2015-03-18 23:09:06.355808')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1566, 'Daniel', 'dapavie@gmail.com', NULL, 1, '2015-03-18 23:09:06.378691', '2015-03-18 23:09:06.378691')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1567, 'Al', 'sonicnou@hotmail.com', NULL, 1, '2015-03-18 23:09:06.405423', '2015-03-18 23:09:06.405423')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1568, 'César', 'ceravan@gmail.com', NULL, 1, '2015-03-18 23:09:06.416240', '2015-03-18 23:09:06.416240')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1569, 'MoNica', 'moniqueodilup@hotmail.com', NULL, 1, '2015-03-18 23:09:06.434448', '2015-03-18 23:09:06.434448')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1570, 'Carolina', 'picturesquee@gmail.com', NULL, 1, '2015-03-18 23:09:06.453029', '2015-03-18 23:09:06.453029')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1571, 'Torregar', 'torregar@msn.com', NULL, 1, '2015-03-18 23:09:06.465916', '2015-03-18 23:09:06.465916')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1572, 'felipe', 'feliperios@anuarioarte.com', NULL, 1, '2015-03-18 23:09:06.475038', '2015-03-18 23:09:06.475038')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1573, 'americo', 'cabobasualto@hotmail.com', NULL, 1, '2015-03-18 23:09:06.488357', '2015-03-18 23:09:06.488357')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1574, 'Roberto', 'decomosaico@gmail.com', NULL, 1, '2015-03-18 23:09:06.514833', '2015-03-18 23:09:06.514833')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1575, 'Franka', 'artefranka@gmail.com', NULL, 1, '2015-03-18 23:09:06.534182', '2015-03-18 23:09:06.534182')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1576, 'N.A.R.', 'difusionnar@gmail.com', NULL, 1, '2015-03-18 23:09:06.562466', '2015-03-18 23:09:06.562466')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1577, 'bernabe', 'bernabecarrasco@hotmail.com', NULL, 1, '2015-03-18 23:09:06.571388', '2015-03-18 23:09:06.571388')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1578, 'erico', 'locodelspace@hotmail.com', NULL, 1, '2015-03-18 23:09:06.580440', '2015-03-18 23:09:06.580440')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1579, 'virginia', 'virgi@mi.cl', NULL, 1, '2015-03-18 23:09:06.589552', '2015-03-18 23:09:06.589552')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1580, 'Diego', 'diegone8@hotmail.com', NULL, 1, '2015-03-18 23:09:06.597371', '2015-03-18 23:09:06.597371')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1581, 'Kristán', 'cat.murua@gmail.com', NULL, 1, '2015-03-18 23:09:06.614203', '2015-03-18 23:09:06.614203')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1582, 'Mariela', 'marielajhs@gmail.com', NULL, 1, '2015-03-18 23:09:06.629421', '2015-03-18 23:09:06.629421')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1583, 'Vivian', 'vivian_javiera@hotmail.com', NULL, 1, '2015-03-18 23:09:06.638173', '2015-03-18 23:09:06.638173')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1584, 'guillermo', 'daghero.g@gmail.com', NULL, 1, '2015-03-18 23:09:06.647224', '2015-03-18 23:09:06.647224')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1585, 'Vicente', 'vicentemartisolar@gmail.com', NULL, 1, '2015-03-18 23:09:06.664471', '2015-03-18 23:09:06.664471')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1586, 'rosamenta', 'woosioux@hotmail.com', NULL, 1, '2015-03-18 23:09:06.673211', '2015-03-18 23:09:06.673211')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1587, 'Alejandra', 'alecruzsuber@hotmail.com', NULL, 1, '2015-03-18 23:09:06.681775', '2015-03-18 23:09:06.681775')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1588, 'Lía', 'lia@liag.es', NULL, 1, '2015-03-18 23:09:06.691124', '2015-03-18 23:09:06.691124')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1589, 'No', 'thefrenesis@gmail.com', NULL, 1, '2015-03-18 23:09:06.699831', '2015-03-18 23:09:06.699831')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1590, 'Isabel', 'arrebol_ar@hotmail.com', NULL, 1, '2015-03-18 23:09:06.714735', '2015-03-18 23:09:06.714735')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1591, 'OndaHalFoster', 'OndaHalFoster@gmail.com', NULL, 1, '2015-03-18 23:09:06.723857', '2015-03-18 23:09:06.723857')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1592, 'Kléver', 'klefvas@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:06.732178', '2015-03-18 23:09:06.732178')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1593, 'andrea', 'vafe22@gmail.com', NULL, 1, '2015-03-18 23:09:06.744487', '2015-03-18 23:09:06.744487')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1594, 'Ximena', 'xfleck@yahoo.com', NULL, 1, '2015-03-18 23:09:06.756023', '2015-03-18 23:09:06.756023')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1595, 'MIXELIART', 'mixeliart@gmail.com', NULL, 1, '2015-03-18 23:09:06.766083', '2015-03-18 23:09:06.766083')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1596, 'Paulo', 'paulomeyervalenzuela@gmail.com', NULL, 1, '2015-03-18 23:09:06.774600', '2015-03-18 23:09:06.774600')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1597, 'Sebastián', 'dharma.member@gmail.com', NULL, 1, '2015-03-18 23:09:06.783260', '2015-03-18 23:09:06.783260')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1598, 'fridha', 'elizabmarin@gmail.com', NULL, 1, '2015-03-18 23:09:06.792065', '2015-03-18 23:09:06.792065')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1599, 'Lilia', 'info@arteyjoyeria.com', NULL, 1, '2015-03-18 23:09:06.801023', '2015-03-18 23:09:06.801023')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1600, 'Luis', 'nomade@espora.cl', NULL, 1, '2015-03-18 23:09:06.814672', '2015-03-18 23:09:06.814672')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1601, 'cyan', 'cyantallerdegrabado@gmail.com', NULL, 1, '2015-03-18 23:09:06.823676', '2015-03-18 23:09:06.823676')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1602, 'cano', 'j.salas.e@gmail.com', NULL, 1, '2015-03-18 23:09:06.833060', '2015-03-18 23:09:06.833060')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1603, 'Leo', 'poppyfamilyosland@gmail.com', NULL, 1, '2015-03-18 23:09:06.841891', '2015-03-18 23:09:06.841891')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1604, 'LeonardoPartridge', 'poppyfamilyisland@gmail.com', NULL, 1, '2015-03-18 23:09:06.850017', '2015-03-18 23:09:06.850017')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1605, '"siroco"', 'piposiroco@hotmail.com', NULL, 1, '2015-03-18 23:09:06.863625', '2015-03-18 23:09:06.863625')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1606, 'Marcia', 'marcia.cuevas@gmail.com', NULL, 1, '2015-03-18 23:09:06.872459', '2015-03-18 23:09:06.872459')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1607, 'Diego', 'telefunken.superheterodyne@gmail.com', NULL, 1, '2015-03-18 23:09:06.881931', '2015-03-18 23:09:06.881931')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1608, 'Patricia', 'turquesa777_7@hotmail.com', NULL, 1, '2015-03-18 23:09:06.889925', '2015-03-18 23:09:06.889925')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1609, 'Daniella', 'daniella.gutierrez@gmail.com', NULL, 1, '2015-03-18 23:09:06.898739', '2015-03-18 23:09:06.898739')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1610, 'Miguel', 'mhuertarte@gmail.com', NULL, 1, '2015-03-18 23:09:06.913685', '2015-03-18 23:09:06.913685')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1611, 'Sebastián', 'illanes_26@hotmail.com', NULL, 1, '2015-03-18 23:09:06.944664', '2015-03-18 23:09:06.944664')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1612, 'OBRAS', 'GTPATO@HOTMAIL.COM', NULL, 1, '2015-03-18 23:09:06.964700', '2015-03-18 23:09:06.964700')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1613, 'CamilaEscobarV', 'camila.e.v@gmail.com', NULL, 1, '2015-03-18 23:09:07.000004', '2015-03-18 23:09:07.000004')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1614, 'www.geralby.com', 'artealby@gmail.com', NULL, 1, '2015-03-18 23:09:07.033344', '2015-03-18 23:09:07.033344')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1615, 'rodolfo', 'rodotallador@hotmail.com', NULL, 1, '2015-03-18 23:09:07.062335', '2015-03-18 23:09:07.062335')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1616, 'renzo', 'renzocalderonh@yahoo.es', NULL, 1, '2015-03-18 23:09:07.082536', '2015-03-18 23:09:07.082536')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1617, 'Sebastian', 'sebastianmejiaphoto@gmail.com', NULL, 1, '2015-03-18 23:09:07.106643', '2015-03-18 23:09:07.106643')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1618, 'Sebastian', 'sebastianmejiaphoto@hotmail.com', NULL, 1, '2015-03-18 23:09:07.125159', '2015-03-18 23:09:07.125159')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1619, 'daf', 'danielafu@gmail.com', NULL, 1, '2015-03-18 23:09:07.145966', '2015-03-18 23:09:07.145966')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1620, 'alberto', 'alberto.leal50@hotmail.com', NULL, 1, '2015-03-18 23:09:07.200477', '2015-03-18 23:09:07.200477')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1621, 'Romina', 'gennusnativa@hotmail.com', NULL, 1, '2015-03-18 23:09:07.229406', '2015-03-18 23:09:07.229406')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1622, 'Ariel', 'retratosariel@gmail.com', NULL, 1, '2015-03-18 23:09:07.239087', '2015-03-18 23:09:07.239087')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1623, 'Montserrat', 'mbrandans@gmail.com', NULL, 1, '2015-03-18 23:09:07.972197', '2015-03-18 23:09:07.972197')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1624, 'Castro', 'uder24@hotmail.com', NULL, 1, '2015-03-18 23:09:07.981867', '2015-03-18 23:09:07.981867')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1625, 'Darwin', 'uder2024@gmail.com', NULL, 1, '2015-03-18 23:09:07.990987', '2015-03-18 23:09:07.990987')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1626, 'Rodrigo', 'artefacto00@gmail.com', NULL, 1, '2015-03-18 23:09:07.999453', '2015-03-18 23:09:07.999453')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1627, 'pablo', 'pablo.ver@hotmail.es', NULL, 1, '2015-03-18 23:09:08.008053', '2015-03-18 23:09:08.008053')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1628, 'Magdalena', 'malechahin@gmail.com', NULL, 1, '2015-03-18 23:09:08.028849', '2015-03-18 23:09:08.028849')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1629, 'Fabrizzio', 'fabrizzio@fdangelo.cl', NULL, 1, '2015-03-18 23:09:08.037394', '2015-03-18 23:09:08.037394')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1630, 'Fabrizzio', 'galeriabon@gmail.com', NULL, 1, '2015-03-18 23:09:08.045597', '2015-03-18 23:09:08.045597')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1631, 'Shavi', 'shavialli@gmail.com', NULL, 1, '2015-03-18 23:09:08.054457', '2015-03-18 23:09:08.054457')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1632, 'Roberto', 'roberto@super45.cl', NULL, 1, '2015-03-18 23:09:08.063486', '2015-03-18 23:09:08.063486')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1633, 'suxzy', 'akira_5989@hotmail.com', NULL, 1, '2015-03-18 23:09:08.077452', '2015-03-18 23:09:08.077452')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1634, 'venjamin', 'jorquera.venjamin@gmail.com', NULL, 1, '2015-03-18 23:09:08.085578', '2015-03-18 23:09:08.085578')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1635, 'jose', 'anotherwuorld99@hotmail.com', NULL, 1, '2015-03-18 23:09:08.093364', '2015-03-18 23:09:08.093364')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1636, 'kristodulakis', 'kristodulakis@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:08.102159', '2015-03-18 23:09:08.102159')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1637, 'Yadira', 'yadira182004@yahoo.es', NULL, 1, '2015-03-18 23:09:08.112919', '2015-03-18 23:09:08.112919')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1638, 'Mariela', 'mmmontes@telecentro.com.ar', NULL, 1, '2015-03-18 23:09:08.127183', '2015-03-18 23:09:08.127183')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1639, 'Laura', 'contacto@galeriaboutique.cl', NULL, 1, '2015-03-18 23:09:08.148943', '2015-03-18 23:09:08.148943')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1640, 'daniel', 'doctortanqueray@hotmail.com', NULL, 1, '2015-03-18 23:09:08.158779', '2015-03-18 23:09:08.158779')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1641, 'Antonio', 'hazorbajhazard@gmail.com', NULL, 1, '2015-03-18 23:09:08.179622', '2015-03-18 23:09:08.179622')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1642, 'nicolas', 'nicolascaballero@gmail.com', NULL, 1, '2015-03-18 23:09:08.188915', '2015-03-18 23:09:08.188915')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1643, 'Macarena', 'macarranzafue@gmail.com', NULL, 1, '2015-03-18 23:09:08.197256', '2015-03-18 23:09:08.197256')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1644, 'lesistifranz', 'lesisti@hotmail.com', NULL, 1, '2015-03-18 23:09:08.205910', '2015-03-18 23:09:08.205910')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1645, 'MARIA', 'cristina.faleroni@gmail.com', NULL, 1, '2015-03-18 23:09:08.214592', '2015-03-18 23:09:08.214592')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1646, 'Isabelmargarita', 'acusticaisabel@gmail.com', NULL, 1, '2015-03-18 23:09:08.228215', '2015-03-18 23:09:08.228215')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1647, 'German', 'netracol@vtr.net', NULL, 1, '2015-03-18 23:09:08.237024', '2015-03-18 23:09:08.237024')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1648, 'Bernardita', 'bernardita.hk@gmail.com', NULL, 1, '2015-03-18 23:09:08.245710', '2015-03-18 23:09:08.245710')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1649, 'Jacinta', 'motorjaz@gmail.com', NULL, 1, '2015-03-18 23:09:08.254454', '2015-03-18 23:09:08.254454')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1650, 'Mabel', 'mabelcanalesd@gmail.com', NULL, 1, '2015-03-18 23:09:08.263514', '2015-03-18 23:09:08.263514')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1651, 'Arturo', 'arturolodetti@gmail.com', NULL, 1, '2015-03-18 23:09:08.277556', '2015-03-18 23:09:08.277556')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1652, 'Coté', 'cot.meneses@gmail.com', NULL, 1, '2015-03-18 23:09:08.295775', '2015-03-18 23:09:08.295775')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1653, 'piafer', 'piaferp@yahoo.es', NULL, 1, '2015-03-18 23:09:08.304730', '2015-03-18 23:09:08.304730')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1654, 'Kurt', 'kurt.goldman@gmail.com', NULL, 1, '2015-03-18 23:09:08.312945', '2015-03-18 23:09:08.312945')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1655, 'Elisa', 'eli_ariztia@hotmail.com', NULL, 1, '2015-03-18 23:09:08.327005', '2015-03-18 23:09:08.327005')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1656, 'Felipe', 'arcos.oviedo.felipe@gmail.com', NULL, 1, '2015-03-18 23:09:08.335932', '2015-03-18 23:09:08.335932')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1657, 'German', 'netracol@gmail.com', NULL, 1, '2015-03-18 23:09:08.377710', '2015-03-18 23:09:08.377710')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1658, 'n/a', 'kioldpodi@gmail.com', NULL, 1, '2015-03-18 23:09:08.386892', '2015-03-18 23:09:08.386892')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1659, 'Yadira', 'gallegosya@hotmail.com', NULL, 1, '2015-03-18 23:09:08.395418', '2015-03-18 23:09:08.395418')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1660, 'marko', 'uncoupdoeil@free.fr', NULL, 1, '2015-03-18 23:09:08.403896', '2015-03-18 23:09:08.403896')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1661, 'Isabel', 'Isabelkristina@gmail.com', NULL, 1, '2015-03-18 23:09:08.413456', '2015-03-18 23:09:08.413456')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1662, 'tengri18', 'tornado976@hotmail.com', NULL, 1, '2015-03-18 23:09:08.427540', '2015-03-18 23:09:08.427540')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1663, 'Nelson', 'vaciovisual@gmail.com', NULL, 1, '2015-03-18 23:09:08.521068', '2015-03-18 23:09:08.521068')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1664, 'carolina', 'filosofiamistica@gmail.com', NULL, 1, '2015-03-18 23:09:08.531064', '2015-03-18 23:09:08.531064')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1665, 'Leonardo', 'lrojas@conicyt.cl', NULL, 1, '2015-03-18 23:09:08.540225', '2015-03-18 23:09:08.540225')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1666, 'Christian', 'coloro71@hotmail.com', NULL, 1, '2015-03-18 23:09:08.549200', '2015-03-18 23:09:08.549200')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1667, 'Ximena', 'ximenarojastellez@gmail.com', NULL, 1, '2015-03-18 23:09:08.558465', '2015-03-18 23:09:08.558465')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1668, 'rcecereu', 'renato.cecereu@hotmail.com', NULL, 1, '2015-03-18 23:09:08.576623', '2015-03-18 23:09:08.576623')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1669, 'Francesca', 'francesca.ramos.b@gmail.com', NULL, 1, '2015-03-18 23:09:08.585895', '2015-03-18 23:09:08.585895')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1670, 'Paulina', 'pausilvah@gmail.com', NULL, 1, '2015-03-18 23:09:08.594298', '2015-03-18 23:09:08.594298')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1671, 'camaleonacrativa', 'anton_lar@hotmail.com', NULL, 1, '2015-03-18 23:09:08.615490', '2015-03-18 23:09:08.615490')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1672, 'Paricio', 'objeto.de@gmail.com', NULL, 1, '2015-03-18 23:09:08.627213', '2015-03-18 23:09:08.627213')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1673, 'Marco', 'bainella@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:08.636531', '2015-03-18 23:09:08.636531')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1674, 'alejandro', 'alejandrofky@gmail.com', NULL, 1, '2015-03-18 23:09:08.645606', '2015-03-18 23:09:08.645606')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1675, 'Patricio', 'poasmano@gmail.com', NULL, 1, '2015-03-18 23:09:08.654194', '2015-03-18 23:09:08.654194')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1676, 'Artista', 'aaronortega28@gmail.com', NULL, 1, '2015-03-18 23:09:08.663251', '2015-03-18 23:09:08.663251')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1677, 'Miguel', 'graficasmix@hotmail.com', NULL, 1, '2015-03-18 23:09:08.676655', '2015-03-18 23:09:08.676655')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1678, 'Maura', 'maura.mascetti@gmail.com', NULL, 1, '2015-03-18 23:09:08.685933', '2015-03-18 23:09:08.685933')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1679, 'Jaime', 'tatoo100@hotmail.com', NULL, 1, '2015-03-18 23:09:08.734452', '2015-03-18 23:09:08.734452')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1680, 'Daniel', 'info@dc-herrera.com', NULL, 1, '2015-03-18 23:09:08.762201', '2015-03-18 23:09:08.762201')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1681, 'RODRIGO', 'rrlealr@yahoo.es', NULL, 1, '2015-03-18 23:09:08.771798', '2015-03-18 23:09:08.771798')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1682, 'turkicker', 'turkicker@hotmail.com', NULL, 1, '2015-03-18 23:09:08.793060', '2015-03-18 23:09:08.793060')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1683, 'jorge', 'pastoruri38@hotmail.com', NULL, 1, '2015-03-18 23:09:08.802927', '2015-03-18 23:09:08.802927')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1684, 'superbueno', 'sebastian.veravivanco@gmail.com', NULL, 1, '2015-03-18 23:09:08.812699', '2015-03-18 23:09:08.812699')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1685, 'soliloquia', 'sol_797@hotmail.com', NULL, 1, '2015-03-18 23:09:08.821064', '2015-03-18 23:09:08.821064')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1686, 'aplanamiento', 'aplanamientoheboide@yahoo.es', NULL, 1, '2015-03-18 23:09:08.829202', '2015-03-18 23:09:08.829202')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1687, 'sebastian', 'sebastianlinardo@gmail.com', NULL, 1, '2015-03-18 23:09:08.842984', '2015-03-18 23:09:08.842984')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1688, 'adeline', 'adelinedesmet@gmail.com', NULL, 1, '2015-03-18 23:09:08.851829', '2015-03-18 23:09:08.851829')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1689, 'Lénika', 'lennykita_@hotmail.com', NULL, 1, '2015-03-18 23:09:08.860476', '2015-03-18 23:09:08.860476')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1690, 'claudia', 'laserpenta@gmail.com', NULL, 1, '2015-03-18 23:09:08.869805', '2015-03-18 23:09:08.869805')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1691, 'RAFAEL', 'arq_rafas@hotmail.com', NULL, 1, '2015-03-18 23:09:08.894237', '2015-03-18 23:09:08.894237')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1692, 'nicolas', 'elcaballeronicolas@gmail.com', NULL, 1, '2015-03-18 23:09:08.909711', '2015-03-18 23:09:08.909711')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1693, 'Roberto', 'laluz@laluz.cl', NULL, 1, '2015-03-18 23:09:08.918612', '2015-03-18 23:09:08.918612')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1694, 'paula', 'paula01@gmail.com', NULL, 1, '2015-03-18 23:09:08.943406', '2015-03-18 23:09:08.943406')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1695, 'daniela', 'danielainesgutierrez@gmail.com', NULL, 1, '2015-03-18 23:09:08.959619', '2015-03-18 23:09:08.959619')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1696, 'Pau', 'rubioeberhardt@hotmail.com', NULL, 1, '2015-03-18 23:09:08.973712', '2015-03-18 23:09:08.973712')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1697, 'octavia', 'obsesion_es@yahoo.com', NULL, 1, '2015-03-18 23:09:08.992662', '2015-03-18 23:09:08.992662')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1698, 'Romonte.', 'romonte@gmail.com', NULL, 1, '2015-03-18 23:09:09.010014', '2015-03-18 23:09:09.010014')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1699, 'Alisson', 'siso.32@hotmail.com', NULL, 1, '2015-03-18 23:09:09.018654', '2015-03-18 23:09:09.018654')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1700, 'renzo', 'arcangel4261@hotmail.com', NULL, 1, '2015-03-18 23:09:09.027472', '2015-03-18 23:09:09.027472')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1701, 'Maximiliano', 'bedomax@gmail.com', NULL, 1, '2015-03-18 23:09:09.035628', '2015-03-18 23:09:09.035628')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1702, 'omar', 'omincubus@hotmail.com', NULL, 1, '2015-03-18 23:09:09.044122', '2015-03-18 23:09:09.044122')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1703, 'victor', 'victorcavieres@gmail.com', NULL, 1, '2015-03-18 23:09:09.058504', '2015-03-18 23:09:09.058504')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1704, 'Iordanov', 'thomaskaufmann@mail.ru', NULL, 1, '2015-03-18 23:09:09.067618', '2015-03-18 23:09:09.067618')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1705, 'Mr.Legusi', 'armasdkt@hotmail.com', NULL, 1, '2015-03-18 23:09:09.076278', '2015-03-18 23:09:09.076278')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1706, 'samuel', 'samuel_k16@hotmail.com', NULL, 1, '2015-03-18 23:09:09.085380', '2015-03-18 23:09:09.085380')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1707, 'carolinma', 'chernaes@yahoo.com', NULL, 1, '2015-03-18 23:09:09.093781', '2015-03-18 23:09:09.093781')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1708, 'Cristian', 'demonasterio@hotmail.com', NULL, 1, '2015-03-18 23:09:09.109121', '2015-03-18 23:09:09.109121')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1709, 'Mery', 'like_a_cartoon@hotmail.com', NULL, 1, '2015-03-18 23:09:09.118040', '2015-03-18 23:09:09.118040')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1710, 'So', 'soduffau@hotmail.com', NULL, 1, '2015-03-18 23:09:09.130517', '2015-03-18 23:09:09.130517')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1711, 'Edna', 'ednakannan@gmail.com', NULL, 1, '2015-03-18 23:09:09.139990', '2015-03-18 23:09:09.139990')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1712, 'Sergio', 'smnlabrin@gmail.com', NULL, 1, '2015-03-18 23:09:09.159623', '2015-03-18 23:09:09.159623')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1713, 'Marre', 'marrewacquez@gmail.com', NULL, 1, '2015-03-18 23:09:09.168524', '2015-03-18 23:09:09.168524')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1714, 'SMILJAN', 'soastudi@gmail.com', NULL, 1, '2015-03-18 23:09:09.178053', '2015-03-18 23:09:09.178053')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1715, 'Isabella', 'ihauyon@hotmail.com', NULL, 1, '2015-03-18 23:09:09.187766', '2015-03-18 23:09:09.187766')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1716, 'Jairo', 'jairotobonvillegas@yahoo.es', NULL, 1, '2015-03-18 23:09:09.196040', '2015-03-18 23:09:09.196040')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1717, 'fec', 'bolaadv@gmail.com', NULL, 1, '2015-03-18 23:09:09.208658', '2015-03-18 23:09:09.208658')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1718, 'Bárbara', 'kiltris@hotmail.com', NULL, 1, '2015-03-18 23:09:09.217144', '2015-03-18 23:09:09.217144')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1719, 'Joaquin', 'joaquinmartel@gmail.com', NULL, 1, '2015-03-18 23:09:09.225800', '2015-03-18 23:09:09.225800')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1720, 'Nicole__', 'niicole.gonzalez@gmail.com', NULL, 1, '2015-03-18 23:09:09.235221', '2015-03-18 23:09:09.235221')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1721, 'Sergio', 'gregorio116@gmail.com', NULL, 1, '2015-03-18 23:09:09.244578', '2015-03-18 23:09:09.244578')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1722, 'Sandra', 'sandradp_0115@hotmail.com', NULL, 1, '2015-03-18 23:09:09.258951', '2015-03-18 23:09:09.258951')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1723, 'SANDRA', 'sandradp79@hotmail.com', NULL, 1, '2015-03-18 23:09:09.268519', '2015-03-18 23:09:09.268519')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1724, 's).durán', 'sandra_dp79@hotmail.com', NULL, 1, '2015-03-18 23:09:09.277666', '2015-03-18 23:09:09.277666')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1725, 'lentao', 'lentao_2@hotmail.com', NULL, 1, '2015-03-18 23:09:09.287469', '2015-03-18 23:09:09.287469')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1726, 'Lucas', 'lutoff@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:09.300513', '2015-03-18 23:09:09.300513')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1727, 'Naihomi', 'naihomig@gmail.com', NULL, 1, '2015-03-18 23:09:09.311624', '2015-03-18 23:09:09.311624')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1728, 'yamila', 'yami_rc@hotmail.com', NULL, 1, '2015-03-18 23:09:09.320379', '2015-03-18 23:09:09.320379')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1729, 'Blasthammer', 'burnt_identity@hotmail.es', NULL, 1, '2015-03-18 23:09:09.329886', '2015-03-18 23:09:09.329886')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1730, 'guzenko', 'pavelguzenko@yandex.ru', NULL, 1, '2015-03-18 23:09:09.342506', '2015-03-18 23:09:09.342506')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1731, 'Coalición', 'coalicionartistaspr@yahoo.com', NULL, 1, '2015-03-18 23:09:09.358923', '2015-03-18 23:09:09.358923')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1732, 'Horacio', 'hbartefantastico@gmail.com', NULL, 1, '2015-03-18 23:09:09.367549', '2015-03-18 23:09:09.367549')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1733, 'Ana', 'anro-ale13@hotmail.com', NULL, 1, '2015-03-18 23:09:09.390175', '2015-03-18 23:09:09.390175')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1734, 'Patricia', 'patricia_baldin@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:09.417159', '2015-03-18 23:09:09.417159')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1735, 'Patricia', 'patriciabaldin@hotmail.com.ar', NULL, 1, '2015-03-18 23:09:09.428571', '2015-03-18 23:09:09.428571')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1736, 'C-VAS', 'c-vas@hotmail.com', NULL, 1, '2015-03-18 23:09:09.437836', '2015-03-18 23:09:09.437836')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1737, 'Rodrigo', 'rrlmushu@hotmail.com', NULL, 1, '2015-03-18 23:09:09.452089', '2015-03-18 23:09:09.452089')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1738, 'juan', 'agostokuatro@gmail.com', NULL, 1, '2015-03-18 23:09:09.468737', '2015-03-18 23:09:09.468737')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1739, 'delia', 'delia_castellanos20@hotmail.com', NULL, 1, '2015-03-18 23:09:09.488366', '2015-03-18 23:09:09.488366')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1740, 'sebaseba', 'sebastian.up@gmail.com', NULL, 1, '2015-03-18 23:09:09.501084', '2015-03-18 23:09:09.501084')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1741, 'Sergio', 'pintor217@hotmail.com', NULL, 1, '2015-03-18 23:09:09.523367', '2015-03-18 23:09:09.523367')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1742, 'Perla', 'fricperlis@hotmail.com', NULL, 1, '2015-03-18 23:09:09.549648', '2015-03-18 23:09:09.549648')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1743, 'Francisca', 'francisca.dumonceau@consorcio.cl', NULL, 1, '2015-03-18 23:09:09.565617', '2015-03-18 23:09:09.565617')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1744, 'Mariana', 'gatojazz@gmail.com', NULL, 1, '2015-03-18 23:09:09.586488', '2015-03-18 23:09:09.586488')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1745, 'virginia', 'VIRGINIAGREGORCIC@GMAIL.COM', NULL, 1, '2015-03-18 23:09:09.597904', '2015-03-18 23:09:09.597904')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1746, 'odi', 'odibazo@gmail.com', NULL, 1, '2015-03-18 23:09:09.621777', '2015-03-18 23:09:09.621777')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1747, 'MELINKA', 'viventodaspartes@hotmail.com', NULL, 1, '2015-03-18 23:09:09.645845', '2015-03-18 23:09:09.645845')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1748, 'melinka', 'todoportimiluz@hotmail.com', NULL, 1, '2015-03-18 23:09:09.673222', '2015-03-18 23:09:09.673222')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1749, 'Javiera', 'xaviframm@hotmail.com', NULL, 1, '2015-03-18 23:09:09.685550', '2015-03-18 23:09:09.685550')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1750, 'Miguel', 'miguelcaceresmurrie@gmail.com', NULL, 1, '2015-03-18 23:09:09.704652', '2015-03-18 23:09:09.704652')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1751, 'pablo', 'laleydemoraga@hotmail.com', NULL, 1, '2015-03-18 23:09:09.713979', '2015-03-18 23:09:09.713979')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1752, 'Silvestre', 'parabario@hotmail.com', NULL, 1, '2015-03-18 23:09:09.734275', '2015-03-18 23:09:09.734275')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1753, 'melinkamaullin', 'correaga@hotmail.com', NULL, 1, '2015-03-18 23:09:09.756746', '2015-03-18 23:09:09.756746')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1754, 'Marcela', 'emepe.emete@hotmail.com', NULL, 1, '2015-03-18 23:09:09.822311', '2015-03-18 23:09:09.822311')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1755, 'carolina', 'carolinabellei@gmail.com', NULL, 1, '2015-03-18 23:09:09.850996', '2015-03-18 23:09:09.850996')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1756, 'JEAN', 'JEANPAUL@TIE.CL', NULL, 1, '2015-03-18 23:09:09.859411', '2015-03-18 23:09:09.859411')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1757, 'Diego', 'pavawulfert@yahoo.com.co', NULL, 1, '2015-03-18 23:09:09.874092', '2015-03-18 23:09:09.874092')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1758, 'Improntus', 'improntus.figuras@gmail.com', NULL, 1, '2015-03-18 23:09:09.890002', '2015-03-18 23:09:09.890002')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1759, 'mdemartini', 'marisademartini@gmail.com', NULL, 1, '2015-03-18 23:09:09.899489', '2015-03-18 23:09:09.899489')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1760, 'Werner', 'wernerschleifen@bk.ru', NULL, 1, '2015-03-18 23:09:09.963413', '2015-03-18 23:09:09.963413')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1761, 'carlos', 'arteagasepulvedac@yahoo.com', NULL, 1, '2015-03-18 23:09:09.973248', '2015-03-18 23:09:09.973248')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1762, 'Jota', 'jotarte@hotmail.com', NULL, 1, '2015-03-18 23:09:09.984107', '2015-03-18 23:09:09.984107')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1763, 'Eddy', 'eddymetal_boy@hotmail.com', NULL, 1, '2015-03-18 23:09:09.993057', '2015-03-18 23:09:09.993057')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1764, 'mauro', 'poliesterinflamable@hotmail.com', NULL, 1, '2015-03-18 23:09:10.002482', '2015-03-18 23:09:10.002482')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1765, 'Boris', 'shago340@gmail.com', NULL, 1, '2015-03-18 23:09:10.011340', '2015-03-18 23:09:10.011340')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1766, 'Ramon', 'serviciosmarinos@hotmail.com', NULL, 1, '2015-03-18 23:09:10.067346', '2015-03-18 23:09:10.067346')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1767, 'Ramon', 'servicosmarinos@hotmail.com', NULL, 1, '2015-03-18 23:09:10.095156', '2015-03-18 23:09:10.095156')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1768, 'Efren', 'efrenmelchor@hotmail.com', NULL, 1, '2015-03-18 23:09:10.107014', '2015-03-18 23:09:10.107014')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1769, 'Nelly', 'quecosaesarte@gmail.com', NULL, 1, '2015-03-18 23:09:10.123265', '2015-03-18 23:09:10.123265')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1770, 'José', 'pepedepepes@hotmail.com', NULL, 1, '2015-03-18 23:09:10.132584', '2015-03-18 23:09:10.132584')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1771, 'Rodrigo', 'rodrigoramos00@gmail.com', NULL, 1, '2015-03-18 23:09:10.201884', '2015-03-18 23:09:10.201884')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1772, 'raul', 'kexaalcen@gmail.com', NULL, 1, '2015-03-18 23:09:10.212067', '2015-03-18 23:09:10.212067')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1773, 'Adolfo', 'vanditsix@hotmail.com', NULL, 1, '2015-03-18 23:09:10.223061', '2015-03-18 23:09:10.223061')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1774, 'Alejandro', 'algarcia@comunicar.us', NULL, 1, '2015-03-18 23:09:10.254952', '2015-03-18 23:09:10.254952')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1775, 'Macarena', 'mrepetur@gmail.com', NULL, 1, '2015-03-18 23:09:10.264568', '2015-03-18 23:09:10.264568')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1776, 'xavicuadros', 'xavicuadros@hotmail.com', NULL, 1, '2015-03-18 23:09:10.322546', '2015-03-18 23:09:10.322546')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1777, 'juan', 'juanmendozart@hotmail.com', NULL, 1, '2015-03-18 23:09:10.355298', '2015-03-18 23:09:10.355298')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1778, 'SEBASTIAN', 'sebastian@empresasviareal.cl', NULL, 1, '2015-03-18 23:09:10.372771', '2015-03-18 23:09:10.372771')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1779, 'Soledad', 'solecas@gmail.com', NULL, 1, '2015-03-18 23:09:10.381579', '2015-03-18 23:09:10.381579')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1780, '_Edu', 'bravolange@gmail.com', NULL, 1, '2015-03-18 23:09:10.397162', '2015-03-18 23:09:10.397162')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1781, 'Valentina', 'valentinaiturriaga@gmail.com', NULL, 1, '2015-03-18 23:09:10.466831', '2015-03-18 23:09:10.466831')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1782, 'Luca', 'campa.luca@libero.it', NULL, 1, '2015-03-18 23:09:10.489860', '2015-03-18 23:09:10.489860')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1783, 'r.', 'ramoncabrera@live.cl', NULL, 1, '2015-03-18 23:09:10.520300', '2015-03-18 23:09:10.520300')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1784, 'r.', 'gtramonn@hotmail.com', NULL, 1, '2015-03-18 23:09:10.535507', '2015-03-18 23:09:10.535507')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1785, 'yohan', 'yohan_alberto@hotmail.com', NULL, 1, '2015-03-18 23:09:10.547372', '2015-03-18 23:09:10.547372')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1786, 'Lore', 'lorena_roco@yahoo.es', NULL, 1, '2015-03-18 23:09:10.634133', '2015-03-18 23:09:10.634133')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1787, 'Daniel', 'garcia.trampe@gmail.com', NULL, 1, '2015-03-18 23:09:10.659789', '2015-03-18 23:09:10.659789')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1788, 'Carolina', 'info@carolinabriones.com', NULL, 1, '2015-03-18 23:09:10.669962', '2015-03-18 23:09:10.669962')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1789, 'Florencia', 'florensanmar@gmail.com', NULL, 1, '2015-03-18 23:09:10.688432', '2015-03-18 23:09:10.688432')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1790, 'Daniel', 'danielgonzalezmuniz@gmail.com', NULL, 1, '2015-03-18 23:09:10.703689', '2015-03-18 23:09:10.703689')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1791, 'R.', 'rob_deltaforce@hotmail.com', NULL, 1, '2015-03-18 23:09:10.724831', '2015-03-18 23:09:10.724831')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1792, 'SOCIEDAD', 'sociedaddeldespojo@gmail.com', NULL, 1, '2015-03-18 23:09:10.767801', '2015-03-18 23:09:10.767801')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1793, 'mjoseRios', 'lelex76@gmail.com', NULL, 1, '2015-03-18 23:09:10.803512', '2015-03-18 23:09:10.803512')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1794, 'nicolas', 'aureo_33@hotmail.com', NULL, 1, '2015-03-18 23:09:10.828511', '2015-03-18 23:09:10.828511')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1795, 'maria', 'atrevetehacerloarte@yahoo.es', NULL, 1, '2015-03-18 23:09:10.857335', '2015-03-18 23:09:10.857335')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1796, 'frescate', 'contacto@fundacionrescate.cl', NULL, 1, '2015-03-18 23:09:10.889770', '2015-03-18 23:09:10.889770')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1797, 'Marianne', 'changai_vie@hotmail.com', NULL, 1, '2015-03-18 23:09:10.923122', '2015-03-18 23:09:10.923122')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1798, 'arteimagenchile', 'arteimagenchile@gmail.com', NULL, 1, '2015-03-18 23:09:10.947875', '2015-03-18 23:09:10.947875')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1799, 'Miguel', 'miguelgaetec@hotmail.com', NULL, 1, '2015-03-18 23:09:10.957665', '2015-03-18 23:09:10.957665')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1800, 'Kenji', 'kenji.senda.f@gmail.com', NULL, 1, '2015-03-18 23:09:10.985857', '2015-03-18 23:09:10.985857')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1801, 'Tomas', 'tomasrenato@gmail.com', NULL, 1, '2015-03-18 23:09:11.007020', '2015-03-18 23:09:11.007020')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1802, 'MIEL', 'miel.art@gmail.com', NULL, 1, '2015-03-18 23:09:11.030317', '2015-03-18 23:09:11.030317')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1803, 'PabloJim', 'jmansilla11@hotmail.com', NULL, 1, '2015-03-18 23:09:11.041706', '2015-03-18 23:09:11.041706')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1804, 'Pablo', 'arqueorestauracion@gmail.com', NULL, 1, '2015-03-18 23:09:11.056406', '2015-03-18 23:09:11.056406')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1805, 'Ensambles', 'taller@ensambles.cl', NULL, 1, '2015-03-18 23:09:11.068966', '2015-03-18 23:09:11.068966')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1806, 'Cinthya', 'cin.delao@gmail.com', NULL, 1, '2015-03-18 23:09:11.089397', '2015-03-18 23:09:11.089397')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1807, 'Elier', 'elierrevillard@gmail.com', NULL, 1, '2015-03-18 23:09:11.117987', '2015-03-18 23:09:11.117987')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1808, 'Angel', 'alcastano@gmail.com', NULL, 1, '2015-03-18 23:09:11.135159', '2015-03-18 23:09:11.135159')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1809, 'Bainella', 'bainella@hotmail.com', NULL, 1, '2015-03-18 23:09:11.165932', '2015-03-18 23:09:11.165932')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1810, 'maryta', 'maryeclayre@hotmail.com', NULL, 1, '2015-03-18 23:09:11.238266', '2015-03-18 23:09:11.238266')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1811, 'Emilia', 'emiliaedwards@gmail.com', NULL, 1, '2015-03-18 23:09:11.251987', '2015-03-18 23:09:11.251987')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1812, 'José', 'jiv@mi.cl', NULL, 1, '2015-03-18 23:09:11.271365', '2015-03-18 23:09:11.271365')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1813, 'Cristian', 'artdealerchile@gmail.com', NULL, 1, '2015-03-18 23:09:11.294229', '2015-03-18 23:09:11.294229')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1814, 'Victoria', 'pitujensen@hotmail.com', NULL, 1, '2015-03-18 23:09:11.304084', '2015-03-18 23:09:11.304084')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1815, 'artista', 'lemanua28@hotmail.com', NULL, 1, '2015-03-18 23:09:11.319311', '2015-03-18 23:09:11.319311')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1816, 'Paz', 'paz_castaneda@yahoo.es', NULL, 1, '2015-03-18 23:09:11.424403', '2015-03-18 23:09:11.424403')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1817, 'Carlos', 'arte.cota@yahoo.es', NULL, 1, '2015-03-18 23:09:11.433778', '2015-03-18 23:09:11.433778')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1818, 'Pamela', 'seniorita_lotofoga@hotmail.com', NULL, 1, '2015-03-18 23:09:11.443062', '2015-03-18 23:09:11.443062')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1819, 'cain', 'caincamus@gmail.com', NULL, 1, '2015-03-18 23:09:11.452753', '2015-03-18 23:09:11.452753')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1820, 'max', 'maxhamil@gmail.com', NULL, 1, '2015-03-18 23:09:11.471292', '2015-03-18 23:09:11.471292')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1821, 'Mela', 'ismaelav@gmail.com', NULL, 1, '2015-03-18 23:09:11.481500', '2015-03-18 23:09:11.481500')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1822, 'Mela', 'blueberrybird18@hotmail.com', NULL, 1, '2015-03-18 23:09:11.505775', '2015-03-18 23:09:11.505775')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1823, 'francisco.romero', 'francisco.romero@spacior.com', NULL, 1, '2015-03-18 23:09:11.527911', '2015-03-18 23:09:11.527911')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1824, 'Francisco', 'el_laberinto@hotmail.com', NULL, 1, '2015-03-18 23:09:11.537354', '2015-03-18 23:09:11.537354')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1825, 'Matías', 'mej11@hotmail.com', NULL, 1, '2015-03-18 23:09:11.546498', '2015-03-18 23:09:11.546498')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1826, 'Leyla', 'Leylaluna@gmail.com', NULL, 1, '2015-03-18 23:09:11.555564', '2015-03-18 23:09:11.555564')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1827, 'pavinalejandro122@gmail.com', 'pavinalejandro122@gmail.com', NULL, 1, '2015-03-18 23:09:11.569323', '2015-03-18 23:09:11.569323')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1828, 'alejandro', 'pintorpereza67@gmail.com', NULL, 1, '2015-03-18 23:09:11.582213', '2015-03-18 23:09:11.582213')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1829, 'Lukas', 'ljbravon@gmail.com', NULL, 1, '2015-03-18 23:09:11.592370', '2015-03-18 23:09:11.592370')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1830, 'Clarisa', 'mclarisa@gmail.com', NULL, 1, '2015-03-18 23:09:11.602132', '2015-03-18 23:09:11.602132')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1831, 'Rah-beat', 'noinvolucion@gmail.com', NULL, 1, '2015-03-18 23:09:11.619346', '2015-03-18 23:09:11.619346')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1832, 'juan', 'melipillo@yahoo.com', NULL, 1, '2015-03-18 23:09:11.628828', '2015-03-18 23:09:11.628828')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1833, 'El', 'ljhonnyrep@hotmail.com', NULL, 1, '2015-03-18 23:09:11.636983', '2015-03-18 23:09:11.636983')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1834, 'Victor', 'vhsilvac@hotmail.com', NULL, 1, '2015-03-18 23:09:11.646834', '2015-03-18 23:09:11.646834')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1835, 'Blanca', 'blanca_flornm@hotmail.com', NULL, 1, '2015-03-18 23:09:11.656122', '2015-03-18 23:09:11.656122')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1836, 'Christian', 'anton292@hotmail.com', NULL, 1, '2015-03-18 23:09:11.669476', '2015-03-18 23:09:11.669476')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1837, 'Jose', 'dark_enfelo_metal@hotmail.com', NULL, 1, '2015-03-18 23:09:11.695686', '2015-03-18 23:09:11.695686')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1838, 'Lusewix', 'mirtalusewicz@fasegrafica.com.ar', NULL, 1, '2015-03-18 23:09:11.705635', '2015-03-18 23:09:11.705635')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1839, 'indalecio', 'amaurisjosue@yahoo.com', NULL, 1, '2015-03-18 23:09:11.719126', '2015-03-18 23:09:11.719126')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1840, 'marcelo', 'marczambrano@yahoo.es', NULL, 1, '2015-03-18 23:09:11.727876', '2015-03-18 23:09:11.727876')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1841, 'Francisca', 'tienda@caritadegato.cl', NULL, 1, '2015-03-18 23:09:11.736520', '2015-03-18 23:09:11.736520')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1842, 'chizuko', 'chizuko_osato@hotmail.com', NULL, 1, '2015-03-18 23:09:11.762205', '2015-03-18 23:09:11.762205')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1843, 'Norberto', 'norbertognzlz@gmail.com', NULL, 1, '2015-03-18 23:09:11.778690', '2015-03-18 23:09:11.778690')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1844, 'Ana', 'anitax_pxa@hotmail.com', NULL, 1, '2015-03-18 23:09:11.801919', '2015-03-18 23:09:11.801919')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1845, 'Jaume', 'josocenmell@hotmail.com', NULL, 1, '2015-03-18 23:09:11.819205', '2015-03-18 23:09:11.819205')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1846, 'FRSKITO', 'wence_max@hotmail.com', NULL, 1, '2015-03-18 23:09:11.833758', '2015-03-18 23:09:11.833758')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1847, 'Pedro', 'ppalmacasanova@gmail.com', NULL, 1, '2015-03-18 23:09:11.868501', '2015-03-18 23:09:11.868501')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1848, 'Hualpen', 'carlopezoro@gmail.com', NULL, 1, '2015-03-18 23:09:11.878579', '2015-03-18 23:09:11.878579')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1849, 'Zaida', 'zaida.fuentes@gmail.com', NULL, 1, '2015-03-18 23:09:11.897503', '2015-03-18 23:09:11.897503')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1850, 'Beatriz', 'bminth@gmail.com', NULL, 1, '2015-03-18 23:09:11.911630', '2015-03-18 23:09:11.911630')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1851, 'Benjamin', 'benjaminaraya86@gmail.com', NULL, 1, '2015-03-18 23:09:11.926168', '2015-03-18 23:09:11.926168')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1852, 'Pablo', 'pablo.n.ulloa@hotmail.com', NULL, 1, '2015-03-18 23:09:11.944490', '2015-03-18 23:09:11.944490')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1853, 'Pablo', 'pablo.n.ulloa@gmail.com', NULL, 1, '2015-03-18 23:09:11.956091', '2015-03-18 23:09:11.956091')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1854, 'videoicomiso', 'contacto@usvtv.net', NULL, 1, '2015-03-18 23:09:11.983789', '2015-03-18 23:09:11.983789')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1855, 'cristobal', 'cristobal.racordon@gmail.com', NULL, 1, '2015-03-18 23:09:12.000424', '2015-03-18 23:09:12.000424')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1856, 'Judit', 'lapicesdecera@hotmail.com', NULL, 1, '2015-03-18 23:09:12.029095', '2015-03-18 23:09:12.029095')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1857, 'Luciano', 'lugiusti@gmail.com', NULL, 1, '2015-03-18 23:09:12.053283', '2015-03-18 23:09:12.053283')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1858, 'galeria', 'laurahaber@fibertel.com.ar', NULL, 1, '2015-03-18 23:09:12.068468', '2015-03-18 23:09:12.068468')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1859, 'andres', 'andresmoram@gmail.com', NULL, 1, '2015-03-18 23:09:12.078203', '2015-03-18 23:09:12.078203')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1860, 'Andrea', 'andreatorresmorales@gmail.com', NULL, 1, '2015-03-18 23:09:12.088644', '2015-03-18 23:09:12.088644')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1861, 'panshoomedelpizarro', 'elpanshoo@hotmail.com', NULL, 1, '2015-03-18 23:09:12.097495', '2015-03-18 23:09:12.097495')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1862, 'Patricio', 'gonzabez@gmail.com', NULL, 1, '2015-03-18 23:09:12.810753', '2015-03-18 23:09:12.810753')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1863, 'epuelopez3', 'epuelopez3@yahoo.es', NULL, 1, '2015-03-18 23:09:12.820437', '2015-03-18 23:09:12.820437')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1864, 'lasalinasa', 'danielasalinasa@gmail.com', NULL, 1, '2015-03-18 23:09:12.828923', '2015-03-18 23:09:12.828923')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1865, 'Pedro', 'pedrorajevic@gmail.com', NULL, 1, '2015-03-18 23:09:12.837094', '2015-03-18 23:09:12.837094')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1866, 'Juan', 'obras@espaciosinergia.com.ar', NULL, 1, '2015-03-18 23:09:12.845999', '2015-03-18 23:09:12.845999')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1867, 'Soledad', 'sc@espaciosinergia.com.ar', NULL, 1, '2015-03-18 23:09:12.866239', '2015-03-18 23:09:12.866239')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1868, 'Evelyn', 'evelyana@hotmail.com', NULL, 1, '2015-03-18 23:09:12.881485', '2015-03-18 23:09:12.881485')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1869, 'Federico', 'niandujuegos@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:12.891461', '2015-03-18 23:09:12.891461')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1870, 'la', 'gerhardt.rs@gmail.com', NULL, 1, '2015-03-18 23:09:12.917988', '2015-03-18 23:09:12.917988')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1871, 'LAURA', 'cruzmedieval@hotmail.com', NULL, 1, '2015-03-18 23:09:12.933273', '2015-03-18 23:09:12.933273')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1872, 'Susana', 'seweingast@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:12.942656', '2015-03-18 23:09:12.942656')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1873, 'vicky', 'centauro_mitominia@hotmail.com', NULL, 1, '2015-03-18 23:09:12.953084', '2015-03-18 23:09:12.953084')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1874, 'Romi', 'rocmti@gmail.com', NULL, 1, '2015-03-18 23:09:12.962047', '2015-03-18 23:09:12.962047')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1875, 'Francisco', 'glezvera@gmail.com', NULL, 1, '2015-03-18 23:09:12.970385', '2015-03-18 23:09:12.970385')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1876, 'emersson', 'emersox@gmail.com', NULL, 1, '2015-03-18 23:09:12.983637', '2015-03-18 23:09:12.983637')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1877, 'Marta', 'martayglesias@yahoo.es', NULL, 1, '2015-03-18 23:09:12.998843', '2015-03-18 23:09:12.998843')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1878, 'Rodrigo', 'rgvproducciongrafica@vtr.net', NULL, 1, '2015-03-18 23:09:13.007678', '2015-03-18 23:09:13.007678')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1879, 'Federico', 'estudiobinocular@gmail.com', NULL, 1, '2015-03-18 23:09:13.016296', '2015-03-18 23:09:13.016296')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1880, 'Enzo', 'cagdecito@gmail.com', NULL, 1, '2015-03-18 23:09:13.032280', '2015-03-18 23:09:13.032280')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1881, 'José', 'cisternas.jose@gmail.com', NULL, 1, '2015-03-18 23:09:13.041653', '2015-03-18 23:09:13.041653')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1882, 'Maria', 'mtvallejos@gmail.com', NULL, 1, '2015-03-18 23:09:13.050987', '2015-03-18 23:09:13.050987')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1883, 'Mario', 'mlagosbravo@gmail.com', NULL, 1, '2015-03-18 23:09:13.059653', '2015-03-18 23:09:13.059653')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1884, 'david', 'dadaproducciones@gmail.com', NULL, 1, '2015-03-18 23:09:13.068004', '2015-03-18 23:09:13.068004')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1885, 'Alejandro', 'alejandro.ortuzar@gmail.com', NULL, 1, '2015-03-18 23:09:13.082220', '2015-03-18 23:09:13.082220')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1886, 'Miguel', 'alercesmilenarios@hotmail.com', NULL, 1, '2015-03-18 23:09:13.091191', '2015-03-18 23:09:13.091191')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1887, 'Alex', 'jamett09@hotmail.com', NULL, 1, '2015-03-18 23:09:13.100010', '2015-03-18 23:09:13.100010')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1888, 'Ruth', 'rddl1987@hotmail.com', NULL, 1, '2015-03-18 23:09:13.109589', '2015-03-18 23:09:13.109589')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1889, 'Yolox', 'Yolox@Yolox.com', NULL, 1, '2015-03-18 23:09:13.117799', '2015-03-18 23:09:13.117799')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1890, 'Constanza', 'conigazmuri@gmail.com', NULL, 1, '2015-03-18 23:09:13.132282', '2015-03-18 23:09:13.132282')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1891, 'Claudia', 'sergiclau@gmail.com', NULL, 1, '2015-03-18 23:09:13.141585', '2015-03-18 23:09:13.141585')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1892, 'José', 'jose.andrade.r@gmail.com', NULL, 1, '2015-03-18 23:09:13.150284', '2015-03-18 23:09:13.150284')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1893, 'axdiseno', 'axdiseno@gmail.com', NULL, 1, '2015-03-18 23:09:13.159527', '2015-03-18 23:09:13.159527')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1894, 'edicionanimita', 'edicionanimita@gmail.com', NULL, 1, '2015-03-18 23:09:13.167763', '2015-03-18 23:09:13.167763')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1895, 'Renso', 'rensozev@hotmail.com', NULL, 1, '2015-03-18 23:09:13.183043', '2015-03-18 23:09:13.183043')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1896, 'Víctor', 'victor.mahana@gmail.com', NULL, 1, '2015-03-18 23:09:13.192039', '2015-03-18 23:09:13.192039')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1897, 'Paula', 'pvantunez@gmail.com', NULL, 1, '2015-03-18 23:09:13.200486', '2015-03-18 23:09:13.200486')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1898, 'María', 'majosita2@yahoo.es', NULL, 1, '2015-03-18 23:09:13.208816', '2015-03-18 23:09:13.208816')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1899, 'Diego', 'diegorvergara@hotmail.com', NULL, 1, '2015-03-18 23:09:13.217574', '2015-03-18 23:09:13.217574')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1900, 'gabriela', 'jaqay_kani@hotmail.com', NULL, 1, '2015-03-18 23:09:13.232211', '2015-03-18 23:09:13.232211')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1901, 'Carlos', 'carlosvallenriquez@gmail.com', NULL, 1, '2015-03-18 23:09:13.241472', '2015-03-18 23:09:13.241472')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1902, 'Kata', 'khanssens@gmail.com', NULL, 1, '2015-03-18 23:09:13.250171', '2015-03-18 23:09:13.250171')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1903, 'María', 'mpgonzalezdurney@gmail.com', NULL, 1, '2015-03-18 23:09:13.259185', '2015-03-18 23:09:13.259185')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1904, 'projasja', 'projasja@hotmail.com', NULL, 1, '2015-03-18 23:09:13.268068', '2015-03-18 23:09:13.268068')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1905, 'Artista', 'projasja@gmail.com', NULL, 1, '2015-03-18 23:09:13.281844', '2015-03-18 23:09:13.281844')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1906, 'Gilberto', 'gilberto17_21@hotmail.com', NULL, 1, '2015-03-18 23:09:13.291792', '2015-03-18 23:09:13.291792')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1907, 'manuel', 'artista716@hotmail.com', NULL, 1, '2015-03-18 23:09:13.301371', '2015-03-18 23:09:13.301371')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1908, 'alejandra', 'paquitas4manos@gmail.com', NULL, 1, '2015-03-18 23:09:13.311207', '2015-03-18 23:09:13.311207')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1909, 'Marcusses', 'taussmarcusses@gmail.com', NULL, 1, '2015-03-18 23:09:13.319903', '2015-03-18 23:09:13.319903')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1910, 'Jacques', 'jacques_sterenberg@hotmail.com', NULL, 1, '2015-03-18 23:09:13.331881', '2015-03-18 23:09:13.331881')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1911, 'pablo', 'tronic_kplr@hotmail.com', NULL, 1, '2015-03-18 23:09:13.341745', '2015-03-18 23:09:13.341745')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1912, 'Bernardita', 'ita_aris@yahoo.com', NULL, 1, '2015-03-18 23:09:13.350898', '2015-03-18 23:09:13.350898')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1913, 'Claudia', 'claudiavenegas@123.cl', NULL, 1, '2015-03-18 23:09:13.359915', '2015-03-18 23:09:13.359915')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1914, 'Ronald', 'ronaldmorrison@hotmail.es', NULL, 1, '2015-03-18 23:09:13.368562', '2015-03-18 23:09:13.368562')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1915, 'Jose', 'jcarcavilla@gmail.com', NULL, 1, '2015-03-18 23:09:13.382135', '2015-03-18 23:09:13.382135')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1916, 'Rodrigo', 'rodrigovarez@gmail.com', NULL, 1, '2015-03-18 23:09:13.390741', '2015-03-18 23:09:13.390741')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1917, 'arteemol', 'rosariomartinez@chilearte.com', NULL, 1, '2015-03-18 23:09:13.400379', '2015-03-18 23:09:13.400379')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1918, 'Soledad', 'harleysim@yahoo.com', NULL, 1, '2015-03-18 23:09:13.409547', '2015-03-18 23:09:13.409547')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1919, 'juan', 'jleongrafo@gmail.com', NULL, 1, '2015-03-18 23:09:13.418503', '2015-03-18 23:09:13.418503')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1920, 'Columpio', 'galeria@columpiomadrid.com', NULL, 1, '2015-03-18 23:09:13.432286', '2015-03-18 23:09:13.432286')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1921, 'Marianne', 'caracolosa@gmail.com', NULL, 1, '2015-03-18 23:09:13.441113', '2015-03-18 23:09:13.441113')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1922, 'Emanuel', 'manuu.gnonzalez@gmail.com', NULL, 1, '2015-03-18 23:09:13.449856', '2015-03-18 23:09:13.449856')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1923, 'Manu', 'manusnot@gmail.com', NULL, 1, '2015-03-18 23:09:13.459221', '2015-03-18 23:09:13.459221')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1924, 'Felipe', 'valenzuelaleiva.felipe@gmail.com', NULL, 1, '2015-03-18 23:09:13.468178', '2015-03-18 23:09:13.468178')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1925, 'Milena', 'milenagropper@gmail.com', NULL, 1, '2015-03-18 23:09:13.490263', '2015-03-18 23:09:13.490263')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1926, 'Maggie', 'maggie.sierralta@gmail.com', NULL, 1, '2015-03-18 23:09:13.501729', '2015-03-18 23:09:13.501729')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1927, 'gustavo', 'avioneta2012@gmail.com', NULL, 1, '2015-03-18 23:09:13.575244', '2015-03-18 23:09:13.575244')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1928, 'Pablo', 'lincura@gmail.com', NULL, 1, '2015-03-18 23:09:13.596128', '2015-03-18 23:09:13.596128')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1929, 'Millan', 'ludem85@hotmail.com', NULL, 1, '2015-03-18 23:09:13.622240', '2015-03-18 23:09:13.622240')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1930, 'estrellaolivares', 'estrellaolivares@yahoo.es', NULL, 1, '2015-03-18 23:09:13.641781', '2015-03-18 23:09:13.641781')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1931, 'Ricardo', 'claudiobaezam@gmail.com', NULL, 1, '2015-03-18 23:09:13.667204', '2015-03-18 23:09:13.667204')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1932, 'Diego', 'sr.diego.jebus@gmail.com', NULL, 1, '2015-03-18 23:09:13.701105', '2015-03-18 23:09:13.701105')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1933, 'Isabel', 'marcel_duchamp@hotmail.com', NULL, 1, '2015-03-18 23:09:13.714469', '2015-03-18 23:09:13.714469')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1934, 'faraco', 'faracomacias@hotmail.com', NULL, 1, '2015-03-18 23:09:13.801230', '2015-03-18 23:09:13.801230')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1935, 'Daou', 'btaste@gmail.com', NULL, 1, '2015-03-18 23:09:13.828201', '2015-03-18 23:09:13.828201')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1936, 'Felipe', 'felipevisor7@gmail.com', NULL, 1, '2015-03-18 23:09:13.838519', '2015-03-18 23:09:13.838519')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1937, 'Pablo', 'guzpablo@gmail.com', NULL, 1, '2015-03-18 23:09:13.848070', '2015-03-18 23:09:13.848070')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1938, 'Boris', 'borisgrns@gmail.com', NULL, 1, '2015-03-18 23:09:13.867438', '2015-03-18 23:09:13.867438')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1939, 'Fabian', 'fabianruiz.b@gmail.com', NULL, 1, '2015-03-18 23:09:13.880993', '2015-03-18 23:09:13.880993')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1940, 'Ale', 'aleacosta@mi.cl', NULL, 1, '2015-03-18 23:09:13.898319', '2015-03-18 23:09:13.898319')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1941, 'Huaso', 'tori_cjvv@hotmail.com', NULL, 1, '2015-03-18 23:09:13.913044', '2015-03-18 23:09:13.913044')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1942, 'barimi', 'barimig@hotmail.com', NULL, 1, '2015-03-18 23:09:13.921485', '2015-03-18 23:09:13.921485')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1943, 'mauricio', 'pezzob73@hotmail.com', NULL, 1, '2015-03-18 23:09:13.934386', '2015-03-18 23:09:13.934386')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1944, 'Felipe', 'dr.ratoz.xD@gmail.com', NULL, 1, '2015-03-18 23:09:13.955878', '2015-03-18 23:09:13.955878')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1945, 'Gilden', 'ktarsis30@yahoo.com', NULL, 1, '2015-03-18 23:09:13.966828', '2015-03-18 23:09:13.966828')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1946, 'Geri', 'mihatatu@mail.ru', NULL, 1, '2015-03-18 23:09:13.975847', '2015-03-18 23:09:13.975847')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1947, 'Ismael', 'documentos.mentales@gmail.com', NULL, 1, '2015-03-18 23:09:13.984223', '2015-03-18 23:09:13.984223')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1948, 'Amanda', 'amanding07@hotmail.com', NULL, 1, '2015-03-18 23:09:13.997730', '2015-03-18 23:09:13.997730')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1949, 'Fabiola', 'musita.f@gmail.com', NULL, 1, '2015-03-18 23:09:14.011657', '2015-03-18 23:09:14.011657')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1950, 'Raj', 'rajmor@gmail.com', NULL, 1, '2015-03-18 23:09:14.023155', '2015-03-18 23:09:14.023155')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1951, 'Roger', 'dennymati.s@gmail.com', NULL, 1, '2015-03-18 23:09:14.047133', '2015-03-18 23:09:14.047133')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1952, 'manuel', 'manuelrodriguez71@live.cl', NULL, 1, '2015-03-18 23:09:14.057800', '2015-03-18 23:09:14.057800')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1953, 'manuel', 'manuelrodriguez77@gmail.com', NULL, 1, '2015-03-18 23:09:14.080980', '2015-03-18 23:09:14.080980')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1954, 'Gonzalo', 'gonzaloper@adinet.com.uy', NULL, 1, '2015-03-18 23:09:14.097018', '2015-03-18 23:09:14.097018')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1955, 'igor', 'eliuno@hotmail.com', NULL, 1, '2015-03-18 23:09:14.121542', '2015-03-18 23:09:14.121542')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1956, 'Martín', 'martintxo2004@gmail.com', NULL, 1, '2015-03-18 23:09:14.134099', '2015-03-18 23:09:14.134099')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1957, 'Miguel', 'mcm.metrik@gmail.com', NULL, 1, '2015-03-18 23:09:14.147107', '2015-03-18 23:09:14.147107')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1958, 'Alejandro', 'info@casonasannicolas.cl', NULL, 1, '2015-03-18 23:09:14.156586', '2015-03-18 23:09:14.156586')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1959, 'Claudia', 'canobra@vtr.net', NULL, 1, '2015-03-18 23:09:14.165796', '2015-03-18 23:09:14.165796')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1960, 'jaime', 'urbanoty@live.cl', NULL, 1, '2015-03-18 23:09:14.174246', '2015-03-18 23:09:14.174246')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1961, 'Roberto', 'romenestra@hotmail.es', NULL, 1, '2015-03-18 23:09:14.196233', '2015-03-18 23:09:14.196233')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1962, 'Miriam', 'miriamladrondeguevara@hotmail.com', NULL, 1, '2015-03-18 23:09:14.205796', '2015-03-18 23:09:14.205796')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1963, 'Mila', 'milaae@live.cl', NULL, 1, '2015-03-18 23:09:14.214833', '2015-03-18 23:09:14.214833')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1964, 'Luis', 'lucho_patton@hotmail.com', NULL, 1, '2015-03-18 23:09:14.229627', '2015-03-18 23:09:14.229627')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1965, 'Manuel', 'manuelfloresn@gmail.com', NULL, 1, '2015-03-18 23:09:14.247267', '2015-03-18 23:09:14.247267')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1966, 'Marcelo', 'mentequecrea@gmail.com', NULL, 1, '2015-03-18 23:09:14.257561', '2015-03-18 23:09:14.257561')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1967, 'Jorge', 'rosselarquitecto@hotmail.com', NULL, 1, '2015-03-18 23:09:14.272805', '2015-03-18 23:09:14.272805')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1968, 'Monga', 'somosmonga@gmail.com', NULL, 1, '2015-03-18 23:09:14.371655', '2015-03-18 23:09:14.371655')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1969, 'Katherine', 'khrdalo@yahoo.es', NULL, 1, '2015-03-18 23:09:14.381409', '2015-03-18 23:09:14.381409')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1970, 'Michael', 'simana-79@mail.ru', NULL, 1, '2015-03-18 23:09:14.390978', '2015-03-18 23:09:14.390978')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1971, 'Paulina', 'tallernapols@gmail.com', NULL, 1, '2015-03-18 23:09:14.400725', '2015-03-18 23:09:14.400725')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1972, 'Matthew', 'pantherguy456@gmail.com', NULL, 1, '2015-03-18 23:09:14.409947', '2015-03-18 23:09:14.409947')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1973, 'Luis', 'manosquecrean@gmail.com', NULL, 1, '2015-03-18 23:09:14.431063', '2015-03-18 23:09:14.431063')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1974, 'FA', 'fagarayfoto@gmail.com', NULL, 1, '2015-03-18 23:09:14.441292', '2015-03-18 23:09:14.441292')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1975, 'Jeff', 'whattheheckisreal@gmail.com', NULL, 1, '2015-03-18 23:09:14.450860', '2015-03-18 23:09:14.450860')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1976, 'Mario', 'martin.apaterson@gmail.com', NULL, 1, '2015-03-18 23:09:14.460738', '2015-03-18 23:09:14.460738')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1977, 'Gabriela', 'gabrielapazfotografia@gmail.com', NULL, 1, '2015-03-18 23:09:14.481341', '2015-03-18 23:09:14.481341')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1978, 'Mariel', 'marielbgalarza@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:14.491906', '2015-03-18 23:09:14.491906')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1979, 'Daniella', 'daniellaperbac@yahoo.com', NULL, 1, '2015-03-18 23:09:14.502874', '2015-03-18 23:09:14.502874')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1980, 'PABLO', 'contact.projectt@gmail.com', NULL, 1, '2015-03-18 23:09:14.511177', '2015-03-18 23:09:14.511177')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1981, 'Cristóbal', 'kleerabioso@gmail.com', NULL, 1, '2015-03-18 23:09:14.530482', '2015-03-18 23:09:14.530482')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1982, 'PROYECTO', 'accionsudaca@gmail.com', NULL, 1, '2015-03-18 23:09:14.540090', '2015-03-18 23:09:14.540090')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1983, 'Javier', 'javier@moretamirc.cl', NULL, 1, '2015-03-18 23:09:14.548621', '2015-03-18 23:09:14.548621')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1984, 'Carola', 'carolinavergarajunge@gmail.com', NULL, 1, '2015-03-18 23:09:14.557529', '2015-03-18 23:09:14.557529')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1985, 'sol', 'solrezza@radioscomunitarias.org', NULL, 1, '2015-03-18 23:09:14.566832', '2015-03-18 23:09:14.566832')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1986, 'carlos', 'corracorra@gmail.com', NULL, 1, '2015-03-18 23:09:14.579753', '2015-03-18 23:09:14.579753')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1987, 'Frank', 'fmillard@gmail.com', NULL, 1, '2015-03-18 23:09:14.589639', '2015-03-18 23:09:14.589639')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1988, 'jorge', 'jorgepanchana@gmail.com', NULL, 1, '2015-03-18 23:09:14.598805', '2015-03-18 23:09:14.598805')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1989, 'marcia', 'marcia.jaramillo@gmail.com', NULL, 1, '2015-03-18 23:09:14.607949', '2015-03-18 23:09:14.607949')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1990, 'Sebastián', 'bitacora.anacronica@gmail.com', NULL, 1, '2015-03-18 23:09:14.616502', '2015-03-18 23:09:14.616502')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1991, 'El', 'theadmin@seomasterblog.com', NULL, 1, '2015-03-18 23:09:14.629056', '2015-03-18 23:09:14.629056')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1992, 'Fernando', 'feralemanmalespin@gmail.com', NULL, 1, '2015-03-18 23:09:14.638149', '2015-03-18 23:09:14.638149')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1993, 'Ryan', 'retroboy@foroseguimiento.com', NULL, 1, '2015-03-18 23:09:14.650513', '2015-03-18 23:09:14.650513')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1994, 'Observatorio', 'observatorio.arte@gmail.com', NULL, 1, '2015-03-18 23:09:14.667249', '2015-03-18 23:09:14.667249')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1995, 'Outta', 'cboffer@aim.com', NULL, 1, '2015-03-18 23:09:14.687220', '2015-03-18 23:09:14.687220')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1996, 'jocelyn', 'brazos__d_sol@hotmail.com', NULL, 1, '2015-03-18 23:09:14.697967', '2015-03-18 23:09:14.697967')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1997, 'maggiolo', 'a_maggiolope@gmail.com', NULL, 1, '2015-03-18 23:09:14.714195', '2015-03-18 23:09:14.714195')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1998, 'leoncervantes', 'leoncervantes@hotmail.com', NULL, 1, '2015-03-18 23:09:14.735979', '2015-03-18 23:09:14.735979')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (1999, 'Gustavo', 'laragoz@gmail.com', NULL, 1, '2015-03-18 23:09:14.746094', '2015-03-18 23:09:14.746094')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2000, 'Marianne', 'mariannevaleria@hotmail.com', NULL, 1, '2015-03-18 23:09:14.796513', '2015-03-18 23:09:14.796513')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2001, 'necesidad', 'lartistantezana@gmail.com', NULL, 1, '2015-03-18 23:09:14.806415', '2015-03-18 23:09:14.806415')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2002, 'Rodrigo', 'rodrigoaarte@gmail.com', NULL, 1, '2015-03-18 23:09:14.816765', '2015-03-18 23:09:14.816765')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2003, 'entertainment', 'annajoh.johanson422@googlemail.com', NULL, 1, '2015-03-18 23:09:14.845899', '2015-03-18 23:09:14.845899')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2004, 'Klaus', 'igiveyouhealth2@aim.com', NULL, 1, '2015-03-18 23:09:14.867652', '2015-03-18 23:09:14.867652')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2005, 'Julio', 'jedc1973@gmail.com', NULL, 1, '2015-03-18 23:09:14.891257', '2015-03-18 23:09:14.891257')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2006, 'Edwin', 'velazquezestudio@yahoo.com', NULL, 1, '2015-03-18 23:09:14.931118', '2015-03-18 23:09:14.931118')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2007, 'Eliud', 'tavo_betos99@hotmail.com', NULL, 1, '2015-03-18 23:09:14.945768', '2015-03-18 23:09:14.945768')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2008, 'paloma', 'paloma_rdzg@hotmail.com', NULL, 1, '2015-03-18 23:09:14.957976', '2015-03-18 23:09:14.957976')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2009, 'dcapona', 'dcapona@gmail.com', NULL, 1, '2015-03-18 23:09:14.985582', '2015-03-18 23:09:14.985582')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2010, 'Poli', 'poliplay@gmail.com', NULL, 1, '2015-03-18 23:09:14.995728', '2015-03-18 23:09:14.995728')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2011, 'Massimiliano', 'mex@fantaproduction.com', NULL, 1, '2015-03-18 23:09:15.011992', '2015-03-18 23:09:15.011992')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2012, 'Pete', 'whytheobvious@aim.com', NULL, 1, '2015-03-18 23:09:15.059420', '2015-03-18 23:09:15.059420')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2013, 'Fernando', 'hinostrozaf@gmail.com', NULL, 1, '2015-03-18 23:09:15.086825', '2015-03-18 23:09:15.086825')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2014, 'Fernando', 'entrepaisas@yahoo.com', NULL, 1, '2015-03-18 23:09:15.102636', '2015-03-18 23:09:15.102636')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2015, 'Fernando', 'fehenao50@yahoo.com', NULL, 1, '2015-03-18 23:09:15.116987', '2015-03-18 23:09:15.116987')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2016, 'Joaquin', 'joaquin.mukden@mail.udp.cl', NULL, 1, '2015-03-18 23:09:15.130296', '2015-03-18 23:09:15.130296')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2017, 'Héctor', 'hgallegosc1@gmail.com', NULL, 1, '2015-03-18 23:09:15.149507', '2015-03-18 23:09:15.149507')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2018, 'Germán', 'givicencio@gmail.com', NULL, 1, '2015-03-18 23:09:15.225217', '2015-03-18 23:09:15.225217')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2019, 'RODRIGO', 'rodrigoduran33@gmail.com', NULL, 1, '2015-03-18 23:09:15.246063', '2015-03-18 23:09:15.246063')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2020, 'Rubén', 'rubecarrasco@gmail.com', NULL, 1, '2015-03-18 23:09:15.260386', '2015-03-18 23:09:15.260386')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2021, 'Juan', 'juanjosevg@live.cl', NULL, 1, '2015-03-18 23:09:15.278240', '2015-03-18 23:09:15.278240')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2022, 'micaela', 'micaelaruiz@hotmail.com', NULL, 1, '2015-03-18 23:09:15.289586', '2015-03-18 23:09:15.289586')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2023, 'Rocksteady', 'd.sinder.ber@gmail.com', NULL, 1, '2015-03-18 23:09:15.311105', '2015-03-18 23:09:15.311105')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2024, 'José', 'josesalero1602@hotmail.com', NULL, 1, '2015-03-18 23:09:15.327440', '2015-03-18 23:09:15.327440')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2025, 'Marco', 'grifhar@hotmail.com', NULL, 1, '2015-03-18 23:09:15.345403', '2015-03-18 23:09:15.345403')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2026, 'Sammy86', 'jekse86@gmail.com', NULL, 1, '2015-03-18 23:09:15.363575', '2015-03-18 23:09:15.363575')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2027, 'Macarena', 'macarena26molina@gmail.com', NULL, 1, '2015-03-18 23:09:15.378453', '2015-03-18 23:09:15.378453')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2028, 'CLAROSE', 'clarose2730@hotmail.com', NULL, 1, '2015-03-18 23:09:15.389635', '2015-03-18 23:09:15.389635')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2029, 'Solange', 'thecocho@gmail.com', NULL, 1, '2015-03-18 23:09:15.407526', '2015-03-18 23:09:15.407526')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2030, 'elizabeth', 'sakulore@hotmail.com', NULL, 1, '2015-03-18 23:09:15.419218', '2015-03-18 23:09:15.419218')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2031, 'YURIDIA', 'yurarudz@gmail.com', NULL, 1, '2015-03-18 23:09:15.430419', '2015-03-18 23:09:15.430419')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2032, 'Galeria', 'galeriapax@gmail.com', NULL, 1, '2015-03-18 23:09:15.439682', '2015-03-18 23:09:15.439682')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2033, 'Malva', 'info@prorigen.com', NULL, 1, '2015-03-18 23:09:15.463277', '2015-03-18 23:09:15.463277')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2034, 'Selectores', 'goselec@gmail.com', NULL, 1, '2015-03-18 23:09:15.476977', '2015-03-18 23:09:15.476977')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2035, 'Anibal', 'almibarazucarado@gmail.com', NULL, 1, '2015-03-18 23:09:15.486097', '2015-03-18 23:09:15.486097')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2036, 'Dania', 'daniavg@hotmail.com', NULL, 1, '2015-03-18 23:09:15.570932', '2015-03-18 23:09:15.570932')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2037, 'ILIANA', 'ilianas1017@yahoo.es', NULL, 1, '2015-03-18 23:09:15.595438', '2015-03-18 23:09:15.595438')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2038, 'Denisse', 'denissefontecilla@gmail.com', NULL, 1, '2015-03-18 23:09:15.619043', '2015-03-18 23:09:15.619043')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2039, 'Sergio', 'imagen.imagen.imagen@gmail.com', NULL, 1, '2015-03-18 23:09:15.635726', '2015-03-18 23:09:15.635726')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2040, 'NINIA', 'arte@arteninia.webmail.com', NULL, 1, '2015-03-18 23:09:15.648732', '2015-03-18 23:09:15.648732')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2041, 'Pablo', 'pablorittern@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:15.674843', '2015-03-18 23:09:15.674843')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2042, 'Viviana', 'viviana2484@gmail.com', NULL, 1, '2015-03-18 23:09:15.725635', '2015-03-18 23:09:15.725635')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2043, 'Alejandra', 'alecxa@gmail.com', NULL, 1, '2015-03-18 23:09:15.735403', '2015-03-18 23:09:15.735403')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2044, 'Alejandra', 'nellyctronica@hotmail.com', NULL, 1, '2015-03-18 23:09:15.745273', '2015-03-18 23:09:15.745273')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2045, 'Rodrigo', 'brenesthames@hotmail.com', NULL, 1, '2015-03-18 23:09:15.767250', '2015-03-18 23:09:15.767250')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2046, 'leonardo', 'leo.flores.c@gmail.com', NULL, 1, '2015-03-18 23:09:15.776783', '2015-03-18 23:09:15.776783')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2047, 'Felipe', 'contacto@experimentourbano.com', NULL, 1, '2015-03-18 23:09:15.845720', '2015-03-18 23:09:15.845720')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2048, 'susana', 'susana_cp08@hotmail.com', NULL, 1, '2015-03-18 23:09:15.860651', '2015-03-18 23:09:15.860651')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2049, 'Marcelo', 'marcelomainardi@gmail.com', NULL, 1, '2015-03-18 23:09:15.869973', '2015-03-18 23:09:15.869973')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2050, 'Alberto', 'torresayerdi@gmail.com', NULL, 1, '2015-03-18 23:09:15.880168', '2015-03-18 23:09:15.880168')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2051, 'luis', 'lumobu@yahoo.com', NULL, 1, '2015-03-18 23:09:15.893025', '2015-03-18 23:09:15.893025')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2052, 'Luis', 'luguimobu@hotmail.com', NULL, 1, '2015-03-18 23:09:15.904061', '2015-03-18 23:09:15.904061')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2053, 'Pau', 'paulipunk@gmail.com', NULL, 1, '2015-03-18 23:09:15.953319', '2015-03-18 23:09:15.953319')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2054, 'Santiago', 'yagoburgos@gmail.com', NULL, 1, '2015-03-18 23:09:15.976689', '2015-03-18 23:09:15.976689')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2055, 'Erick', 'visualmassive@gmail.com', NULL, 1, '2015-03-18 23:09:15.986922', '2015-03-18 23:09:15.986922')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2056, 'Montserrat', 'montsecosido@hotmail.com', NULL, 1, '2015-03-18 23:09:15.995618', '2015-03-18 23:09:15.995618')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2057, 'Anita', 'aniferlu@hotmail.com', NULL, 1, '2015-03-18 23:09:16.006843', '2015-03-18 23:09:16.006843')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2058, 'jonathan', 'artpopulus@hotmail.com', NULL, 1, '2015-03-18 23:09:16.026801', '2015-03-18 23:09:16.026801')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2059, 'Lisbeth', 'lisbethfeinberg@hotmail.com', NULL, 1, '2015-03-18 23:09:16.095679', '2015-03-18 23:09:16.095679')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2060, 'Alejzza', '', NULL, 1, '2015-03-18 23:09:16.115575', '2015-03-18 23:09:16.115575')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2061, 'carlos', 'negrodeluho@hotmail.com', NULL, 1, '2015-03-18 23:09:16.135162', '2015-03-18 23:09:16.135162')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2062, 'María', 'maria.contrerasval@gmail.com', NULL, 1, '2015-03-18 23:09:16.146614', '2015-03-18 23:09:16.146614')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2063, 'jose', 'jmcf68@gmail.com', NULL, 1, '2015-03-18 23:09:16.156495', '2015-03-18 23:09:16.156495')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2064, 'javi', 'javi_gold@hotmail.com', NULL, 1, '2015-03-18 23:09:16.165902', '2015-03-18 23:09:16.165902')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2065, 'marcela', 'mypptal@hotmail.com', NULL, 1, '2015-03-18 23:09:16.226549', '2015-03-18 23:09:16.226549')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2066, 'Julietta', 'julietanievas@gmail.com', NULL, 1, '2015-03-18 23:09:16.238896', '2015-03-18 23:09:16.238896')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2067, 'pablo', 'pablo-catado@hotmail.com', NULL, 1, '2015-03-18 23:09:16.257381', '2015-03-18 23:09:16.257381')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2068, 'Marcos', 'marcosdibuja@gmail.com', NULL, 1, '2015-03-18 23:09:16.282827', '2015-03-18 23:09:16.282827')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2069, 'Paula', 'paulaquijada@yahoo.es', NULL, 1, '2015-03-18 23:09:16.302151', '2015-03-18 23:09:16.302151')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2070, 'Catalina', 'catalafuente@gmail.com', NULL, 1, '2015-03-18 23:09:16.368261', '2015-03-18 23:09:16.368261')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2071, 'Patricio', 'patobocca@gmail.com', NULL, 1, '2015-03-18 23:09:16.394448', '2015-03-18 23:09:16.394448')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2072, 'Jorge', 'jorgetorosh@gmail.com', NULL, 1, '2015-03-18 23:09:16.424632', '2015-03-18 23:09:16.424632')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2073, 'Mirian', 'mbeatriz_ar@hotmail.com', NULL, 1, '2015-03-18 23:09:16.438288', '2015-03-18 23:09:16.438288')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2074, 'Soledad', 'soledadleondelacerda@gmail.com', NULL, 1, '2015-03-18 23:09:16.467980', '2015-03-18 23:09:16.467980')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2075, 'MarceloDuarte', 'artsduarte@gmail.com', NULL, 1, '2015-03-18 23:09:16.478907', '2015-03-18 23:09:16.478907')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2076, 'Silvestre', 'austral87@gmail.com', NULL, 1, '2015-03-18 23:09:16.488095', '2015-03-18 23:09:16.488095')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2077, 'Constanza', 'contyragal@gmail.com', NULL, 1, '2015-03-18 23:09:16.498069', '2015-03-18 23:09:16.498069')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2078, 'Sergio', 'sergiolopezfotografo@gmail.com', NULL, 1, '2015-03-18 23:09:16.507330', '2015-03-18 23:09:16.507330')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2079, 'paola', 'psanpastor@gmail.com', NULL, 1, '2015-03-18 23:09:16.524553', '2015-03-18 23:09:16.524553')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2080, 'Jacqueline', 'jakeline.herrera@mail.com', NULL, 1, '2015-03-18 23:09:16.534271', '2015-03-18 23:09:16.534271')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2081, 'Deysi', 'mafalda623@gmail.com', NULL, 1, '2015-03-18 23:09:16.552928', '2015-03-18 23:09:16.552928')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2082, 'Arturo', 'trybal@msn.com', NULL, 1, '2015-03-18 23:09:16.563205', '2015-03-18 23:09:16.563205')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2083, 'Guillermo', 'coloresmagikos@gmail.com', NULL, 1, '2015-03-18 23:09:16.575054', '2015-03-18 23:09:16.575054')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2084, 'karol', 'stop_paradisio@live.cl', NULL, 1, '2015-03-18 23:09:16.583813', '2015-03-18 23:09:16.583813')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2085, 'irene', 'irene.abujatum@gmail.com', NULL, 1, '2015-03-18 23:09:16.593038', '2015-03-18 23:09:16.593038')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2086, 'Felipe', 'manxanaster@gmail.com', NULL, 1, '2015-03-18 23:09:16.612362', '2015-03-18 23:09:16.612362')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2087, 'Andrea', 'spoerer.andrea@gmail.com', NULL, 1, '2015-03-18 23:09:16.626912', '2015-03-18 23:09:16.626912')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2088, 'JESSICA', 'lajortacktaich@gmail.com', NULL, 1, '2015-03-18 23:09:16.636268', '2015-03-18 23:09:16.636268')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2089, 'Natalia', 'natamontesv@gmail.com', NULL, 1, '2015-03-18 23:09:16.646043', '2015-03-18 23:09:16.646043')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2090, 'maria', 'mafesoar@hotmail.com', NULL, 1, '2015-03-18 23:09:16.654578', '2015-03-18 23:09:16.654578')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2091, 'Elisa', 'lagarliza@gmail.com', NULL, 1, '2015-03-18 23:09:16.667602', '2015-03-18 23:09:16.667602')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2092, 'Francisca', 'amarantastravi@hotmail.com', NULL, 1, '2015-03-18 23:09:16.690747', '2015-03-18 23:09:16.690747')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2093, 'deily', 'deilygo@gmail.com', NULL, 1, '2015-03-18 23:09:16.713625', '2015-03-18 23:09:16.713625')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2094, 'ARSENIO', 'tunuxtu@hotmail.com', NULL, 1, '2015-03-18 23:09:16.725060', '2015-03-18 23:09:16.725060')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2095, 'Pogo', 'pogoart1@gmail.com', NULL, 1, '2015-03-18 23:09:16.734738', '2015-03-18 23:09:16.734738')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2096, 'José', 'jlos23@hotmail.com', NULL, 1, '2015-03-18 23:09:16.758045', '2015-03-18 23:09:16.758045')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2097, 'Matilde', 'matildecamposh@gmail.com', NULL, 1, '2015-03-18 23:09:16.774351', '2015-03-18 23:09:16.774351')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2098, 'Andrea', 'amae_04@hotmail.com', NULL, 1, '2015-03-18 23:09:16.801596', '2015-03-18 23:09:16.801596')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2099, 'nico', 'yosoypeligro@gmail.com', NULL, 1, '2015-03-18 23:09:16.859821', '2015-03-18 23:09:16.859821')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2100, 'Cruz', 'cruzpainemilla@gmail.com', NULL, 1, '2015-03-18 23:09:16.870778', '2015-03-18 23:09:16.870778')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2101, 'Christian', 'czamoradg@gmail.com', NULL, 1, '2015-03-18 23:09:17.564933', '2015-03-18 23:09:17.564933')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2102, 'luis', 'info@luismontull.com', NULL, 1, '2015-03-18 23:09:17.575583', '2015-03-18 23:09:17.575583')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2103, 'soledad', 'soledadbravovaldivieso@gmail.com', NULL, 1, '2015-03-18 23:09:17.584641', '2015-03-18 23:09:17.584641')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2104, 'Angie', 'info@angieville.com.ar', NULL, 1, '2015-03-18 23:09:17.595493', '2015-03-18 23:09:17.595493')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2105, 'Gabriel', 'gaflores70@gmail.com', NULL, 1, '2015-03-18 23:09:17.624001', '2015-03-18 23:09:17.624001')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2106, 'catalina', 'catalinasilvaguzman@hotmail.com', NULL, 1, '2015-03-18 23:09:17.633596', '2015-03-18 23:09:17.633596')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2107, 'Julia', 'super_yukito@hotmail.com', NULL, 1, '2015-03-18 23:09:17.642576', '2015-03-18 23:09:17.642576')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2108, 'Jesús', 'auxi_ta_1@hotmail.com', NULL, 1, '2015-03-18 23:09:17.651399', '2015-03-18 23:09:17.651399')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2109, 'LaMaría', 'lamaria.arte@gmail.com', NULL, 1, '2015-03-18 23:09:17.660639', '2015-03-18 23:09:17.660639')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2110, 'Carolina', 'caro.rodriguezpino@gmail.com', NULL, 1, '2015-03-18 23:09:17.672732', '2015-03-18 23:09:17.672732')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2111, 'Roberto', 'robertolopezzamo@hotmail.com', NULL, 1, '2015-03-18 23:09:17.681173', '2015-03-18 23:09:17.681173')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2112, 'Francisca', 'ataxika@gmail.com', NULL, 1, '2015-03-18 23:09:17.691691', '2015-03-18 23:09:17.691691')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2113, 'Alejandra', 'alegarcialira@gmail.com', NULL, 1, '2015-03-18 23:09:17.701091', '2015-03-18 23:09:17.701091')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2114, 'Mario', 'armariox@hotmail.com', NULL, 1, '2015-03-18 23:09:17.709372', '2015-03-18 23:09:17.709372')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2115, 'Avencio', 'infogradualhate@yahoo.es', NULL, 1, '2015-03-18 23:09:17.806815', '2015-03-18 23:09:17.806815')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2116, 'Miguel', 'miguel@delanu.cl', NULL, 1, '2015-03-18 23:09:17.817132', '2015-03-18 23:09:17.817132')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2117, 'miguel', 'miguel.michelson@metrikco.com', NULL, 1, '2015-03-18 23:09:17.825591', '2015-03-18 23:09:17.825591')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2118, 'Demian', 'demian.schopf@gmail.com', NULL, 1, '2015-03-18 23:09:17.835249', '2015-03-18 23:09:17.835249')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2119, 'Federico', 'miaslanides@mail.com', NULL, 1, '2015-03-18 23:09:17.844390', '2015-03-18 23:09:17.844390')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2120, 'Graciela', 'duran.troise@gmail.com', NULL, 1, '2015-03-18 23:09:17.945969', '2015-03-18 23:09:17.945969')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2121, 'Federico', 'miaslanides@gmail.com', NULL, 1, '2015-03-18 23:09:17.955807', '2015-03-18 23:09:17.955807')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2122, 'jose', 'jomiac@hotmail.com', NULL, 1, '2015-03-18 23:09:17.971037', '2015-03-18 23:09:17.971037')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2123, 'Maria', 'ignaciatrucco@gmail.com', NULL, 1, '2015-03-18 23:09:17.980205', '2015-03-18 23:09:17.980205')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2124, 'Andrés', 'aplikado79@hotmail.com', NULL, 1, '2015-03-18 23:09:18.005877', '2015-03-18 23:09:18.005877')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2125, 'Gianpierre', 'gianpierre_yovera@hotmail.com', NULL, 1, '2015-03-18 23:09:18.021836', '2015-03-18 23:09:18.021836')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2126, 'violeta', 'violetachq@gmail.com', NULL, 1, '2015-03-18 23:09:18.030302', '2015-03-18 23:09:18.030302')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2127, 'DENST', 'denst.aa@gmail.com', NULL, 1, '2015-03-18 23:09:18.039550', '2015-03-18 23:09:18.039550')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2128, 'Ariel', 'bbkito@gmail.com', NULL, 1, '2015-03-18 23:09:18.054651', '2015-03-18 23:09:18.054651')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2129, 'Juan', 'rivas1981_4@hotmail.com', NULL, 1, '2015-03-18 23:09:18.063454', '2015-03-18 23:09:18.063454')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2130, 'Jimena', 'zapata.jimena@gmail.com', NULL, 1, '2015-03-18 23:09:18.072547', '2015-03-18 23:09:18.072547')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2131, 'Alexander', 'artutil@yandex.ru', NULL, 1, '2015-03-18 23:09:18.081665', '2015-03-18 23:09:18.081665')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2132, 'Claudia', 'claukiedis@gmail.com', NULL, 1, '2015-03-18 23:09:18.106039', '2015-03-18 23:09:18.106039')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2133, 'Ana', 'ana_migarcia@hotmail.com', NULL, 1, '2015-03-18 23:09:18.115830', '2015-03-18 23:09:18.115830')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2134, 'Armando', 'axxtlan@gmail.com', NULL, 1, '2015-03-18 23:09:18.125661', '2015-03-18 23:09:18.125661')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2135, 'liliana', 'liliananeret@yahoo.com', NULL, 1, '2015-03-18 23:09:18.134442', '2015-03-18 23:09:18.134442')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2136, 'sonia', 'soniakrammcasas@gmail.com', NULL, 1, '2015-03-18 23:09:18.143398', '2015-03-18 23:09:18.143398')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2137, 'Michelle', 'michelleleon286@gmail.com', NULL, 1, '2015-03-18 23:09:18.155015', '2015-03-18 23:09:18.155015')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2138, 'Ricardo', 'ricardosilveira55@hotmail.com', NULL, 1, '2015-03-18 23:09:18.163496', '2015-03-18 23:09:18.163496')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2139, 'Pablo', 'pablo@pablomontt.com', NULL, 1, '2015-03-18 23:09:18.172509', '2015-03-18 23:09:18.172509')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2140, 'María', 'm.j.olivos@gmail.com', NULL, 1, '2015-03-18 23:09:18.181374', '2015-03-18 23:09:18.181374')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2141, 'camila', 'metalvalparaiso@gmail.com', NULL, 1, '2015-03-18 23:09:18.190533', '2015-03-18 23:09:18.190533')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2142, 'Rebeca', 'bekydiaz8@hotmail.com', NULL, 1, '2015-03-18 23:09:18.204430', '2015-03-18 23:09:18.204430')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2143, 'Maria', 'pazrodriguez10@123.cl', NULL, 1, '2015-03-18 23:09:18.214253', '2015-03-18 23:09:18.214253')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2144, 'Constanza', 'coni.cabrera@gmail.com', NULL, 1, '2015-03-18 23:09:18.239545', '2015-03-18 23:09:18.239545')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2145, 'Rosario', 'rosarioperriello@gmail.com', NULL, 1, '2015-03-18 23:09:18.254446', '2015-03-18 23:09:18.254446')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2146, 'Antonio', 'apm@perezmelero.com', NULL, 1, '2015-03-18 23:09:18.263227', '2015-03-18 23:09:18.263227')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2147, 'Cristobal', 'cristobalcalvor@gmail.com', NULL, 1, '2015-03-18 23:09:18.272195', '2015-03-18 23:09:18.272195')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2148, 'macarena', 'macarenaestella@gmail.com', NULL, 1, '2015-03-18 23:09:18.280824', '2015-03-18 23:09:18.280824')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2149, 'Mateusz', 'wisniewski.mateusz@yahoo.com', NULL, 1, '2015-03-18 23:09:18.290577', '2015-03-18 23:09:18.290577')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2150, 'luz', 'cuncunainjapi_989@hotmail.com', NULL, 1, '2015-03-18 23:09:18.303153', '2015-03-18 23:09:18.303153')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2151, 'claudia', 'claudia.contreras.saez@gmail.com', NULL, 1, '2015-03-18 23:09:18.312332', '2015-03-18 23:09:18.312332')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2152, 'angela', 'angelafabregas@gmail.com', NULL, 1, '2015-03-18 23:09:18.321360', '2015-03-18 23:09:18.321360')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2153, 'Daniel', 'pavioloinstru@gmail.com', NULL, 1, '2015-03-18 23:09:18.331106', '2015-03-18 23:09:18.331106')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2154, 'KaKa', 'sepulvedakatia@gmail.com', NULL, 1, '2015-03-18 23:09:18.339747', '2015-03-18 23:09:18.339747')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2155, 'INES', 'inesdirube@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:18.354853', '2015-03-18 23:09:18.354853')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2156, 'Rafael', 'rafaelm-figuereo21@hotmail.com', NULL, 1, '2015-03-18 23:09:18.364055', '2015-03-18 23:09:18.364055')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2157, 'Tomás', 'info@tomasrodriguez.cl', NULL, 1, '2015-03-18 23:09:18.373618', '2015-03-18 23:09:18.373618')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2158, 'Francisco', 'fco_apolo@hotmail.com', NULL, 1, '2015-03-18 23:09:18.382792', '2015-03-18 23:09:18.382792')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2159, 'Joaquin', 'joaquin.mukden@gmail.com', NULL, 1, '2015-03-18 23:09:18.392112', '2015-03-18 23:09:18.392112')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2160, 'Francisco', 'ninaciervo@gmail.com', NULL, 1, '2015-03-18 23:09:18.404337', '2015-03-18 23:09:18.404337')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2161, 'Juan', 'juancarlosa430@gmail.com', NULL, 1, '2015-03-18 23:09:18.413264', '2015-03-18 23:09:18.413264')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2162, 'sergio', 'sergioo_15_15@hotmail.com', NULL, 1, '2015-03-18 23:09:18.423047', '2015-03-18 23:09:18.423047')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2163, 'Magdalena', 'dalais@gmail.com', NULL, 1, '2015-03-18 23:09:18.432294', '2015-03-18 23:09:18.432294')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2164, 'marta', 'contact@martarebora.it', NULL, 1, '2015-03-18 23:09:18.441271', '2015-03-18 23:09:18.441271')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2165, 'Eduardo', 'rosaspintor@gmail.com', NULL, 1, '2015-03-18 23:09:18.453287', '2015-03-18 23:09:18.453287')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2166, 'Mónica', 'monicaflrs8@gmail.com', NULL, 1, '2015-03-18 23:09:18.462441', '2015-03-18 23:09:18.462441')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2167, 'Johanna', 'johia_dellafiori@hotmail.com', NULL, 1, '2015-03-18 23:09:18.471933', '2015-03-18 23:09:18.471933')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2168, 'rodrigo', 'rodundergraff@gmail.com', NULL, 1, '2015-03-18 23:09:18.481140', '2015-03-18 23:09:18.481140')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2169, 'Gustavo', 'gustavolaplaya@gmail.com', NULL, 1, '2015-03-18 23:09:18.490501', '2015-03-18 23:09:18.490501')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2170, 'Álvaro', 'jimenezz@hotmail.com', NULL, 1, '2015-03-18 23:09:18.503261', '2015-03-18 23:09:18.503261')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2171, 'artista', 'robertmorls66@gmail.com', NULL, 1, '2015-03-18 23:09:18.512730', '2015-03-18 23:09:18.512730')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2172, 'artista', 'robertmorls66@hotmail.com', NULL, 1, '2015-03-18 23:09:18.527338', '2015-03-18 23:09:18.527338')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2173, 'Gabriel', 'kamikase3@hotmail.com', NULL, 1, '2015-03-18 23:09:18.538092', '2015-03-18 23:09:18.538092')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2174, 'Tomás', 'andreu@galeriaanimal.com', NULL, 1, '2015-03-18 23:09:18.552901', '2015-03-18 23:09:18.552901')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2175, 'Le', 'felipe_masters@hotmail.com', NULL, 1, '2015-03-18 23:09:18.562120', '2015-03-18 23:09:18.562120')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2176, 'Samantha', 'samykocking@hotmail.com', NULL, 1, '2015-03-18 23:09:18.572689', '2015-03-18 23:09:18.572689')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2177, 'Isabel', 'candplastique@gmail.com', NULL, 1, '2015-03-18 23:09:18.581400', '2015-03-18 23:09:18.581400')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2178, 'alessandra', 'a_merello@hotmail.com', NULL, 1, '2015-03-18 23:09:18.590934', '2015-03-18 23:09:18.590934')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2179, 'Italo', 'iluvatar325@hotmail.com', NULL, 1, '2015-03-18 23:09:18.603440', '2015-03-18 23:09:18.603440')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2180, 'Denisse', 'denisse.bustamante@hotmail.com', NULL, 1, '2015-03-18 23:09:18.613207', '2015-03-18 23:09:18.613207')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2181, 'Belen', 'belenbulgheroni@gmail.com', NULL, 1, '2015-03-18 23:09:18.622425', '2015-03-18 23:09:18.622425')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2182, 'Waltraud', 'info@waltraudmaczassek.com', NULL, 1, '2015-03-18 23:09:18.631903', '2015-03-18 23:09:18.631903')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2183, 'adrian', 'zaines326@gmail.com', NULL, 1, '2015-03-18 23:09:18.688760', '2015-03-18 23:09:18.688760')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2184, 'Gabriel', 'gabriel.abo82@gmail.com', NULL, 1, '2015-03-18 23:09:18.703551', '2015-03-18 23:09:18.703551')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2185, 'Catherine', 'caty.pinto.gutierrez@gmail.com', NULL, 1, '2015-03-18 23:09:18.712520', '2015-03-18 23:09:18.712520')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2186, 'Lennon', 'fxdrako@yahoo.es', NULL, 1, '2015-03-18 23:09:18.721866', '2015-03-18 23:09:18.721866')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2187, 'Alirio', 'alirioinfante15@gmail.com', NULL, 1, '2015-03-18 23:09:18.731917', '2015-03-18 23:09:18.731917')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2188, 'laura', 'rebekatrisot@gmail.com', NULL, 1, '2015-03-18 23:09:18.740674', '2015-03-18 23:09:18.740674')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2189, 'Macarena', 'macatrella@hotmail.com', NULL, 1, '2015-03-18 23:09:18.752456', '2015-03-18 23:09:18.752456')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2190, 'Horacio', 'Hiluxxion@juno.com', NULL, 1, '2015-03-18 23:09:18.763543', '2015-03-18 23:09:18.763543')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2191, 'Constanza', 'conny_ls@hotmail.com', NULL, 1, '2015-03-18 23:09:18.773150', '2015-03-18 23:09:18.773150')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2192, 'JoséCarlos', 'lic.art.vis.exp.foto@live.com.mx', NULL, 1, '2015-03-18 23:09:18.783628', '2015-03-18 23:09:18.783628')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2193, 'Sebastian', 'sebastianpzamora@gmail.com', NULL, 1, '2015-03-18 23:09:18.802715', '2015-03-18 23:09:18.802715')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2194, 'Francisco', 'panchomelo@mac.com', NULL, 1, '2015-03-18 23:09:18.812483', '2015-03-18 23:09:18.812483')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2195, 'Álex', 'jamettvenegas@gmail.com', NULL, 1, '2015-03-18 23:09:18.843079', '2015-03-18 23:09:18.843079')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2196, 'felipe', 'recuperaelsilencio10@gmail.com', NULL, 1, '2015-03-18 23:09:18.853623', '2015-03-18 23:09:18.853623')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2197, 'Irina', 'artesirina@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:18.863778', '2015-03-18 23:09:18.863778')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2198, 'Paula', 'paulavltaller@gmail.com', NULL, 1, '2015-03-18 23:09:18.889704', '2015-03-18 23:09:18.889704')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2199, 'Stephanie', 'stephanievmc@hotmail.com', NULL, 1, '2015-03-18 23:09:18.902769', '2015-03-18 23:09:18.902769')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2200, 'Monica', 'perezmoni@gmail.com', NULL, 1, '2015-03-18 23:09:18.913578', '2015-03-18 23:09:18.913578')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2201, 'Daniela', 'daniela.walker.f@gmail.com', NULL, 1, '2015-03-18 23:09:18.923584', '2015-03-18 23:09:18.923584')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2202, 'Feliberto', 'elkcon13@hotmail.com', NULL, 1, '2015-03-18 23:09:18.932818', '2015-03-18 23:09:18.932818')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2203, 'Suyai', 'suyaiota@gmail.com', NULL, 1, '2015-03-18 23:09:18.976342', '2015-03-18 23:09:18.976342')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2204, 'julio', 'neoprotoconceptual@gmail.com', NULL, 1, '2015-03-18 23:09:18.990714', '2015-03-18 23:09:18.990714')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2205, 'Claudio', 'ccxxs@hotmail.com', NULL, 1, '2015-03-18 23:09:19.001730', '2015-03-18 23:09:19.001730')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2206, 'maría', 'mluzcovarrubias@gmail.com', NULL, 1, '2015-03-18 23:09:19.010415', '2015-03-18 23:09:19.010415')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2207, 'Andrea', 'starkahbl@hotmail.com', NULL, 1, '2015-03-18 23:09:19.020605', '2015-03-18 23:09:19.020605')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2208, 'gustavo', 'gustavrios@hotmail.com', NULL, 1, '2015-03-18 23:09:19.079780', '2015-03-18 23:09:19.079780')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2209, 'Jose', 'joserafael_cch@hotmail.com', NULL, 1, '2015-03-18 23:09:19.091713', '2015-03-18 23:09:19.091713')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2210, 'PAULINA', 'paulinaw1@gmail.com', NULL, 1, '2015-03-18 23:09:19.101368', '2015-03-18 23:09:19.101368')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2211, 'Silvia', 'marquezpease@att.net', NULL, 1, '2015-03-18 23:09:19.111045', '2015-03-18 23:09:19.111045')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2212, 'flor', 'rincondelarte@hotmail.com', NULL, 1, '2015-03-18 23:09:19.136535', '2015-03-18 23:09:19.136535')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2213, 'pablo', 'pabloregalante@hotmail.com', NULL, 1, '2015-03-18 23:09:19.147263', '2015-03-18 23:09:19.147263')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2214, 'Maria', 'fernanda.pringles@hotmail.com', NULL, 1, '2015-03-18 23:09:19.180638', '2015-03-18 23:09:19.180638')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2215, 'Tulio', 'tulioperaza@yahoo.it', NULL, 1, '2015-03-18 23:09:19.192081', '2015-03-18 23:09:19.192081')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2216, 'Matías', 'matiasacuna.cl@gmail.com', NULL, 1, '2015-03-18 23:09:19.222289', '2015-03-18 23:09:19.222289')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2217, 'vicente', 'dagas969@hotmail.com', NULL, 1, '2015-03-18 23:09:19.235530', '2015-03-18 23:09:19.235530')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2218, 'Thomas', 'tomk32@gmx.de', NULL, 1, '2015-03-18 23:09:19.281924', '2015-03-18 23:09:19.281924')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2219, 'camilo', '3colores@gmail.com', NULL, 1, '2015-03-18 23:09:19.300854', '2015-03-18 23:09:19.300854')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2220, 'Mauricio', 'mostornol@osku.cl', NULL, 1, '2015-03-18 23:09:19.331691', '2015-03-18 23:09:19.331691')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2221, 'alexander', 'ale.legar@hotmail.com', NULL, 1, '2015-03-18 23:09:19.345790', '2015-03-18 23:09:19.345790')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2222, 'ValBD', 'respirovisual@gmail.com', NULL, 1, '2015-03-18 23:09:19.355505', '2015-03-18 23:09:19.355505')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2223, 'charly', 'charlot1935@hotmail.com', NULL, 1, '2015-03-18 23:09:19.365002', '2015-03-18 23:09:19.365002')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2224, 'Mauro', 'mpescev@gmail.com', NULL, 1, '2015-03-18 23:09:19.384613', '2015-03-18 23:09:19.384613')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2225, 'Yoya', 'yoya.zamora.manzur@gmail.com', NULL, 1, '2015-03-18 23:09:19.393666', '2015-03-18 23:09:19.393666')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2226, 'JUAN', 'elmerello@gmail.com', NULL, 1, '2015-03-18 23:09:19.402968', '2015-03-18 23:09:19.402968')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2227, 'Elicio', 'martinezcorcueraelicio@yahoo.es', NULL, 1, '2015-03-18 23:09:19.413371', '2015-03-18 23:09:19.413371')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2228, 'DGKarlaKano', 'cancanxoxo@hotmail.com', NULL, 1, '2015-03-18 23:09:19.424110', '2015-03-18 23:09:19.424110')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2229, 'olga', 'olgalu_1020@hotmail.com', NULL, 1, '2015-03-18 23:09:19.446538', '2015-03-18 23:09:19.446538')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2230, 'Paola', 'zukujnomo@hotmail.com', NULL, 1, '2015-03-18 23:09:19.473521', '2015-03-18 23:09:19.473521')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2231, 'René', 'sr.antipirina@gmail.com', NULL, 1, '2015-03-18 23:09:19.491958', '2015-03-18 23:09:19.491958')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2232, 'Miguel', 'mra_mexicano@hotmail.com', NULL, 1, '2015-03-18 23:09:19.502718', '2015-03-18 23:09:19.502718')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2233, 'iri', 'yo_nunca@hotmail.com', NULL, 1, '2015-03-18 23:09:19.512217', '2015-03-18 23:09:19.512217')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2234, 'Abril', 'abrilmontealegre@hotmail.com', NULL, 1, '2015-03-18 23:09:19.521713', '2015-03-18 23:09:19.521713')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2235, 'Jorge', 'nammaste@gmail.com', NULL, 1, '2015-03-18 23:09:19.593344', '2015-03-18 23:09:19.593344')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2236, 'Paola', 'paolavergottini@hotmail.com', NULL, 1, '2015-03-18 23:09:19.622038', '2015-03-18 23:09:19.622038')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2237, 'celso', 'celsotrufel@hotmail.com', NULL, 1, '2015-03-18 23:09:19.637937', '2015-03-18 23:09:19.637937')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2238, 'EDGARD', 'edgardgamboa@hotmail.com', NULL, 1, '2015-03-18 23:09:19.650911', '2015-03-18 23:09:19.650911')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2239, 'alejandra', 'alenubu@hotmail.com', NULL, 1, '2015-03-18 23:09:19.660678', '2015-03-18 23:09:19.660678')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2240, 'HUBERT', 'hubertcano@yahoo.com', NULL, 1, '2015-03-18 23:09:19.669201', '2015-03-18 23:09:19.669201')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2241, 'Greg', 'gredwest27@yahoo.com.ve', NULL, 1, '2015-03-18 23:09:19.679484', '2015-03-18 23:09:19.679484')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2242, 'Nelly', 'nellyjosefina.go@gmail.com', NULL, 1, '2015-03-18 23:09:19.688811', '2015-03-18 23:09:19.688811')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2243, 'Ximena', 'xitalope@hotmail.com', NULL, 1, '2015-03-18 23:09:19.701163', '2015-03-18 23:09:19.701163')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2244, 'miguel', 'mmolinasaldivia@gmail.com', NULL, 1, '2015-03-18 23:09:19.712389', '2015-03-18 23:09:19.712389')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2245, 'Andrés', 'lihnterna@hotmail.com', NULL, 1, '2015-03-18 23:09:19.724190', '2015-03-18 23:09:19.724190')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2246, 'Helena', 'helena.helenahlm@gmail.com', NULL, 1, '2015-03-18 23:09:19.734474', '2015-03-18 23:09:19.734474')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2247, 'Jose', 'j.castillo.norambuena@gmail.com', NULL, 1, '2015-03-18 23:09:19.750500', '2015-03-18 23:09:19.750500')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2248, 'Alejandro', 'ayurac@mclarens.cl', NULL, 1, '2015-03-18 23:09:19.773960', '2015-03-18 23:09:19.773960')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2249, 'Diego', 'diego.celedon@gmail.com', NULL, 1, '2015-03-18 23:09:19.784324', '2015-03-18 23:09:19.784324')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2250, 'Roberto', 'robobertobmc@hotmail.com', NULL, 1, '2015-03-18 23:09:19.799964', '2015-03-18 23:09:19.799964')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2251, 'Rodrigo', 'rodver.89@gmail.com', NULL, 1, '2015-03-18 23:09:19.809444', '2015-03-18 23:09:19.809444')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2252, 'Rodrigo', 'rgarcia@duratex.com.mx', NULL, 1, '2015-03-18 23:09:19.817732', '2015-03-18 23:09:19.817732')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2253, 'Isabel', 'isabel@thebraun.com', NULL, 1, '2015-03-18 23:09:19.826827', '2015-03-18 23:09:19.826827')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2254, 'Ender', 'isrodriguez44@gmail.com', NULL, 1, '2015-03-18 23:09:19.836141', '2015-03-18 23:09:19.836141')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2255, 'mane', 'mariainesmoragam@gmail.com', NULL, 1, '2015-03-18 23:09:19.849955', '2015-03-18 23:09:19.849955')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2256, 'Juan', 'juanjoselizama@gmail.com', NULL, 1, '2015-03-18 23:09:19.913298', '2015-03-18 23:09:19.913298')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2257, 'Ramiro', 'rpeonveiga@gmail.com', NULL, 1, '2015-03-18 23:09:19.934297', '2015-03-18 23:09:19.934297')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2258, 'David', 'Lecktor_8AD@hotmail.com', NULL, 1, '2015-03-18 23:09:19.965802', '2015-03-18 23:09:19.965802')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2259, 'yiyi', 'yiyizak@gmail.com', NULL, 1, '2015-03-18 23:09:19.995178', '2015-03-18 23:09:19.995178')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2260, 'rosaria', 'sdesigner@virgilio.it', NULL, 1, '2015-03-18 23:09:20.019855', '2015-03-18 23:09:20.019855')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2261, 'Eduardo', 'eduardozepeda@hotmail.com', NULL, 1, '2015-03-18 23:09:20.045567', '2015-03-18 23:09:20.045567')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2262, '©THE', 'ceballalex@hotmail.com', NULL, 1, '2015-03-18 23:09:20.070905', '2015-03-18 23:09:20.070905')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2263, 'Francisco', 'francisco.sanchu15@gmail.com', NULL, 1, '2015-03-18 23:09:20.101715', '2015-03-18 23:09:20.101715')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2264, 'cristobal', 'manray75@hotmail.com', NULL, 1, '2015-03-18 23:09:20.134293', '2015-03-18 23:09:20.134293')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2265, 'LANDRY', 'danny.landry@gmail.com', NULL, 1, '2015-03-18 23:09:20.161117', '2015-03-18 23:09:20.161117')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2266, 'ricardo', 'contacto@graficamaxva.cl', NULL, 1, '2015-03-18 23:09:20.191018', '2015-03-18 23:09:20.191018')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2267, 'Leslie', 'meriyeim@gmail.com', NULL, 1, '2015-03-18 23:09:20.219440', '2015-03-18 23:09:20.219440')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2268, 'miguel', 'miguel.gamboahuerta@gmail.com', NULL, 1, '2015-03-18 23:09:20.233929', '2015-03-18 23:09:20.233929')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2269, 'jorge', 'rossearquitecto@hotmail.com', NULL, 1, '2015-03-18 23:09:20.265236', '2015-03-18 23:09:20.265236')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2270, 'Victor', 'vitorius7@yahoo.com', NULL, 1, '2015-03-18 23:09:20.276113', '2015-03-18 23:09:20.276113')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2271, 'Amaranta', 'amaranta.espinoza@gmail.com', NULL, 1, '2015-03-18 23:09:20.348620', '2015-03-18 23:09:20.348620')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2272, 'Musa', 'arturomusa@hotmail.com', NULL, 1, '2015-03-18 23:09:20.379890', '2015-03-18 23:09:20.379890')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2273, 'Ernesto', 'buitredelespacio@hotmail.com', NULL, 1, '2015-03-18 23:09:20.496291', '2015-03-18 23:09:20.496291')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2274, 'Italo', 'interruptorno@gmail.com', NULL, 1, '2015-03-18 23:09:20.506286', '2015-03-18 23:09:20.506286')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2275, 'Jimena', 'jimena.villaseca@gmail.com', NULL, 1, '2015-03-18 23:09:20.515222', '2015-03-18 23:09:20.515222')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2276, 'Claudio', 'claudiografic@yahoo.com', NULL, 1, '2015-03-18 23:09:20.525271', '2015-03-18 23:09:20.525271')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2277, 'ARTESANO', 'castillocamposjuan@gmail.com', NULL, 1, '2015-03-18 23:09:20.534182', '2015-03-18 23:09:20.534182')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2278, 'juan', 'juank_0516@gmail.com', NULL, 1, '2015-03-18 23:09:20.548189', '2015-03-18 23:09:20.548189')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2279, 'César', 'cesar_ko@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:20.558140', '2015-03-18 23:09:20.558140')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2280, 'martha', 'mitasoto@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:20.578595', '2015-03-18 23:09:20.578595')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2281, 'Verónica', 'veronica.comino@gmail.com', NULL, 1, '2015-03-18 23:09:20.601271', '2015-03-18 23:09:20.601271')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2282, 'Ignacio', 'tallermarchant@gmail.com', NULL, 1, '2015-03-18 23:09:20.629238', '2015-03-18 23:09:20.629238')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2283, 'Cata', 'catavegaphotos@gmail.com', NULL, 1, '2015-03-18 23:09:20.648101', '2015-03-18 23:09:20.648101')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2284, 'silvina', 'nellarpavesio@fibertel.com.ar', NULL, 1, '2015-03-18 23:09:20.657141', '2015-03-18 23:09:20.657141')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2285, 'luis', 'acrio_2008@hotmail.com', NULL, 1, '2015-03-18 23:09:20.666735', '2015-03-18 23:09:20.666735')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2286, 'Hugo', 'infohugortiz@gmail.com', NULL, 1, '2015-03-18 23:09:20.675527', '2015-03-18 23:09:20.675527')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2287, 'calin', 'calinutigret@yahoo.com', NULL, 1, '2015-03-18 23:09:20.684394', '2015-03-18 23:09:20.684394')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2288, 'Juan', 'ampuero.juancarlos@gmail.com', NULL, 1, '2015-03-18 23:09:20.698467', '2015-03-18 23:09:20.698467')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2289, 'Maria', 'marust09@gmail.com', NULL, 1, '2015-03-18 23:09:20.707652', '2015-03-18 23:09:20.707652')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2290, 'antonieta', 'antonietarrpp@gmail.com', NULL, 1, '2015-03-18 23:09:20.719730', '2015-03-18 23:09:20.719730')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2291, 'Sergio', 'chechonouvel@gmail.com', NULL, 1, '2015-03-18 23:09:20.729227', '2015-03-18 23:09:20.729227')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2292, 'Magdalena', 'maida.yolin@gmail.com', NULL, 1, '2015-03-18 23:09:20.748171', '2015-03-18 23:09:20.748171')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2293, 'Hayfer', 'hayferbrea@gmail.com', NULL, 1, '2015-03-18 23:09:20.757928', '2015-03-18 23:09:20.757928')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2294, 'Ara', 'arakoshiro@gmail.com', NULL, 1, '2015-03-18 23:09:20.779109', '2015-03-18 23:09:20.779109')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2295, 'emilio', 'eethit@hotmail.com', NULL, 1, '2015-03-18 23:09:20.798827', '2015-03-18 23:09:20.798827')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2296, 'estela', 'estela@artedelvalle.cl', NULL, 1, '2015-03-18 23:09:20.812536', '2015-03-18 23:09:20.812536')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2297, 'estela', 'esteladelvalle@gmail.com', NULL, 1, '2015-03-18 23:09:20.840595', '2015-03-18 23:09:20.840595')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2298, 'Yolanda', 'infoyolandavela@gmail.com', NULL, 1, '2015-03-18 23:09:20.852237', '2015-03-18 23:09:20.852237')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2299, 'Alfredo', 'rojas.alfredo@tie.cl', NULL, 1, '2015-03-18 23:09:20.860995', '2015-03-18 23:09:20.860995')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2300, 'o', 'cristina.coello@gmail.com', NULL, 1, '2015-03-18 23:09:20.877026', '2015-03-18 23:09:20.877026')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2301, 'Soledad', 'm.soledad.sairafi@gmail.com', NULL, 1, '2015-03-18 23:09:20.887119', '2015-03-18 23:09:20.887119')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2302, 'Ana', 'animiranda@mirandaqiuiroz.cl', NULL, 1, '2015-03-18 23:09:20.898842', '2015-03-18 23:09:20.898842')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2303, 'Antonio', 'antoniogalazm@gmail.com', NULL, 1, '2015-03-18 23:09:20.980483', '2015-03-18 23:09:20.980483')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2304, 'Elena', 'elena.erre@hotmail.com', NULL, 1, '2015-03-18 23:09:21.002606', '2015-03-18 23:09:21.002606')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2305, 'diego', 'diego.tejada.gamboa@gmail.com', NULL, 1, '2015-03-18 23:09:21.029930', '2015-03-18 23:09:21.029930')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2306, 'Antonia', 'antoniaarriagada@gmail.com', NULL, 1, '2015-03-18 23:09:21.047331', '2015-03-18 23:09:21.047331')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2307, 'Karina', 'billa_arquitecto@yahoo.cl', NULL, 1, '2015-03-18 23:09:21.056939', '2015-03-18 23:09:21.056939')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2308, 'Fernando', 'contacto@waldenuno.es', NULL, 1, '2015-03-18 23:09:21.066147', '2015-03-18 23:09:21.066147')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2309, 'Sebastián', 'sbaudrand@gmail.com', NULL, 1, '2015-03-18 23:09:21.075150', '2015-03-18 23:09:21.075150')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2310, 'manuel', 'bizarredream2002@hotmail.com', NULL, 1, '2015-03-18 23:09:21.084935', '2015-03-18 23:09:21.084935')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2311, 'Juana', 'juanade_22@hotmail.com', NULL, 1, '2015-03-18 23:09:21.104682', '2015-03-18 23:09:21.104682')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2312, 'ronnie', 'ronniematteorodriguez@gmail.com', NULL, 1, '2015-03-18 23:09:21.115340', '2015-03-18 23:09:21.115340')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2313, 'Joaquin', 'maldok@hotmail.com', NULL, 1, '2015-03-18 23:09:21.124936', '2015-03-18 23:09:21.124936')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2314, 'Guillermo', 'guillermomunoz@live.cl', NULL, 1, '2015-03-18 23:09:21.148952', '2015-03-18 23:09:21.148952')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2315, 'Nicolás', 'nicolasbasaure84@gmail.com', NULL, 1, '2015-03-18 23:09:21.184533', '2015-03-18 23:09:21.184533')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2316, 'andres', 'peralta.andres@gmail.com', NULL, 1, '2015-03-18 23:09:21.205496', '2015-03-18 23:09:21.205496')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2317, 'maria', 'bustamante.olguin@gmail.com', NULL, 1, '2015-03-18 23:09:21.234168', '2015-03-18 23:09:21.234168')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2318, 'Constanza', 'mcbricen@gmail.com', NULL, 1, '2015-03-18 23:09:21.254045', '2015-03-18 23:09:21.254045')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2319, 'JAIME', 'Posa.artista@gmail.com', NULL, 1, '2015-03-18 23:09:21.276246', '2015-03-18 23:09:21.276246')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2320, 'Etienne', 'e.cristoffanini@gmail.com', NULL, 1, '2015-03-18 23:09:21.292664', '2015-03-18 23:09:21.292664')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2321, 'jael', 'jaelverdugo@gmail.com', NULL, 1, '2015-03-18 23:09:21.321455', '2015-03-18 23:09:21.321455')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2322, 'Rodrigo', 'rodrigo@zamora.cl', NULL, 1, '2015-03-18 23:09:21.331893', '2015-03-18 23:09:21.331893')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2323, 'Abril', 'abrilandrade@yahoo.com', NULL, 1, '2015-03-18 23:09:21.346979', '2015-03-18 23:09:21.346979')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2324, 'Marlena', 'marlena.prez@hotmail.com', NULL, 1, '2015-03-18 23:09:21.357328', '2015-03-18 23:09:21.357328')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2325, 'lino', 'cazador-de-dioses@hotmail.com', NULL, 1, '2015-03-18 23:09:21.367328', '2015-03-18 23:09:21.367328')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2326, 'Carlos', 'carlos.marti@itelefonica.com.br', NULL, 1, '2015-03-18 23:09:21.377145', '2015-03-18 23:09:21.377145')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2327, 'Danae', 'sexo-pudor-y-donas@hotmail.com', NULL, 1, '2015-03-18 23:09:21.403376', '2015-03-18 23:09:21.403376')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2328, 'RODRIGO', 'RODRIGO_COMICS@HOTMAIL.COM', NULL, 1, '2015-03-18 23:09:21.413326', '2015-03-18 23:09:21.413326')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2329, 'mario', 'm_sanchez200@yahoo.es', NULL, 1, '2015-03-18 23:09:21.440357', '2015-03-18 23:09:21.440357')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2330, 'memmo', 'lillollillo@libero.it', NULL, 1, '2015-03-18 23:09:21.459734', '2015-03-18 23:09:21.459734')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2331, 'RUFO', 'rufo_milfuegos@hotmail.com', NULL, 1, '2015-03-18 23:09:21.470308', '2015-03-18 23:09:21.470308')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2332, 'patricio', 'anibal.osses@gmail.com', NULL, 1, '2015-03-18 23:09:21.496423', '2015-03-18 23:09:21.496423')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2333, 'Carlos', 'aeroc27@hotmail.com', NULL, 1, '2015-03-18 23:09:21.505732', '2015-03-18 23:09:21.505732')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2334, 'florencia', 'flore.montero@gmail.com', NULL, 1, '2015-03-18 23:09:21.534230', '2015-03-18 23:09:21.534230')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2335, 'silvina', 'silvinagardonio@gmail.com', NULL, 1, '2015-03-18 23:09:22.282268', '2015-03-18 23:09:22.282268')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2336, 'Nathalie', 'nathalieniniel@gmail.com', NULL, 1, '2015-03-18 23:09:22.370697', '2015-03-18 23:09:22.370697')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2337, 'Daniela', 'pequisbaldo@gmail.com', NULL, 1, '2015-03-18 23:09:22.381684', '2015-03-18 23:09:22.381684')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2338, 'naheda', 'ladama64@hotmail.com', NULL, 1, '2015-03-18 23:09:22.391843', '2015-03-18 23:09:22.391843')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2339, 'Paula', 'paulatsb@terra.cl', NULL, 1, '2015-03-18 23:09:22.401355', '2015-03-18 23:09:22.401355')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2340, 'GIULIANO', 'zampezeatelier@gmail.com', NULL, 1, '2015-03-18 23:09:22.428299', '2015-03-18 23:09:22.428299')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2341, 'matilda', 'matildaz70@hotmail.com', NULL, 1, '2015-03-18 23:09:22.437376', '2015-03-18 23:09:22.437376')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2342, 'Roberto', 'robertodgiusti@hotmail.com', NULL, 1, '2015-03-18 23:09:22.447371', '2015-03-18 23:09:22.447371')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2343, 'Gonzalo', 'lost.beat@gmail.com', NULL, 1, '2015-03-18 23:09:22.456918', '2015-03-18 23:09:22.456918')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2344, 'Constanza', 'coni.blen@hotmail.com', NULL, 1, '2015-03-18 23:09:22.465582', '2015-03-18 23:09:22.465582')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2345, 'Jorge', 'jlabarca@vtr.net', NULL, 1, '2015-03-18 23:09:22.478027', '2015-03-18 23:09:22.478027')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2346, 'cristian', 'cgvidalopez@hotmail.com', NULL, 1, '2015-03-18 23:09:22.487085', '2015-03-18 23:09:22.487085')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2347, 'varticeanu', 'artalin@list.ru', NULL, 1, '2015-03-18 23:09:22.495877', '2015-03-18 23:09:22.495877')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2348, 'varticeanu', 'alin.777@maill.ru', NULL, 1, '2015-03-18 23:09:22.834868', '2015-03-18 23:09:22.834868')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2349, 'CARLOS', 'ccares@gmail.com', NULL, 1, '2015-03-18 23:09:23.027523', '2015-03-18 23:09:23.027523')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2350, 'sancancino', 'cancinosilva.san@gmail.com', NULL, 1, '2015-03-18 23:09:23.036861', '2015-03-18 23:09:23.036861')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2351, 'Roberto', 'rogonma.81@hotmail.com', NULL, 1, '2015-03-18 23:09:23.046624', '2015-03-18 23:09:23.046624')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2352, 'yuricel', 'yuricelm@gmail.com', NULL, 1, '2015-03-18 23:09:23.055576', '2015-03-18 23:09:23.055576')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2353, 'Miguel', 'circoatellier@gmail.com', NULL, 1, '2015-03-18 23:09:23.064807', '2015-03-18 23:09:23.064807')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2354, 'diego', 'masescultura@gmail.com', NULL, 1, '2015-03-18 23:09:23.075744', '2015-03-18 23:09:23.075744')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2355, 'Roberta', 'roberta.requena@gmail.com', NULL, 1, '2015-03-18 23:09:23.084981', '2015-03-18 23:09:23.084981')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2356, 'Francisca', 'tiscaserigrafia@gmail.com', NULL, 1, '2015-03-18 23:09:23.094300', '2015-03-18 23:09:23.094300')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2357, 'Nestor', 'ncabello@hotmail.com', NULL, 1, '2015-03-18 23:09:23.102775', '2015-03-18 23:09:23.102775')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2358, 'Tomás', 'ottoclowns@yahoo.es', NULL, 1, '2015-03-18 23:09:23.111969', '2015-03-18 23:09:23.111969')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2359, 'Camila', 'kmilabr@gmail.com', NULL, 1, '2015-03-18 23:09:23.125245', '2015-03-18 23:09:23.125245')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2360, 'Andrea', 'abalvare@uc.cl', NULL, 1, '2015-03-18 23:09:23.134502', '2015-03-18 23:09:23.134502')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2361, 'christian', 'demati96@hotmail.es', NULL, 1, '2015-03-18 23:09:23.143562', '2015-03-18 23:09:23.143562')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2362, 'Juan', 'juan_antes@hotmail.com', NULL, 1, '2015-03-18 23:09:23.152270', '2015-03-18 23:09:23.152270')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2363, 'Carlos', 'carlos.marti@bol.com.br', NULL, 1, '2015-03-18 23:09:23.160742', '2015-03-18 23:09:23.160742')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2364, 'Ingrid', 'iimirandad@gmail.com', NULL, 1, '2015-03-18 23:09:23.175490', '2015-03-18 23:09:23.175490')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2365, 'maurocarvajal', 'maurocarvajal74@gmail.com', NULL, 1, '2015-03-18 23:09:23.185048', '2015-03-18 23:09:23.185048')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2366, 'Cynthia', 'cinti.pas@hotmail.com', NULL, 1, '2015-03-18 23:09:23.193769', '2015-03-18 23:09:23.193769')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2367, 'Eugenia', 'mirandaeugenia@yahoo.es', NULL, 1, '2015-03-18 23:09:23.202255', '2015-03-18 23:09:23.202255')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2368, 'Jhoffre', 'coffre28@hotmail.com', NULL, 1, '2015-03-18 23:09:23.211193', '2015-03-18 23:09:23.211193')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2369, 'maria', 'mariagiljirado@hotmail.com', NULL, 1, '2015-03-18 23:09:23.225761', '2015-03-18 23:09:23.225761')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2370, 'jesus', 'jesusversusjesus@gmail.com', NULL, 1, '2015-03-18 23:09:23.234283', '2015-03-18 23:09:23.234283')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2371, 'Ruben', 'lartigue22@hotmail.com', NULL, 1, '2015-03-18 23:09:23.243433', '2015-03-18 23:09:23.243433')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2372, 'cristobal', 'lemort.art@gmail.com', NULL, 1, '2015-03-18 23:09:23.251794', '2015-03-18 23:09:23.251794')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2373, 'Stanislav', 'stanislav.batalov.art@gmail.com', NULL, 1, '2015-03-18 23:09:23.260716', '2015-03-18 23:09:23.260716')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2374, 'Conchita', 'conchitamedina_49@hotmail.com', NULL, 1, '2015-03-18 23:09:23.275248', '2015-03-18 23:09:23.275248')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2375, 'juan', 'juvasque@gmail.com', NULL, 1, '2015-03-18 23:09:23.284694', '2015-03-18 23:09:23.284694')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2376, 'felipe', 'felipegalazpacheco@gmail.com', NULL, 1, '2015-03-18 23:09:23.293631', '2015-03-18 23:09:23.293631')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2377, 'Miguel', 'letra.usada@gmail.com', NULL, 1, '2015-03-18 23:09:23.302935', '2015-03-18 23:09:23.302935')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2378, 'meditativa', 'meditativa@hotmail.com', NULL, 1, '2015-03-18 23:09:23.312180', '2015-03-18 23:09:23.312180')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2379, 'Juan', 'juanmege@gmail.com', NULL, 1, '2015-03-18 23:09:23.326131', '2015-03-18 23:09:23.326131')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2380, 'Elsa', 'dhsb01@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:23.334915', '2015-03-18 23:09:23.334915')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2381, 'Graciela', 'dhuerta@vyh-sistemas.com.ar', NULL, 1, '2015-03-18 23:09:23.343681', '2015-03-18 23:09:23.343681')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2382, 'Sergio', 'sergio_e_v@hotmail.com', NULL, 1, '2015-03-18 23:09:23.353191', '2015-03-18 23:09:23.353191')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2383, 'arte', 'arteisabelaninat@gmail.com', NULL, 1, '2015-03-18 23:09:23.363249', '2015-03-18 23:09:23.363249')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2384, 'Maria', 'mariaignaciafell@gmail.com', NULL, 1, '2015-03-18 23:09:23.375186', '2015-03-18 23:09:23.375186')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2385, 'Franco', 'drakemarinafrance@yahoo.fr', NULL, 1, '2015-03-18 23:09:23.383640', '2015-03-18 23:09:23.383640')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2386, 'Manuel', 'manuparrasensi@gmail.com', NULL, 1, '2015-03-18 23:09:23.393691', '2015-03-18 23:09:23.393691')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2387, 'Millaray', 'millarayv@gmail.com', NULL, 1, '2015-03-18 23:09:23.402935', '2015-03-18 23:09:23.402935')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2388, 'adriana', 'kruzarte@gmail.com', NULL, 1, '2015-03-18 23:09:23.412239', '2015-03-18 23:09:23.412239')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2389, 'MARIA', 'mjose.miranda.jara@gmail.com', NULL, 1, '2015-03-18 23:09:23.424788', '2015-03-18 23:09:23.424788')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2390, 'Maite', 'maite.awad@gmail.com', NULL, 1, '2015-03-18 23:09:23.434553', '2015-03-18 23:09:23.434553')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2391, 'Gisela', 'g.verdessi@gmail.com', NULL, 1, '2015-03-18 23:09:23.443666', '2015-03-18 23:09:23.443666')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2392, 'Camila', 'camilalobosd@gmail.com', NULL, 1, '2015-03-18 23:09:23.453141', '2015-03-18 23:09:23.453141')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2393, 'Rodrigo', 'rodrigobelloz@gmail.com', NULL, 1, '2015-03-18 23:09:23.462256', '2015-03-18 23:09:23.462256')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2394, 'Carlo', 'arte/cota@yahoo.es', NULL, 1, '2015-03-18 23:09:23.475469', '2015-03-18 23:09:23.475469')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2395, 'wilson', 'sociolegista.w@gmail.com', NULL, 1, '2015-03-18 23:09:23.485192', '2015-03-18 23:09:23.485192')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2396, 'Samuel', 'samueltoro@gmail.com', NULL, 1, '2015-03-18 23:09:23.493718', '2015-03-18 23:09:23.493718')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2397, 'Edith', 'abrasivo@gmail.com', NULL, 1, '2015-03-18 23:09:23.503156', '2015-03-18 23:09:23.503156')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2398, 'Alejandra', 'azermeno@alejandrazermeno.com', NULL, 1, '2015-03-18 23:09:23.512176', '2015-03-18 23:09:23.512176')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2399, 'daniel', 'danieldepix@gmail.com', NULL, 1, '2015-03-18 23:09:23.524755', '2015-03-18 23:09:23.524755')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2400, 'Guillermo', 'gguillermogonzalez@gmail.com', NULL, 1, '2015-03-18 23:09:23.533772', '2015-03-18 23:09:23.533772')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2401, 'raiza', 'lamaslinda1523@hotmail.com', NULL, 1, '2015-03-18 23:09:23.542869', '2015-03-18 23:09:23.542869')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2402, 'Cristobal', 'cristobal.villanueva@gmail.com', NULL, 1, '2015-03-18 23:09:23.552233', '2015-03-18 23:09:23.552233')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2403, 'Angélica', 'angelicasanchez@live.com.mx', NULL, 1, '2015-03-18 23:09:23.561499', '2015-03-18 23:09:23.561499')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2404, 'Zara', 'zaratrejointeriores@gmail.com', NULL, 1, '2015-03-18 23:09:23.574237', '2015-03-18 23:09:23.574237')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2405, 'Nicky', 'nickychiarello@gmail.com', NULL, 1, '2015-03-18 23:09:23.582914', '2015-03-18 23:09:23.582914')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2406, 'Daniel', 'dagaf79@gmail.com', NULL, 1, '2015-03-18 23:09:23.592350', '2015-03-18 23:09:23.592350')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2407, 'Sergio', 'aguilarios@gmail.com', NULL, 1, '2015-03-18 23:09:23.602023', '2015-03-18 23:09:23.602023')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2408, 'adriana', 'kruznana@gmail.com', NULL, 1, '2015-03-18 23:09:23.610961', '2015-03-18 23:09:23.610961')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2409, 'carlos', 'carlosmir22@hotmail.com', NULL, 1, '2015-03-18 23:09:23.624109', '2015-03-18 23:09:23.624109')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2410, 'c', 'carlosmir@carlosmir.com', NULL, 1, '2015-03-18 23:09:23.633261', '2015-03-18 23:09:23.633261')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2411, 'Ibar', 'ibar_laserena@hotmail.com', NULL, 1, '2015-03-18 23:09:23.642012', '2015-03-18 23:09:23.642012')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2412, 'Francisco', 'panxo.kandalaft@hotmail.com', NULL, 1, '2015-03-18 23:09:23.652010', '2015-03-18 23:09:23.652010')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2413, 'arnaldo', 'arnaldocarrascovergara@gmail.com', NULL, 1, '2015-03-18 23:09:23.661203', '2015-03-18 23:09:23.661203')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2414, 'pol', 'hola@pollion7.com', NULL, 1, '2015-03-18 23:09:23.675134', '2015-03-18 23:09:23.675134')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2415, 'Daniela', 'arcillablanca@gmail.com', NULL, 1, '2015-03-18 23:09:23.684450', '2015-03-18 23:09:23.684450')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2416, 'GREGORIO', 'acwiwari@hotmail.com', NULL, 1, '2015-03-18 23:09:23.693819', '2015-03-18 23:09:23.693819')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2417, 'David', 'vichideleon@hotmail.com', NULL, 1, '2015-03-18 23:09:23.703368', '2015-03-18 23:09:23.703368')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2418, 'Rattha', 'ratthagallery@gmail.com', NULL, 1, '2015-03-18 23:09:23.712839', '2015-03-18 23:09:23.712839')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2419, 'Isabel', 'isabelfabiola@gmail.com', NULL, 1, '2015-03-18 23:09:23.740191', '2015-03-18 23:09:23.740191')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2420, 'Natalia', 'betancourt.beta@gmail.com', NULL, 1, '2015-03-18 23:09:23.753955', '2015-03-18 23:09:23.753955')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2421, 'Julio', 'afretme@live.cl', NULL, 1, '2015-03-18 23:09:23.766175', '2015-03-18 23:09:23.766175')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2422, 'Deysi', 'mafalda623@hotmail.com', NULL, 1, '2015-03-18 23:09:23.777147', '2015-03-18 23:09:23.777147')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2423, 'Natalia', 'dosmascinco@gmail.com', NULL, 1, '2015-03-18 23:09:23.787105', '2015-03-18 23:09:23.787105')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2424, 'P.', 'pcatalina.va@gmail.com', NULL, 1, '2015-03-18 23:09:23.796626', '2015-03-18 23:09:23.796626')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2425, 'Marie', 'maecarlsson6@hotmail.com', NULL, 1, '2015-03-18 23:09:23.806350', '2015-03-18 23:09:23.806350')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2426, 'ANTONELA', 'antonelafrancesia@hotmail.com', NULL, 1, '2015-03-18 23:09:23.909873', '2015-03-18 23:09:23.909873')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2427, 'Isidora', 'issy.rtg@gmail.com', NULL, 1, '2015-03-18 23:09:23.919143', '2015-03-18 23:09:23.919143')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2428, 'patricio', 'guerra2254@yahoo.com', NULL, 1, '2015-03-18 23:09:23.942040', '2015-03-18 23:09:23.942040')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2429, 'cesar', 'cjmecanics@hotmail.com', NULL, 1, '2015-03-18 23:09:23.957528', '2015-03-18 23:09:23.957528')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2430, 'Pablo', 'goldenpe@gmail.com', NULL, 1, '2015-03-18 23:09:23.974031', '2015-03-18 23:09:23.974031')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2431, 'ANDRES', 'andresovalleny@gmail.com', NULL, 1, '2015-03-18 23:09:23.983320', '2015-03-18 23:09:23.983320')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2432, 'Gaspar', 'gasparalvarez@alugar.cl', NULL, 1, '2015-03-18 23:09:23.992841', '2015-03-18 23:09:23.992841')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2433, 'Julio', 'abbig2000@yahoo.com', NULL, 1, '2015-03-18 23:09:24.007652', '2015-03-18 23:09:24.007652')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2434, 'Carina', 'kubeda@gmail.com', NULL, 1, '2015-03-18 23:09:24.017745', '2015-03-18 23:09:24.017745')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2435, 'carolina', 'carolinadasilva84@hotmail.com', NULL, 1, '2015-03-18 23:09:24.029087', '2015-03-18 23:09:24.029087')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2436, 'Franco', 'deep_kover@hotmail.com', NULL, 1, '2015-03-18 23:09:24.040948', '2015-03-18 23:09:24.040948')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2437, 'Hugo', 'arpon@vtr.net', NULL, 1, '2015-03-18 23:09:24.057529', '2015-03-18 23:09:24.057529')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2438, 'Camila', 'cami.naif@hotmail.cl', NULL, 1, '2015-03-18 23:09:24.066724', '2015-03-18 23:09:24.066724')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2439, 'Francisca', 'fcostabombal@gmail.com', NULL, 1, '2015-03-18 23:09:24.092127', '2015-03-18 23:09:24.092127')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2440, 'Daniel', 'villapeutica@gmail.com', NULL, 1, '2015-03-18 23:09:24.135702', '2015-03-18 23:09:24.135702')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2441, 'Enrique', 'schiaffaformas@hotmail.com', NULL, 1, '2015-03-18 23:09:24.161580', '2015-03-18 23:09:24.161580')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2442, 'Carlos', 'carlos.gr57@gmail.com', NULL, 1, '2015-03-18 23:09:24.180599', '2015-03-18 23:09:24.180599')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2443, 'rodrigo', 'rodrigobaez4@msn.com', NULL, 1, '2015-03-18 23:09:24.190804', '2015-03-18 23:09:24.190804')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2444, 'Tarix', 'tarix.sep@gmail.coom', NULL, 1, '2015-03-18 23:09:24.206675', '2015-03-18 23:09:24.206675')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2445, 'Mujer', 'mujermapocho@gmail.com', NULL, 1, '2015-03-18 23:09:24.216268', '2015-03-18 23:09:24.216268')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2446, 'María', 'mjmunoz.arte@gmail.com', NULL, 1, '2015-03-18 23:09:24.258117', '2015-03-18 23:09:24.258117')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2447, 'Alberto', 'topazred@gmail.com', NULL, 1, '2015-03-18 23:09:24.276656', '2015-03-18 23:09:24.276656')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2448, 'Carina', 'carinapuffez@gmail.com', NULL, 1, '2015-03-18 23:09:24.296140', '2015-03-18 23:09:24.296140')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2449, 'josefina', 'jweskamp@hotmail.com', NULL, 1, '2015-03-18 23:09:24.331416', '2015-03-18 23:09:24.331416')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2450, 'Manos', 'dga_79@gmail.com', NULL, 1, '2015-03-18 23:09:24.356925', '2015-03-18 23:09:24.356925')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2451, 'Veronica', 'veronica.guarda@gmail.com', NULL, 1, '2015-03-18 23:09:24.403860', '2015-03-18 23:09:24.403860')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2452, 'Diana', 'dianaprofilio@gmail.com', NULL, 1, '2015-03-18 23:09:24.431138', '2015-03-18 23:09:24.431138')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2453, 'Susana', 'castisusana@gmail.com', NULL, 1, '2015-03-18 23:09:24.457913', '2015-03-18 23:09:24.457913')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2454, 'Glen', 'glenlizardi@gmail.com', NULL, 1, '2015-03-18 23:09:24.492080', '2015-03-18 23:09:24.492080')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2455, 'Beatriz', 'mdcaral@une.net.co', NULL, 1, '2015-03-18 23:09:24.512857', '2015-03-18 23:09:24.512857')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2456, 'Milagro', 'mmilagro.albornoz@gmail.com', NULL, 1, '2015-03-18 23:09:24.535546', '2015-03-18 23:09:24.535546')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2457, 'Magdalena', 'm@magdalenaerrazuriz.cl', NULL, 1, '2015-03-18 23:09:24.563830', '2015-03-18 23:09:24.563830')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2458, 'Artistas', 'culturasantander@gmail.com', NULL, 1, '2015-03-18 23:09:24.591928', '2015-03-18 23:09:24.591928')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2459, 'Antonia', 'azbanado@uc.cl', NULL, 1, '2015-03-18 23:09:24.617220', '2015-03-18 23:09:24.617220')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2460, 'Genaro', 'Genaroalbaino@gmail.com', NULL, 1, '2015-03-18 23:09:24.634498', '2015-03-18 23:09:24.634498')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2461, 'consuelo', 'consuelowalker@gmail.com', NULL, 1, '2015-03-18 23:09:24.667384', '2015-03-18 23:09:24.667384')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2462, 'Karina', 'karinacasta@gmail.com', NULL, 1, '2015-03-18 23:09:24.689900', '2015-03-18 23:09:24.689900')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2463, 'sergio', 's.m.gallardo71@gmail.com', NULL, 1, '2015-03-18 23:09:24.712768', '2015-03-18 23:09:24.712768')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2464, 'Manuel', 'polysix@gmail.com', NULL, 1, '2015-03-18 23:09:24.735064', '2015-03-18 23:09:24.735064')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2465, 'Constanza', 'cotibriceno@gmail.com', NULL, 1, '2015-03-18 23:09:24.756039', '2015-03-18 23:09:24.756039')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2466, 'Vanessa', 'sanzvane@gmail.com', NULL, 1, '2015-03-18 23:09:24.789116', '2015-03-18 23:09:24.789116')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2467, 'Pedro', 'pet_punk@hotmail.com', NULL, 1, '2015-03-18 23:09:24.804763', '2015-03-18 23:09:24.804763')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2468, 'Angel', 'martinodanza@gmail.com', NULL, 1, '2015-03-18 23:09:24.820862', '2015-03-18 23:09:24.820862')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2469, 'raphaelherrande', 'pufhjlkfj@qq.com', NULL, 1, '2015-03-18 23:09:24.835450', '2015-03-18 23:09:24.835450')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2470, 'Carlos', 'lithium.rei@gmail.com', NULL, 1, '2015-03-18 23:09:24.856188', '2015-03-18 23:09:24.856188')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2471, 'elinoreshelquis', 'yaoxian14099949@163.com', NULL, 1, '2015-03-18 23:09:24.873783', '2015-03-18 23:09:24.873783')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2472, 'christinaesenwe', 'yuenao25931650@163.com', NULL, 1, '2015-03-18 23:09:24.891645', '2015-03-18 23:09:24.891645')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2473, 'damarissewester', 'susuovbchft@21cn.com', NULL, 1, '2015-03-18 23:09:24.912236', '2015-03-18 23:09:24.912236')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2474, 'winstonkoenemun', 'itszwowup@qq.com', NULL, 1, '2015-03-18 23:09:24.941706', '2015-03-18 23:09:24.941706')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2475, 'janaemagrath', 'wuniangwnh@eyou.com', NULL, 1, '2015-03-18 23:09:24.955471', '2015-03-18 23:09:24.955471')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2476, 'arnulfogoldrich', 'zan51183@tom.com', NULL, 1, '2015-03-18 23:09:24.965593', '2015-03-18 23:09:24.965593')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2477, 'theodoramarsigl', 'hezhecqhntc@21cn.com', NULL, 1, '2015-03-18 23:09:24.975080', '2015-03-18 23:09:24.975080')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2478, 'loraleewlodarcz', 'conolemodlin@sohu.com', NULL, 1, '2015-03-18 23:09:24.985458', '2015-03-18 23:09:24.985458')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2479, 'allenagaldamez', 'shun7994370@163.com', NULL, 1, '2015-03-18 23:09:25.004302', '2015-03-18 23:09:25.004302')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2480, 'martywenzell', 'seeboldpace@sohu.com', NULL, 1, '2015-03-18 23:09:25.015516', '2015-03-18 23:09:25.015516')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2481, 'louiedeaton', 'bnlurwdxx@qq.com', NULL, 1, '2015-03-18 23:09:25.079665', '2015-03-18 23:09:25.079665')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2482, 'theaonorato', 'pinggu363431761@163.com', NULL, 1, '2015-03-18 23:09:25.101938', '2015-03-18 23:09:25.101938')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2483, 'Jonathan', 'mxgenesis@gmail.com', NULL, 1, '2015-03-18 23:09:25.127030', '2015-03-18 23:09:25.127030')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2484, 'rennalesmerises', 'liuhaifei5@163.com', NULL, 1, '2015-03-18 23:09:25.146419', '2015-03-18 23:09:25.146419')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2485, 'wmlikins', 'dunqueyuan982@tom.com', NULL, 1, '2015-03-18 23:09:25.174812', '2015-03-18 23:09:25.174812')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2486, 'raeannzurkuhlen', 'zhuachang9148608@163.com', NULL, 1, '2015-03-18 23:09:25.191158', '2015-03-18 23:09:25.191158')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2487, 'alvarostrick', 'tbeyvecge@qq.com', NULL, 1, '2015-03-18 23:09:25.258467', '2015-03-18 23:09:25.258467')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2488, 'florrieschlesen', 'tannwiddison@sohu.com', NULL, 1, '2015-03-18 23:09:25.279511', '2015-03-18 23:09:25.279511')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2489, 'gonzalotebar', 'kmbjjoglb@qq.com', NULL, 1, '2015-03-18 23:09:25.306439', '2015-03-18 23:09:25.306439')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2490, 'reaganadkinson', 'fenpenwum@eyou.com', NULL, 1, '2015-03-18 23:09:25.324861', '2015-03-18 23:09:25.324861')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2491, 'lanellepapenfus', 'wangdehuo@sohu.com', NULL, 1, '2015-03-18 23:09:25.346317', '2015-03-18 23:09:25.346317')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2492, 'tyronebejil', 'vh4g3qwy7t@qq.com', NULL, 1, '2015-03-18 23:09:25.369018', '2015-03-18 23:09:25.369018')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2493, 'eleanorpangelin', 'yozan840953693@163.com', NULL, 1, '2015-03-18 23:09:25.391340', '2015-03-18 23:09:25.391340')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2494, 'dorathymckendry', 'uda3752285@163.com', NULL, 1, '2015-03-18 23:09:25.418019', '2015-03-18 23:09:25.418019')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2495, 'marciawarson', 'wuzeiejf@eyou.com', NULL, 1, '2015-03-18 23:09:25.428128', '2015-03-18 23:09:25.428128')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2496, 'yurisaterfield', 'pwrcjanb2512@hotmail.com', NULL, 1, '2015-03-18 23:09:25.440099', '2015-03-18 23:09:25.440099')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2497, 'irmacrowston', 'zhoumangubk@eyou.com', NULL, 1, '2015-03-18 23:09:25.454611', '2015-03-18 23:09:25.454611')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2498, 'dalilamuphy', 'shentieajaavp@21cn.com', NULL, 1, '2015-03-18 23:09:25.474741', '2015-03-18 23:09:25.474741')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2499, 'myrlareola', 'jtagampr2794@hotmail.com', NULL, 1, '2015-03-18 23:09:25.491865', '2015-03-18 23:09:25.491865')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2500, 'luannadegear', 'fenrexmubxb@21cn.com', NULL, 1, '2015-03-18 23:09:25.505200', '2015-03-18 23:09:25.505200')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2501, 'sharonlukander', 'xiangwuning@sohu.com', NULL, 1, '2015-03-18 23:09:25.514112', '2015-03-18 23:09:25.514112')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2502, 'nelidanakonechn', 'rongsou4231514@163.com', NULL, 1, '2015-03-18 23:09:25.524004', '2015-03-18 23:09:25.524004')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2503, 'alishalawter', 'iar440613863@163.com', NULL, 1, '2015-03-18 23:09:25.532791', '2015-03-18 23:09:25.532791')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2504, 'phyliskotas', 'dansheng131@163.com', NULL, 1, '2015-03-18 23:09:25.541976', '2015-03-18 23:09:25.541976')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2505, 'rivkafegueroa', 'yanguanmvxxqw@21cn.com', NULL, 1, '2015-03-18 23:09:25.553423', '2015-03-18 23:09:25.553423')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2506, 'danaecovelli', 'caorenetj@eyou.com', NULL, 1, '2015-03-18 23:09:25.562429', '2015-03-18 23:09:25.562429')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2507, 'aracelychanler', 'wangshuaibyfdsv@21cn.com', NULL, 1, '2015-03-18 23:09:25.571071', '2015-03-18 23:09:25.571071')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2508, 'elviradewald', 'minhuang1128196@163.com', NULL, 1, '2015-03-18 23:09:25.581270', '2015-03-18 23:09:25.581270')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2509, 'denysegettinger', 'yaogongpdh@eyou.com', NULL, 1, '2015-03-18 23:09:25.590877', '2015-03-18 23:09:25.590877')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2510, 'leetilghman', 'weisunaxgvwc@21cn.com', NULL, 1, '2015-03-18 23:09:25.603050', '2015-03-18 23:09:25.603050')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2511, 'carolinmichelin', 'dcyrwrsh684@hotmail.com', NULL, 1, '2015-03-18 23:09:25.612346', '2015-03-18 23:09:25.612346')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2512, 'sheritanarlock', 'senxiongbmv@eyou.com', NULL, 1, '2015-03-18 23:09:25.621706', '2015-03-18 23:09:25.621706')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2513, 'analisamerkt', 'wuxiaoqefqnb@21cn.com', NULL, 1, '2015-03-18 23:09:25.631243', '2015-03-18 23:09:25.631243')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2514, 'fridamuhl', 'fengmengrzx@eyou.com', NULL, 1, '2015-03-18 23:09:25.647899', '2015-03-18 23:09:25.647899')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2515, 'patriciapeaslee', 'liu475268651@163.com', NULL, 1, '2015-03-18 23:09:25.664092', '2015-03-18 23:09:25.664092')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2516, 'elmermajeske', 'xjnwzyga486@hotmail.com', NULL, 1, '2015-03-18 23:09:25.685731', '2015-03-18 23:09:25.685731')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2517, 'kathaleenrockma', 'liangpin97129457@163.com', NULL, 1, '2015-03-18 23:09:25.704532', '2015-03-18 23:09:25.704532')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2518, 'margrethardrick', 'panfengnawpka@21cn.com', NULL, 1, '2015-03-18 23:09:25.744233', '2015-03-18 23:09:25.744233')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2519, 'tanjataitague', 'panzanxk@eyou.com', NULL, 1, '2015-03-18 23:09:25.755793', '2015-03-18 23:09:25.755793')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2520, 'shinkistner', 'sunzouazq@eyou.com', NULL, 1, '2015-03-18 23:09:25.768224', '2015-03-18 23:09:25.768224')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2521, 'terrellstemmer', 'wangtoupazbab@21cn.com', NULL, 1, '2015-03-18 23:09:25.781243', '2015-03-18 23:09:25.781243')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2522, 'ruthannelambka', 'stashstamnos@sohu.com', NULL, 1, '2015-03-18 23:09:25.867077', '2015-03-18 23:09:25.867077')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2523, 'minhedgman', 'weimuzac@eyou.com', NULL, 1, '2015-03-18 23:09:25.876961', '2015-03-18 23:09:25.876961')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2524, 'jenaetippin', 'dxhrhygw297@hotmail.com', NULL, 1, '2015-03-18 23:09:25.901105', '2015-03-18 23:09:25.901105')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2525, 'pola', 'mirandapola@gmail.com', NULL, 1, '2015-03-18 23:09:25.919294', '2015-03-18 23:09:25.919294')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2526, 'santinatredo', 'sunkunsxa@eyou.com', NULL, 1, '2015-03-18 23:09:25.946733', '2015-03-18 23:09:25.946733')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2527, 'pearlecardozo', 'harmondhast@sohu.com', NULL, 1, '2015-03-18 23:09:25.970024', '2015-03-18 23:09:25.970024')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2528, 'helentackett', 'hefubao0223@sohu.com', NULL, 1, '2015-03-18 23:09:25.996184', '2015-03-18 23:09:25.996184')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2529, 'jennellgalacio', 'zhendaottaevm@21cn.com', NULL, 1, '2015-03-18 23:09:26.011534', '2015-03-18 23:09:26.011534')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2530, 'patpruzansky', 'zouxuhao3578274@163.com', NULL, 1, '2015-03-18 23:09:26.086796', '2015-03-18 23:09:26.086796')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2531, 'kristanpolosky', 'liu1356949@163.com', NULL, 1, '2015-03-18 23:09:26.101457', '2015-03-18 23:09:26.101457')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2532, 'keishaosiecki', 'anduo755450227@163.com', NULL, 1, '2015-03-18 23:09:26.135055', '2015-03-18 23:09:26.135055')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2533, 'dioneperson', 'luchoufmp@eyou.com', NULL, 1, '2015-03-18 23:09:26.158479', '2015-03-18 23:09:26.158479')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2534, 'wynonadeanes', 'lucaieudqhs@21cn.com', NULL, 1, '2015-03-18 23:09:26.190413', '2015-03-18 23:09:26.190413')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2535, 'paulitajansing', 'ebmpxnzd639@hotmail.com', NULL, 1, '2015-03-18 23:09:26.205237', '2015-03-18 23:09:26.205237')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2536, 'ricardagolub', 'yangluuss@eyou.com', NULL, 1, '2015-03-18 23:09:26.231649', '2015-03-18 23:09:26.231649')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2537, 'sabrinaminckler', 'langbaoliang66659@163.com', NULL, 1, '2015-03-18 23:09:26.479489', '2015-03-18 23:09:26.479489')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2538, 'natividadwesch', 'q829331953180@163.com', NULL, 1, '2015-03-18 23:09:26.489580', '2015-03-18 23:09:26.489580')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2539, 'candiceblomberg', 'fh198846659@163.com', NULL, 1, '2015-03-18 23:09:26.499022', '2015-03-18 23:09:26.499022')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2540, 'lakendrahutchin', 'bwacvaxb8944@hotmail.com', NULL, 1, '2015-03-18 23:09:26.597888', '2015-03-18 23:09:26.597888')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2541, 'kristipalmieri', 'censhaozac@eyou.com', NULL, 1, '2015-03-18 23:09:26.608481', '2015-03-18 23:09:26.608481')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2542, 'neldacourtad', 'mengdieche911aa@163.com', NULL, 1, '2015-03-18 23:09:26.617534', '2015-03-18 23:09:26.617534')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2543, 'lanepicardi', 'xukuaicmg@eyou.com', NULL, 1, '2015-03-18 23:09:26.627010', '2015-03-18 23:09:26.627010')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2544, 'dahliagrabauska', 'duihuo49773302@163.com', NULL, 1, '2015-03-18 23:09:26.651550', '2015-03-18 23:09:26.651550')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2545, 'isabellourence', 'qianhuafzr@eyou.com', NULL, 1, '2015-03-18 23:09:26.661099', '2015-03-18 23:09:26.661099')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2546, 'shastabelsito', 'qbbacdht635@hotmail.com', NULL, 1, '2015-03-18 23:09:26.679707', '2015-03-18 23:09:26.679707')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2547, 'myrticeemler', 'zymnbvms588@hotmail.com', NULL, 1, '2015-03-18 23:09:26.705883', '2015-03-18 23:09:26.705883')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2548, 'carmonmanweiler', 'kengjun94577516@163.com', NULL, 1, '2015-03-18 23:09:26.731170', '2015-03-18 23:09:26.731170')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2549, 'synthiagoretti', 'ywymsama2561@hotmail.com', NULL, 1, '2015-03-18 23:09:26.858399', '2015-03-18 23:09:26.858399')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2550, 'danyellmahony', 'sherrettsso@sohu.com', NULL, 1, '2015-03-18 23:09:26.868675', '2015-03-18 23:09:26.868675')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2551, 'evanfazzina', 'zhaoyunnaqbwf@21cn.com', NULL, 1, '2015-03-18 23:09:26.878847', '2015-03-18 23:09:26.878847')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2552, 'natalyaleininge', 'doughertyfo@sohu.com', NULL, 1, '2015-03-18 23:09:26.910548', '2015-03-18 23:09:26.910548')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2553, 'anlueckenbach', 'kyrrsujz3548@hotmail.com', NULL, 1, '2015-03-18 23:09:26.922011', '2015-03-18 23:09:26.922011')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2554, 'vernicequinoes', 'datangmaten@163.com', NULL, 1, '2015-03-18 23:09:26.985106', '2015-03-18 23:09:26.985106')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2555, 'cheribeevers', 'xyc8287454585709@163.com', NULL, 1, '2015-03-18 23:09:27.006127', '2015-03-18 23:09:27.006127')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2556, 'capricestaebell', 'zhenpaobgwger@21cn.com', NULL, 1, '2015-03-18 23:09:27.016222', '2015-03-18 23:09:27.016222')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2557, 'halliegoethe', 'zhuyingqsacny@21cn.com', NULL, 1, '2015-03-18 23:09:27.034088', '2015-03-18 23:09:27.034088')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2558, 'asiapriem', 'rongxiejun@sohu.com', NULL, 1, '2015-03-18 23:09:27.048455', '2015-03-18 23:09:27.048455')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2559, 'alexandermanuia', 'panbacbjwzt@21cn.com', NULL, 1, '2015-03-18 23:09:27.057907', '2015-03-18 23:09:27.057907')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2560, 'clarewiederholt', 'ymqbcjat8535@hotmail.com', NULL, 1, '2015-03-18 23:09:27.067652', '2015-03-18 23:09:27.067652')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2561, 'lashundawiddows', 'fczsrybf2692@hotmail.com', NULL, 1, '2015-03-18 23:09:27.090336', '2015-03-18 23:09:27.090336')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2562, 'georginaemmert', 'smqhbvas288@hotmail.com', NULL, 1, '2015-03-18 23:09:27.119786', '2015-03-18 23:09:27.119786')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2563, 'waierling', 'guixiong318156@163.com', NULL, 1, '2015-03-18 23:09:27.135010', '2015-03-18 23:09:27.135010')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2564, 'kayshallcross', 'xkwhgtru5824@hotmail.com', NULL, 1, '2015-03-18 23:09:27.166134', '2015-03-18 23:09:27.166134')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2565, 'myrtiekass', 'xunmiao53480547@163.com', NULL, 1, '2015-03-18 23:09:27.182828', '2015-03-18 23:09:27.182828')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2566, 'danyelpietrzyk', 'puhu51745918403@163.com', NULL, 1, '2015-03-18 23:09:27.201375', '2015-03-18 23:09:27.201375')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2567, 'helenenielsen', 'zhuotiao4894082@163.com', NULL, 1, '2015-03-18 23:09:27.246126', '2015-03-18 23:09:27.246126')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2568, 'candifeucht', 's602470433175@163.com', NULL, 1, '2015-03-18 23:09:27.280116', '2015-03-18 23:09:27.280116')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2569, 'vanitadziuk', 'errazaaw531@hotmail.com', NULL, 1, '2015-03-18 23:09:27.312939', '2015-03-18 23:09:27.312939')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2570, 'jillianpledger', 'cjdzcdky6592@hotmail.com', NULL, 1, '2015-03-18 23:09:27.335928', '2015-03-18 23:09:27.335928')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2571, 'sharylansel', 'feivsxiaofang027@163.com', NULL, 1, '2015-03-18 23:09:27.349382', '2015-03-18 23:09:27.349382')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2572, 'lanorarovner', 'adrpfbxt591@hotmail.com', NULL, 1, '2015-03-18 23:09:27.358721', '2015-03-18 23:09:27.358721')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2573, 'maisiejonak', 'bhacfkyu392@hotmail.com', NULL, 1, '2015-03-18 23:09:27.380901', '2015-03-18 23:09:27.380901')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2574, 'rachaelunverzag', 'sgp3448293448@163.com', NULL, 1, '2015-03-18 23:09:27.398285', '2015-03-18 23:09:27.398285')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2575, 'katerinegarces', 'songmanvaeacd@21cn.com', NULL, 1, '2015-03-18 23:09:27.407496', '2015-03-18 23:09:27.407496')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2576, 'belvakinnaman', 'jika585039924461@163.com', NULL, 1, '2015-03-18 23:09:27.416768', '2015-03-18 23:09:27.416768')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2577, 'ellynabolafia', 'lieshi0286679018@163.com', NULL, 1, '2015-03-18 23:09:27.444002', '2015-03-18 23:09:27.444002')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2578, 'luettamartinat', 'doddgerloff@sohu.com', NULL, 1, '2015-03-18 23:09:27.547487', '2015-03-18 23:09:27.547487')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2579, 'julissachor', 'quanba384416232@163.com', NULL, 1, '2015-03-18 23:09:27.556742', '2015-03-18 23:09:27.556742')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2580, 'sandiehauth', 'nulang3693996581@163.com', NULL, 1, '2015-03-18 23:09:27.565968', '2015-03-18 23:09:27.565968')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2581, 'shainaczapiewsk', 'brousardkib@sohu.com', NULL, 1, '2015-03-18 23:09:27.575510', '2015-03-18 23:09:27.575510')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2582, 'annlondo', 'zjuuzamx579@hotmail.com', NULL, 1, '2015-03-18 23:09:27.585351', '2015-03-18 23:09:27.585351')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2583, 'valenegarski', 'zhenduanzteayy@21cn.com', NULL, 1, '2015-03-18 23:09:28.142398', '2015-03-18 23:09:28.142398')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2584, 'raeannsuennen', 'hoffeltiaro@sohu.com', NULL, 1, '2015-03-18 23:09:28.152451', '2015-03-18 23:09:28.152451')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2585, 'zaidafosberg', 'usyrzgnc593@hotmail.com', NULL, 1, '2015-03-18 23:09:28.161053', '2015-03-18 23:09:28.161053')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2586, 'violetpisciotta', 'yanchaohmpyyh@21cn.com', NULL, 1, '2015-03-18 23:09:28.170785', '2015-03-18 23:09:28.170785')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2587, 'francesstudier', 'huandang73170521@163.com', NULL, 1, '2015-03-18 23:09:28.179455', '2015-03-18 23:09:28.179455')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2588, 'shereetrilli', 'zhoulurezqgt@21cn.com', NULL, 1, '2015-03-18 23:09:28.197842', '2015-03-18 23:09:28.197842')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2589, 'lenitadibbles', 'vitkustrover@sohu.com', NULL, 1, '2015-03-18 23:09:28.208984', '2015-03-18 23:09:28.208984')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2590, 'maribelfeyler', 'rpaamttc1192@hotmail.com', NULL, 1, '2015-03-18 23:09:28.217788', '2015-03-18 23:09:28.217788')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2591, 'ermabanet', 'shengshui04073@163.com', NULL, 1, '2015-03-18 23:09:28.226631', '2015-03-18 23:09:28.226631')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2592, 'socorrosubido', 'fandugkkqvx@21cn.com', NULL, 1, '2015-03-18 23:09:28.236054', '2015-03-18 23:09:28.236054')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2593, 'felisabloch', 'anfqazgz595@hotmail.com', NULL, 1, '2015-03-18 23:09:28.247548', '2015-03-18 23:09:28.247548')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2594, 'laveraknopf', 'zsqbcuth575@hotmail.com', NULL, 1, '2015-03-18 23:09:28.256997', '2015-03-18 23:09:28.256997')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2595, 'kierstenmiglior', 'sunhuangnhshaw@21cn.com', NULL, 1, '2015-03-18 23:09:28.267112', '2015-03-18 23:09:28.267112')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2596, 'olympiawreyford', 'fushantu@sohu.com', NULL, 1, '2015-03-18 23:09:28.275918', '2015-03-18 23:09:28.275918')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2597, 'maidunmire', 'Hunter_woshiwo6@163.com', NULL, 1, '2015-03-18 23:09:28.285686', '2015-03-18 23:09:28.285686')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2598, 'jinazuziak', 'ninlun4900423350@163.com', NULL, 1, '2015-03-18 23:09:28.296655', '2015-03-18 23:09:28.296655')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2599, 'tamerametenosky', 'youzangcmhhxq@21cn.com', NULL, 1, '2015-03-18 23:09:28.305929', '2015-03-18 23:09:28.305929')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2600, 'danalacio', 'zhangzhaoctfugh@21cn.com', NULL, 1, '2015-03-18 23:09:28.314486', '2015-03-18 23:09:28.314486')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2601, 'erinnbetti', 'qnnmnxge2219@hotmail.com', NULL, 1, '2015-03-18 23:09:28.323096', '2015-03-18 23:09:28.323096')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2602, 'deloisdietzman', 'fantuanbwywav@21cn.com', NULL, 1, '2015-03-18 23:09:28.333004', '2015-03-18 23:09:28.333004')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2603, 'raymondhinsley', 'chenriybrbvy@21cn.com', NULL, 1, '2015-03-18 23:09:28.358949', '2015-03-18 23:09:28.358949')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2604, 'maxineeickhorst', 'pinggua96982293@163.com', NULL, 1, '2015-03-18 23:09:28.369035', '2015-03-18 23:09:28.369035')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2605, 'kevinwillimas', 'shenjuncha@163.com', NULL, 1, '2015-03-18 23:09:28.378263', '2015-03-18 23:09:28.378263')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2606, 'chloeguilmette', 'fsejywgu747@hotmail.com', NULL, 1, '2015-03-18 23:09:28.396085', '2015-03-18 23:09:28.396085')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2607, 'denniserayner', 'tianliu515857832@163.com', NULL, 1, '2015-03-18 23:09:28.404448', '2015-03-18 23:09:28.404448')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2608, 'albertcutchall', 'banyaoshu@sohu.com', NULL, 1, '2015-03-18 23:09:28.414054', '2015-03-18 23:09:28.414054')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2609, 'caraknickelbein', 'yandongnahdwm@21cn.com', NULL, 1, '2015-03-18 23:09:28.423715', '2015-03-18 23:09:28.423715')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2610, 'heikebauers', 'gehanmbbdva@21cn.com', NULL, 1, '2015-03-18 23:09:28.432418', '2015-03-18 23:09:28.432418')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2611, 'halinagannett', 'qianhenmgpnjw@21cn.com', NULL, 1, '2015-03-18 23:09:28.446128', '2015-03-18 23:09:28.446128')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2612, 'manuelashape', 'mpj337457348@163.com', NULL, 1, '2015-03-18 23:09:28.455996', '2015-03-18 23:09:28.455996')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2613, 'dorimcclaine', 'gaaahhcf4336@hotmail.com', NULL, 1, '2015-03-18 23:09:28.465762', '2015-03-18 23:09:28.465762')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2614, 'vertiesien', 'linangvtrauc@21cn.com', NULL, 1, '2015-03-18 23:09:28.475058', '2015-03-18 23:09:28.475058')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2615, 'marquettapiccil', 'yaolingpeng@sohu.com', NULL, 1, '2015-03-18 23:09:28.484215', '2015-03-18 23:09:28.484215')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2616, 'dominquecrosby', 'chennisczrft@21cn.com', NULL, 1, '2015-03-18 23:09:28.497225', '2015-03-18 23:09:28.497225')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2617, 'madelenesimcox', 'oo880179864@163.com', NULL, 1, '2015-03-18 23:09:28.506921', '2015-03-18 23:09:28.506921')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2618, 'piapaduano', 'jiangpeighbnra@21cn.com', NULL, 1, '2015-03-18 23:09:28.516389', '2015-03-18 23:09:28.516389')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2619, 'sherabrodeur', 'pengjiahaodehao13@163.com', NULL, 1, '2015-03-18 23:09:28.525842', '2015-03-18 23:09:28.525842')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2620, 'thedajhonson', 'h_kunranran432@163.com', NULL, 1, '2015-03-18 23:09:28.535079', '2015-03-18 23:09:28.535079')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2621, 'almetamattimoe', 'songlerswbcp@21cn.com', NULL, 1, '2015-03-18 23:09:28.603618', '2015-03-18 23:09:28.603618')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2622, 'maciefipps', 'qxhrkqnv2754@hotmail.com', NULL, 1, '2015-03-18 23:09:28.613239', '2015-03-18 23:09:28.613239')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2623, 'kaneshaamick', 'caowowaajvc@21cn.com', NULL, 1, '2015-03-18 23:09:28.623234', '2015-03-18 23:09:28.623234')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2624, 'charlenadancoes', 'fenqiewsyxrw@21cn.com', NULL, 1, '2015-03-18 23:09:28.634293', '2015-03-18 23:09:28.634293')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2625, 'setsukocorridan', 'jiaojiuxing@sohu.com', NULL, 1, '2015-03-18 23:09:28.646132', '2015-03-18 23:09:28.646132')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2626, 'bettyganz', 'nsb4989495541182@163.com', NULL, 1, '2015-03-18 23:09:28.655724', '2015-03-18 23:09:28.655724')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2627, 'chandahelin', 'yubing20925294@163.com', NULL, 1, '2015-03-18 23:09:28.664847', '2015-03-18 23:09:28.664847')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2628, 'josefaasbell', 'phdwvqqa1738@hotmail.com', NULL, 1, '2015-03-18 23:09:28.674885', '2015-03-18 23:09:28.674885')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2629, 'theacrookshanks', 'jzd41287184339@163.com', NULL, 1, '2015-03-18 23:09:28.684036', '2015-03-18 23:09:28.684036')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2630, 'keeleycresta', 'fanlingkswasu@21cn.com', NULL, 1, '2015-03-18 23:09:28.696091', '2015-03-18 23:09:28.696091')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2631, 'jamesmccutchen', 'hangme0512145257@163.com', NULL, 1, '2015-03-18 23:09:28.705643', '2015-03-18 23:09:28.705643')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2632, 'marcellethurner', 'pancuoawwjxu@21cn.com', NULL, 1, '2015-03-18 23:09:28.714779', '2015-03-18 23:09:28.714779')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2633, 'lorileefleeting', 'aunahamx352@hotmail.com', NULL, 1, '2015-03-18 23:09:28.725202', '2015-03-18 23:09:28.725202')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2634, 'kathesawina', 'wsgpatqa555@hotmail.com', NULL, 1, '2015-03-18 23:09:28.735195', '2015-03-18 23:09:28.735195')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2635, 'leathagerrior', 'zenciwnefya@21cn.com', NULL, 1, '2015-03-18 23:09:28.752165', '2015-03-18 23:09:28.752165')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2636, 'junenenez', 'lufanmnmahr@21cn.com', NULL, 1, '2015-03-18 23:09:28.761500', '2015-03-18 23:09:28.761500')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2637, 'kelliekempel', 'sorrellblew@sohu.com', NULL, 1, '2015-03-18 23:09:28.771336', '2015-03-18 23:09:28.771336')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2638, 'shieladobine', 'zeila539328639@163.com', NULL, 1, '2015-03-18 23:09:28.780726', '2015-03-18 23:09:28.780726')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2639, 'antonettepenkal', 'wengrong62475217@163.com', NULL, 1, '2015-03-18 23:09:28.795244', '2015-03-18 23:09:28.795244')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2640, 'rhiannongiegeri', 'kuaiyong59760506@163.com', NULL, 1, '2015-03-18 23:09:28.805717', '2015-03-18 23:09:28.805717')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2641, 'marvellaolive', 'gaigu22347107224@163.com', NULL, 1, '2015-03-18 23:09:28.815960', '2015-03-18 23:09:28.815960')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2642, 'lauraswoboda', 'aass68696766353@163.com', NULL, 1, '2015-03-18 23:09:28.826118', '2015-03-18 23:09:28.826118')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2643, 'myraderalph', 'daichang532322@163.com', NULL, 1, '2015-03-18 23:09:28.848864', '2015-03-18 23:09:28.848864')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2644, 'vivanpalakiko', 'barnarlawsky@sohu.com', NULL, 1, '2015-03-18 23:09:28.859524', '2015-03-18 23:09:28.859524')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2645, 'mandyfulling', 'buh9015000655824@163.com', NULL, 1, '2015-03-18 23:09:28.869363', '2015-03-18 23:09:28.869363')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2646, 'angelschnautz', 'haoyan08072668130@163.com', NULL, 1, '2015-03-18 23:09:28.879295', '2015-03-18 23:09:28.879295')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2647, 'sherellquist', 'fengjia6882630@163.com', NULL, 1, '2015-03-18 23:09:29.005660', '2015-03-18 23:09:29.005660')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2648, 'angellaspringma', 'zhushouafbcaq@21cn.com', NULL, 1, '2015-03-18 23:09:29.035619', '2015-03-18 23:09:29.035619')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2649, 'franciebagheri', 'ahuan254992965@163.com', NULL, 1, '2015-03-18 23:09:29.062782', '2015-03-18 23:09:29.062782')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2650, 'joselynwanner', 'zhangyunaeyryn@21cn.com', NULL, 1, '2015-03-18 23:09:29.078490', '2015-03-18 23:09:29.078490')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2651, 'kerenmanoogian', 'luoyanxian@sohu.com', NULL, 1, '2015-03-18 23:09:29.087647', '2015-03-18 23:09:29.087647')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2652, 'karymohead', 'mayanan103@163.com', NULL, 1, '2015-03-18 23:09:29.105585', '2015-03-18 23:09:29.105585')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2653, 'alvaminium', 'najiekang@sohu.com', NULL, 1, '2015-03-18 23:09:29.114497', '2015-03-18 23:09:29.114497')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2654, 'annmarieschmaut', 'zhennianguuxyjw@21cn.com', NULL, 1, '2015-03-18 23:09:29.128967', '2015-03-18 23:09:29.128967')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2655, 'iraidadelavina', 'zoumianvejygn@21cn.com', NULL, 1, '2015-03-18 23:09:29.138071', '2015-03-18 23:09:29.138071')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2656, 'nanciewaddle', 'qichenlai@sohu.com', NULL, 1, '2015-03-18 23:09:29.160222', '2015-03-18 23:09:29.160222')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2657, 'cristendussault', 'zanbwrnc624@hotmail.com', NULL, 1, '2015-03-18 23:09:29.179480', '2015-03-18 23:09:29.179480')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2658, 'shavonschuneman', 'dongyangma@sohu.com', NULL, 1, '2015-03-18 23:09:29.190944', '2015-03-18 23:09:29.190944')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2659, 'angeleschwantd', 'mowai166347016@163.com', NULL, 1, '2015-03-18 23:09:29.200372', '2015-03-18 23:09:29.200372')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2660, 'bulahloiselle', 'bdyhdeab1362@hotmail.com', NULL, 1, '2015-03-18 23:09:29.210242', '2015-03-18 23:09:29.210242')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2661, 'priscilacashmer', 'drhjgsdc2289@hotmail.com', NULL, 1, '2015-03-18 23:09:29.228402', '2015-03-18 23:09:29.228402')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2662, 'arthursecond', 'linliuduan@sohu.com', NULL, 1, '2015-03-18 23:09:29.237697', '2015-03-18 23:09:29.237697')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2663, 'waltraudvalerin', 'qdyswmbq8846@hotmail.com', NULL, 1, '2015-03-18 23:09:29.247345', '2015-03-18 23:09:29.247345')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2664, 'janeevantull', 'panuo6647878167@163.com', NULL, 1, '2015-03-18 23:09:29.257663', '2015-03-18 23:09:29.257663')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2665, 'brianapizzi', 'lamoreekaib@sohu.com', NULL, 1, '2015-03-18 23:09:29.267647', '2015-03-18 23:09:29.267647')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2666, 'portiajotblad', 'qpl9359557972651@163.com', NULL, 1, '2015-03-18 23:09:29.277964', '2015-03-18 23:09:29.277964')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2667, 'particiaspyres', 'hezhuadmypca@21cn.com', NULL, 1, '2015-03-18 23:09:29.287174', '2015-03-18 23:09:29.287174')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2668, 'claudinearave', 'yazuo433381463@163.com', NULL, 1, '2015-03-18 23:09:29.297121', '2015-03-18 23:09:29.297121')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2669, 'hortenseskeele', 'chengnou45@163.com', NULL, 1, '2015-03-18 23:09:29.306074', '2015-03-18 23:09:29.306074')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2670, 'nicholeweemes', 'chifenchen@sohu.com', NULL, 1, '2015-03-18 23:09:29.315182', '2015-03-18 23:09:29.315182')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2671, 'Elena', 'el.angeles@gmail.co', NULL, 1, '2015-03-18 23:09:29.330953', '2015-03-18 23:09:29.330953')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2672, 'lazaro', 'lazaromanuelaguilariglesias@yahoo.es', NULL, 1, '2015-03-18 23:09:29.405636', '2015-03-18 23:09:29.405636')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2673, 'Alex', 'alexannic@gmail.com', NULL, 1, '2015-03-18 23:09:29.415898', '2015-03-18 23:09:29.415898')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2674, 'Printlab', 'comunicaciones@printlabdigital.cl', NULL, 1, '2015-03-18 23:09:29.425517', '2015-03-18 23:09:29.425517')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2675, 'Joce', 'jocvangueluc@gmail.com', NULL, 1, '2015-03-18 23:09:29.435299', '2015-03-18 23:09:29.435299')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2676, 'Maria', 'malena.gogo@gmail.com', NULL, 1, '2015-03-18 23:09:29.462691', '2015-03-18 23:09:29.462691')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2677, 'Florencia', 'florencia.sanchezp@gmail.com', NULL, 1, '2015-03-18 23:09:29.473394', '2015-03-18 23:09:29.473394')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2678, 'BABA', 'colectivobaba@gmail.com', NULL, 1, '2015-03-18 23:09:29.482988', '2015-03-18 23:09:29.482988')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2679, 'rodrigo', 'ajedrezsanfelipe@gmail.com', NULL, 1, '2015-03-18 23:09:29.492683', '2015-03-18 23:09:29.492683')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2680, 'claudio', 'claudiodelsolar@yahoo.es', NULL, 1, '2015-03-18 23:09:29.511934', '2015-03-18 23:09:29.511934')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2681, 'Roberto', 'robertapablaza@gmail.com', NULL, 1, '2015-03-18 23:09:29.522022', '2015-03-18 23:09:29.522022')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2682, 'Matias', 'peraltamatias@hotmail.com', NULL, 1, '2015-03-18 23:09:29.585456', '2015-03-18 23:09:29.585456')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2683, 'Robert', 'American.artist76@gmail.com', NULL, 1, '2015-03-18 23:09:29.596410', '2015-03-18 23:09:29.596410')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2684, 'Bla', 'avhaaster@hotmail.com', NULL, 1, '2015-03-18 23:09:29.608161', '2015-03-18 23:09:29.608161')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2685, 'Ramiro', 'indeleble_dg@hotmail.com', NULL, 1, '2015-03-18 23:09:29.618359', '2015-03-18 23:09:29.618359')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2686, 'Ashley', 'yelhsa_13@live.com', NULL, 1, '2015-03-18 23:09:29.645202', '2015-03-18 23:09:29.645202')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2687, 'Orlando', 'orlandorojasoyarzun@gmail.com', NULL, 1, '2015-03-18 23:09:29.655767', '2015-03-18 23:09:29.655767')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2688, 'Patricia', 'terracotaceramica@yahoo.com', NULL, 1, '2015-03-18 23:09:29.665896', '2015-03-18 23:09:29.665896')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2689, 'Alejandra', 'lio.fotoarte@gmail.com', NULL, 1, '2015-03-18 23:09:29.677158', '2015-03-18 23:09:29.677158')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2690, 'MARCELO', 'mriveraf@hotmail.com', NULL, 1, '2015-03-18 23:09:29.693538', '2015-03-18 23:09:29.693538')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2691, 'Manuel', 'manuebruit@gmail.com', NULL, 1, '2015-03-18 23:09:29.721536', '2015-03-18 23:09:29.721536')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2692, 'Alejandra', 'aleda74@hotmail.com', NULL, 1, '2015-03-18 23:09:29.735260', '2015-03-18 23:09:29.735260')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2693, 'KATIA', 'katiamunyoz@gmail.com', NULL, 1, '2015-03-18 23:09:29.746751', '2015-03-18 23:09:29.746751')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2694, 'Susana', 'Tenepharis@hotmail.com', NULL, 1, '2015-03-18 23:09:29.763389', '2015-03-18 23:09:29.763389')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2695, 'Aldo', 'fer_ux@hotmail.com', NULL, 1, '2015-03-18 23:09:29.773012', '2015-03-18 23:09:29.773012')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2696, 'FELIPE', 'fegutierb@gmail.com', NULL, 1, '2015-03-18 23:09:29.782293', '2015-03-18 23:09:29.782293')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2697, 'Maje', 'majevalenz@gmail.com', NULL, 1, '2015-03-18 23:09:29.794135', '2015-03-18 23:09:29.794135')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2698, 'María', 'obturadorfotos@gmail.com', NULL, 1, '2015-03-18 23:09:29.803126', '2015-03-18 23:09:29.803126')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2699, 'javier', 'ojoahumao@gmail.com', NULL, 1, '2015-03-18 23:09:29.813519', '2015-03-18 23:09:29.813519')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2700, 'jhon', 'leni3car@hotmail.com', NULL, 1, '2015-03-18 23:09:29.822945', '2015-03-18 23:09:29.822945')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2701, 'Camen', 'pazkku@gmail.com', NULL, 1, '2015-03-18 23:09:29.832053', '2015-03-18 23:09:29.832053')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2702, 'maría', 'eltallerdemenina@gmail.com', NULL, 1, '2015-03-18 23:09:29.843412', '2015-03-18 23:09:29.843412')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2703, 'Eduardo', 'strangething@live.cl', NULL, 1, '2015-03-18 23:09:29.852242', '2015-03-18 23:09:29.852242')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2704, 'luiss', 'x.u.s90@hotmail.com', NULL, 1, '2015-03-18 23:09:29.874981', '2015-03-18 23:09:29.874981')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2705, 'Camila', 'ramirezg.camila@gmail.com', NULL, 1, '2015-03-18 23:09:29.893289', '2015-03-18 23:09:29.893289')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2706, 'Paulina', 'paulcita@gmail.com', NULL, 1, '2015-03-18 23:09:29.903249', '2015-03-18 23:09:29.903249')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2707, 'pauline', 'pcristi@manquehue.net', NULL, 1, '2015-03-18 23:09:29.912843', '2015-03-18 23:09:29.912843')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2708, 'Trinidad', 'trini_tqr@hotmail.com', NULL, 1, '2015-03-18 23:09:29.934424', '2015-03-18 23:09:29.934424')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2709, 'Gustavo', 'gusrom@gmail.com', NULL, 1, '2015-03-18 23:09:29.978888', '2015-03-18 23:09:29.978888')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2710, 'Cyntia', 'cyntiavargasteodoro@gmail.com', NULL, 1, '2015-03-18 23:09:29.994217', '2015-03-18 23:09:29.994217')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2711, 'Marlene', 'artistmarjorge@gmail.com', NULL, 1, '2015-03-18 23:09:30.010575', '2015-03-18 23:09:30.010575')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2712, 'Irene', 'ireneazmi@hotmail.com', NULL, 1, '2015-03-18 23:09:30.024528', '2015-03-18 23:09:30.024528')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2713, 'jaime', 'jsantander77@hotmail.com', NULL, 1, '2015-03-18 23:09:30.037751', '2015-03-18 23:09:30.037751')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2714, 'Eduardo', 'eduardotorres@espaciocrea.cl', NULL, 1, '2015-03-18 23:09:30.060670', '2015-03-18 23:09:30.060670')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2715, 'efrain', 'paint3c@hotmail.es', NULL, 1, '2015-03-18 23:09:30.075973', '2015-03-18 23:09:30.075973')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2716, 'Cristian', 'cgomez.navarro@yahoo.es', NULL, 1, '2015-03-18 23:09:30.085327', '2015-03-18 23:09:30.085327')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2717, 'luis', 'babycalbillo@hotmail.com', NULL, 1, '2015-03-18 23:09:30.094069', '2015-03-18 23:09:30.094069')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2718, 'a', 'e.humus@hotmail.es', NULL, 1, '2015-03-18 23:09:30.103657', '2015-03-18 23:09:30.103657')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2719, 'Sara', 'sara.vergara.q@gmail.com', NULL, 1, '2015-03-18 23:09:30.113681', '2015-03-18 23:09:30.113681')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2720, 'Maria', 'florloewenta@yahoo.com', NULL, 1, '2015-03-18 23:09:30.134624', '2015-03-18 23:09:30.134624')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2721, 'Patricia', 'patriciakich@hotmail.com', NULL, 1, '2015-03-18 23:09:30.144749', '2015-03-18 23:09:30.144749')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2722, 'jose', 'josenicolas.reyes@gmail.com', NULL, 1, '2015-03-18 23:09:30.161604', '2015-03-18 23:09:30.161604')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2723, 'Javier', 'javierlewin@gmail.com', NULL, 1, '2015-03-18 23:09:30.176768', '2015-03-18 23:09:30.176768')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2724, 'Cristian', 'clehuede@yahoo.com', NULL, 1, '2015-03-18 23:09:30.188099', '2015-03-18 23:09:30.188099')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2725, 'Valeria', 'fb.valeria@gmail.com', NULL, 1, '2015-03-18 23:09:30.211719', '2015-03-18 23:09:30.211719')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2726, 'María', 'ma.paz.araya@gmail.com', NULL, 1, '2015-03-18 23:09:30.230246', '2015-03-18 23:09:30.230246')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2727, 'Marvilla', 'feromavi@yahoo.es', NULL, 1, '2015-03-18 23:09:30.255734', '2015-03-18 23:09:30.255734')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2728, 'monica', 'yrarrazaval@gmail.com', NULL, 1, '2015-03-18 23:09:30.270509', '2015-03-18 23:09:30.270509')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2729, 'Carla', 'Carlichucknorris@hotmail.com', NULL, 1, '2015-03-18 23:09:30.281532', '2015-03-18 23:09:30.281532')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2730, 'Cecilia', 'cecilain@gmail.com', NULL, 1, '2015-03-18 23:09:30.291621', '2015-03-18 23:09:30.291621')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2731, 'Emilio', 'emilio.fuentes.traverso@gmail.com', NULL, 1, '2015-03-18 23:09:30.404993', '2015-03-18 23:09:30.404993')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2732, 'Guillermo', 'gafus@hotmail.com', NULL, 1, '2015-03-18 23:09:30.414590', '2015-03-18 23:09:30.414590')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2733, 'AUGUSTO', 'bussearte@busse.com.ar', NULL, 1, '2015-03-18 23:09:30.424056', '2015-03-18 23:09:30.424056')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2734, 'Guillermo', 'guillermoperezsantos@gmail.com', NULL, 1, '2015-03-18 23:09:30.433230', '2015-03-18 23:09:30.433230')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2735, 'Estefania', 'exoticamericana@gmail.com', NULL, 1, '2015-03-18 23:09:30.442868', '2015-03-18 23:09:30.442868')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2736, 'evelyn', 'dinobuba@gmail.com', NULL, 1, '2015-03-18 23:09:30.459027', '2015-03-18 23:09:30.459027')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2737, 'Inka', 'otromaildenuevo@gmail.com', NULL, 1, '2015-03-18 23:09:30.468788', '2015-03-18 23:09:30.468788')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2738, 'Sebastian', 'nicojaramillo@hotmail.es', NULL, 1, '2015-03-18 23:09:30.477936', '2015-03-18 23:09:30.477936')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2739, 'fernando', 'fgrafico@hispavista.com', NULL, 1, '2015-03-18 23:09:30.487410', '2015-03-18 23:09:30.487410')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2740, 'helmut', 'hffreiburg@aol.com', NULL, 1, '2015-03-18 23:09:30.497400', '2015-03-18 23:09:30.497400')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2741, 'Bernardita', 'bernarditacastillo@gmail.com', NULL, 1, '2015-03-18 23:09:30.509328', '2015-03-18 23:09:30.509328')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2742, 'paula', 'paulayaime2009@hotmail.com', NULL, 1, '2015-03-18 23:09:30.518944', '2015-03-18 23:09:30.518944')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2743, 'Paula', 'borartemagico@gmail.com', NULL, 1, '2015-03-18 23:09:30.528233', '2015-03-18 23:09:30.528233')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2744, 'Katherine', 'supnem@gmail.com', NULL, 1, '2015-03-18 23:09:30.538334', '2015-03-18 23:09:30.538334')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2745, 'Patricio', 'hibris1@hotmail.com', NULL, 1, '2015-03-18 23:09:31.267346', '2015-03-18 23:09:31.267346')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2746, 'Agnes', 'agnesgonzalezlagos@hotmail.com', NULL, 1, '2015-03-18 23:09:31.337222', '2015-03-18 23:09:31.337222')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2747, 'Miguel', 'mijail.cioran@gmail.com', NULL, 1, '2015-03-18 23:09:31.347882', '2015-03-18 23:09:31.347882')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2748, 'ignacio', 'ignacio.micheli@gmail.com', NULL, 1, '2015-03-18 23:09:31.359144', '2015-03-18 23:09:31.359144')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2749, 'LISSETTE', 'lissetteruiz005@gmail.com', NULL, 1, '2015-03-18 23:09:31.368694', '2015-03-18 23:09:31.368694')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2750, 'Maca', 'makita_1410@hotmail.com', NULL, 1, '2015-03-18 23:09:31.390279', '2015-03-18 23:09:31.390279')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2751, 'Pedro', 'artpower.cl@gmail.com', NULL, 1, '2015-03-18 23:09:31.401303', '2015-03-18 23:09:31.401303')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2752, 'santiago', 'cantaritomix@hotmail.com', NULL, 1, '2015-03-18 23:09:31.411663', '2015-03-18 23:09:31.411663')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2753, 'Denise', 'ddourojeanni@hotmail.com', NULL, 1, '2015-03-18 23:09:31.421557', '2015-03-18 23:09:31.421557')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2754, 'José', 'josemoni@hotmail.com', NULL, 1, '2015-03-18 23:09:31.439249', '2015-03-18 23:09:31.439249')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2755, 'adrian', 'texacoal@hotmail.com', NULL, 1, '2015-03-18 23:09:31.448663', '2015-03-18 23:09:31.448663')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2756, 'alfonso', 'amaggiolo@hotmail.es', NULL, 1, '2015-03-18 23:09:31.457936', '2015-03-18 23:09:31.457936')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2757, 'Comunicación', 'enapcomunicacionsocial@gmail.com', NULL, 1, '2015-03-18 23:09:31.536858', '2015-03-18 23:09:31.536858')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2758, 'MIRTHA', 'mirtha.almada59@gmail.com', NULL, 1, '2015-03-18 23:09:31.546916', '2015-03-18 23:09:31.546916')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2759, 'Aivars', 'a.mangulis@gmail.com', NULL, 1, '2015-03-18 23:09:31.555838', '2015-03-18 23:09:31.555838')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2760, 'LOL', 'lolkincast@gmail.com', NULL, 1, '2015-03-18 23:09:31.565404', '2015-03-18 23:09:31.565404')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2761, 'emilio', 'emiliodessin@gmail.com', NULL, 1, '2015-03-18 23:09:31.589825', '2015-03-18 23:09:31.589825')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2762, 'Carlos', 'elextranjerosefue@gmail.com', NULL, 1, '2015-03-18 23:09:31.599428', '2015-03-18 23:09:31.599428')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2763, 'samuel', 'samuel@cenfoto.cl', NULL, 1, '2015-03-18 23:09:31.608422', '2015-03-18 23:09:31.608422')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2764, 'Hagop', 'hagop2404@gmail.com', NULL, 1, '2015-03-18 23:09:31.634687', '2015-03-18 23:09:31.634687')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2765, 'Carlos', 'andradesilva_carlos@hotmail.com', NULL, 1, '2015-03-18 23:09:31.644437', '2015-03-18 23:09:31.644437')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2766, 'Pia', 'piabahamondes@gmail.com', NULL, 1, '2015-03-18 23:09:31.653560', '2015-03-18 23:09:31.653560')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2767, 'Jacqueline', 'jakicharru@hotmail.com', NULL, 1, '2015-03-18 23:09:31.663036', '2015-03-18 23:09:31.663036')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2768, 'Nicolás', 'os.nico@hotmail.com', NULL, 1, '2015-03-18 23:09:31.672805', '2015-03-18 23:09:31.672805')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2769, 'Luis', 'luis.augusto.u@gmail.com', NULL, 1, '2015-03-18 23:09:31.688796', '2015-03-18 23:09:31.688796')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2770, 'Javier', 'javier_cluzet@yahoo.com', NULL, 1, '2015-03-18 23:09:31.698809', '2015-03-18 23:09:31.698809')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2771, 'javier', 'jhaeger1@hotmail.com', NULL, 1, '2015-03-18 23:09:31.707368', '2015-03-18 23:09:31.707368')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2772, 'Cesareo', 'ca_yn@yahoo.com', NULL, 1, '2015-03-18 23:09:31.716640', '2015-03-18 23:09:31.716640')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2773, 'Andrea', 'andreiandreina@gmail.com', NULL, 1, '2015-03-18 23:09:31.725983', '2015-03-18 23:09:31.725983')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2774, 'Carolina', 'carolina.busquets@gmail.com', NULL, 1, '2015-03-18 23:09:31.738425', '2015-03-18 23:09:31.738425')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2775, 'Nené', 'miriandrealoyolap@gmail.com', NULL, 1, '2015-03-18 23:09:31.747722', '2015-03-18 23:09:31.747722')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2776, 'Danai', 'danaimirka@gmail.com', NULL, 1, '2015-03-18 23:09:31.756414', '2015-03-18 23:09:31.756414')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2777, 'Lorena', 'lorenacmc@gmail.com', NULL, 1, '2015-03-18 23:09:31.765866', '2015-03-18 23:09:31.765866')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2778, 'Paula', 'Paula.morales@live.cl', NULL, 1, '2015-03-18 23:09:31.774961', '2015-03-18 23:09:31.774961')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2779, 'margarita', 'margaritaval@gmail.com', NULL, 1, '2015-03-18 23:09:31.789339', '2015-03-18 23:09:31.789339')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2780, 'JORGE', 'jvargasvillicana@yahoo.com.mx', NULL, 1, '2015-03-18 23:09:31.798486', '2015-03-18 23:09:31.798486')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2781, 'Carmen', 'pazytae@yahoo.es', NULL, 1, '2015-03-18 23:09:31.808247', '2015-03-18 23:09:31.808247')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2782, 'Pamela', 'escuela@pameladelafuente.cl', NULL, 1, '2015-03-18 23:09:31.817620', '2015-03-18 23:09:31.817620')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2783, 'Juan', 'jbvenega@puc.cl', NULL, 1, '2015-03-18 23:09:31.826870', '2015-03-18 23:09:31.826870')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2784, 'Mariángeles', 'mvvega1@uc.cl', NULL, 1, '2015-03-18 23:09:31.839222', '2015-03-18 23:09:31.839222')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2785, 'Roberto', 'atarnacer@yahoo.es', NULL, 1, '2015-03-18 23:09:31.849000', '2015-03-18 23:09:31.849000')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2786, 'Alma', 'kizunarhcp@hotmail.com', NULL, 1, '2015-03-18 23:09:31.859169', '2015-03-18 23:09:31.859169')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2787, 'Alejandra', 'aledil555@hotmail.com', NULL, 1, '2015-03-18 23:09:31.878472', '2015-03-18 23:09:31.878472')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2788, 'mauricio', 'mauricioverde@gmail.com', NULL, 1, '2015-03-18 23:09:31.889158', '2015-03-18 23:09:31.889158')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2789, 'Miguel', 'edarel256@gmail.com', NULL, 1, '2015-03-18 23:09:31.898334', '2015-03-18 23:09:31.898334')  (0.2ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2790, 'Carla', 'perroconcostilla@gmail.com', NULL, 1, '2015-03-18 23:09:31.908304', '2015-03-18 23:09:31.908304')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2791, 'sancheztami@gmail.com', 'sancheztami@gmail.com', NULL, 1, '2015-03-18 23:09:31.917611', '2015-03-18 23:09:31.917611')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2792, 'Gonzalo', 'gonzabar12@gmail.com', NULL, 1, '2015-03-18 23:09:31.927447', '2015-03-18 23:09:31.927447')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2793, 'Francisco', 'ruizfrancisco095@gmail.com', NULL, 1, '2015-03-18 23:09:31.939562', '2015-03-18 23:09:31.939562')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2794, 'FRANCISCO', 'velosoferrari@gmail.com', NULL, 1, '2015-03-18 23:09:31.952498', '2015-03-18 23:09:31.952498')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2795, 'Mario', 'abarcasolari@gmail.com', NULL, 1, '2015-03-18 23:09:31.962353', '2015-03-18 23:09:31.962353')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2796, 'Macarena', 'macarenadaniela@gmail.com', NULL, 1, '2015-03-18 23:09:31.973047', '2015-03-18 23:09:31.973047')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2797, 'Stephanie', 'pepiniplop@gmail.com', NULL, 1, '2015-03-18 23:09:31.989800', '2015-03-18 23:09:31.989800')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2798, 'Ingrid', 'ingridbork@gmail.com', NULL, 1, '2015-03-18 23:09:32.002413', '2015-03-18 23:09:32.002413')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2799, 'Karin', 'khelmlinger@ccs.cl', NULL, 1, '2015-03-18 23:09:32.012877', '2015-03-18 23:09:32.012877')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2800, 'José', 'jose.millapan@gmail.com', NULL, 1, '2015-03-18 23:09:32.022763', '2015-03-18 23:09:32.022763')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2801, 'Martin', 'mbordenave@intv.com.ar', NULL, 1, '2015-03-18 23:09:32.039430', '2015-03-18 23:09:32.039430')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2802, 'Francisco', 'fco.villarroel.f@gmail.com', NULL, 1, '2015-03-18 23:09:32.052959', '2015-03-18 23:09:32.052959')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2803, 'Felipe', 'fba1938@gmail.com', NULL, 1, '2015-03-18 23:09:32.081010', '2015-03-18 23:09:32.081010')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2804, 'cristian', 'cristianfernandezarq@gmail.com', NULL, 1, '2015-03-18 23:09:32.092464', '2015-03-18 23:09:32.092464')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2805, 'Josefina', 'vrjosefina@gmail.com', NULL, 1, '2015-03-18 23:09:32.103108', '2015-03-18 23:09:32.103108')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2806, 'Genesis', 'gperezneriz@gmail.com', NULL, 1, '2015-03-18 23:09:32.112425', '2015-03-18 23:09:32.112425')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2807, 'Bnjamin', 'artbnjamin@gmail.com', NULL, 1, '2015-03-18 23:09:32.122522', '2015-03-18 23:09:32.122522')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2808, 'Francisca', 'francisca.espina@hotmail.com', NULL, 1, '2015-03-18 23:09:32.137847', '2015-03-18 23:09:32.137847')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2809, 'Andrés', 'andrespera16@hotmail.com', NULL, 1, '2015-03-18 23:09:32.148031', '2015-03-18 23:09:32.148031')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2810, 'luis_canuto', 'kyu_7@msn.com', NULL, 1, '2015-03-18 23:09:32.157093', '2015-03-18 23:09:32.157093')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2811, 'Maria', 'mptb45@yahoo.es', NULL, 1, '2015-03-18 23:09:32.167635', '2015-03-18 23:09:32.167635')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2812, 'Orlando', 'orlandojesus7@gmail.com', NULL, 1, '2015-03-18 23:09:32.188450', '2015-03-18 23:09:32.188450')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2813, 'Claudio', 'ccofre@gmail.com', NULL, 1, '2015-03-18 23:09:32.198729', '2015-03-18 23:09:32.198729')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2814, 'Pamela', 'pamela.artetextil@gmail.com', NULL, 1, '2015-03-18 23:09:32.208898', '2015-03-18 23:09:32.208898')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2815, 'Cristián', 'penasagua@gmail.com', NULL, 1, '2015-03-18 23:09:32.219685', '2015-03-18 23:09:32.219685')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2816, 'Andres', 'andressancarlos@gmail.con', NULL, 1, '2015-03-18 23:09:32.237252', '2015-03-18 23:09:32.237252')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2817, 'Jorge', 'jorge_quant@yahoo.com', NULL, 1, '2015-03-18 23:09:32.247345', '2015-03-18 23:09:32.247345')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2818, 'eliseo', 'eliiseo.sp@gmail.com', NULL, 1, '2015-03-18 23:09:32.256789', '2015-03-18 23:09:32.256789')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2819, 'María', 'maria.sanzg@gmail.com', NULL, 1, '2015-03-18 23:09:32.287127', '2015-03-18 23:09:32.287127')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2820, 'Nibaldo', 'undosclik@gmail.com', NULL, 1, '2015-03-18 23:09:32.296666', '2015-03-18 23:09:32.296666')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2821, 'Educación', 'educacioncontinua.arte@uc.cl', NULL, 1, '2015-03-18 23:09:32.307038', '2015-03-18 23:09:32.307038')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2822, 'Constanza', 'constanzada@gmail.com', NULL, 1, '2015-03-18 23:09:32.316783', '2015-03-18 23:09:32.316783')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2823, 'JOSE', 'ERPOLLOSK8@HOTMAIL.COM', NULL, 1, '2015-03-18 23:09:32.326462', '2015-03-18 23:09:32.326462')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2824, 'hugo', 'hugopenavargas@gmail.com', NULL, 1, '2015-03-18 23:09:32.337497', '2015-03-18 23:09:32.337497')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2825, 'Ricardo', 'ricardodonoso.m@gmail.com', NULL, 1, '2015-03-18 23:09:32.348449', '2015-03-18 23:09:32.348449')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2826, 'nuria', 'nuriar.2009@gmail.com', NULL, 1, '2015-03-18 23:09:32.361199', '2015-03-18 23:09:32.361199')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2827, 'Josefa', 'josefa.espinosa.henriquez@gmail.com', NULL, 1, '2015-03-18 23:09:32.371876', '2015-03-18 23:09:32.371876')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2828, 'Doris', 'rosales.azulmagenta@gmail.com', NULL, 1, '2015-03-18 23:09:32.391099', '2015-03-18 23:09:32.391099')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2829, 'ana', 'avidelalira@yahoo.com', NULL, 1, '2015-03-18 23:09:32.418362', '2015-03-18 23:09:32.418362')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2830, 'Antonio', 'antonio_desant_art@hotmail.com', NULL, 1, '2015-03-18 23:09:32.438880', '2015-03-18 23:09:32.438880')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2831, 'Fabián', 'fnarvaezcruz@gmail.com', NULL, 1, '2015-03-18 23:09:32.449306', '2015-03-18 23:09:32.449306')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2832, 'Maca', 'arte@macawall.com', NULL, 1, '2015-03-18 23:09:32.459648', '2015-03-18 23:09:32.459648')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2833, 'lydia', 'redelico@msn.com', NULL, 1, '2015-03-18 23:09:32.795023', '2015-03-18 23:09:32.795023')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2834, 'monica', 'hichia_7@hotmail.com', NULL, 1, '2015-03-18 23:09:32.806774', '2015-03-18 23:09:32.806774')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2835, 'Anyelo', 'anyelogonzalez1@gmail.com', NULL, 1, '2015-03-18 23:09:32.816960', '2015-03-18 23:09:32.816960')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2836, 'camila', 'kmyvalenzuela@gmail.com', NULL, 1, '2015-03-18 23:09:32.827724', '2015-03-18 23:09:32.827724')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2837, 'Rodrigo', 'rorrosilver@gmail.com', NULL, 1, '2015-03-18 23:09:33.304046', '2015-03-18 23:09:33.304046')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2838, 'Adrián', 'adrian.castillosq@gmail.com', NULL, 1, '2015-03-18 23:09:33.382514', '2015-03-18 23:09:33.382514')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2839, 'Jose', 'jotasmt@hotmail.com', NULL, 1, '2015-03-18 23:09:33.393161', '2015-03-18 23:09:33.393161')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2840, 'María', 'xim.silva@hotmail.com', NULL, 1, '2015-03-18 23:09:33.402532', '2015-03-18 23:09:33.402532')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2841, 'Maria', 'mariagraciabisso@gmail.com', NULL, 1, '2015-03-18 23:09:33.411572', '2015-03-18 23:09:33.411572')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2842, 'nicolas', 'sastre49@hotmail.com', NULL, 1, '2015-03-18 23:09:33.420163', '2015-03-18 23:09:33.420163')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2843, 'By3nz', 'unmardehistoria@gmail.com', NULL, 1, '2015-03-18 23:09:33.433838', '2015-03-18 23:09:33.433838')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2844, 'Manuel', 'creacionestany@terra.com', NULL, 1, '2015-03-18 23:09:33.443186', '2015-03-18 23:09:33.443186')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2845, 'sebastián', 'sebastiangilm@hotmail.com', NULL, 1, '2015-03-18 23:09:33.462565', '2015-03-18 23:09:33.462565')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2846, 'Paloma', 'contacto@palomagomez.net', NULL, 1, '2015-03-18 23:09:33.472753', '2015-03-18 23:09:33.472753')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2847, 'Noemi', 'noemitannaka@hotmail.com', NULL, 1, '2015-03-18 23:09:33.485541', '2015-03-18 23:09:33.485541')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2848, 'PABLO', 'pablonuch@gmail.com', NULL, 1, '2015-03-18 23:09:33.510350', '2015-03-18 23:09:33.510350')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2849, 'magali', 'amali94@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:33.520740', '2015-03-18 23:09:33.520740')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2850, 'Charlie', 'chnunezcruz@gmail.com', NULL, 1, '2015-03-18 23:09:33.534561', '2015-03-18 23:09:33.534561')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2851, 'Felipe', 'felipe.mardonesh@gmail.com', NULL, 1, '2015-03-18 23:09:33.544874', '2015-03-18 23:09:33.544874')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2852, 'Gabriel', 'gabriel.holzapfel@gmail.com', NULL, 1, '2015-03-18 23:09:33.554401', '2015-03-18 23:09:33.554401')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2853, 'Alim', 'alim.ampuero@gmail.com', NULL, 1, '2015-03-18 23:09:33.565076', '2015-03-18 23:09:33.565076')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2854, 'residencia', 'residenciatactica@gmail.com', NULL, 1, '2015-03-18 23:09:33.585351', '2015-03-18 23:09:33.585351')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2855, 'HugoProaño', 'hugoproao@yahoo.com', NULL, 1, '2015-03-18 23:09:33.596153', '2015-03-18 23:09:33.596153')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2856, 'Francisco', 'francisco.s.jara@gmail.com', NULL, 1, '2015-03-18 23:09:33.606336', '2015-03-18 23:09:33.606336')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2857, 'Olman', 'Olma.n53@hotmail.com', NULL, 1, '2015-03-18 23:09:33.617254', '2015-03-18 23:09:33.617254')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2858, 'jose', 'olmmarta@gmail.com', NULL, 1, '2015-03-18 23:09:33.633503', '2015-03-18 23:09:33.633503')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2859, 'cristina', 'pacheco-art@hotmail.com', NULL, 1, '2015-03-18 23:09:33.645124', '2015-03-18 23:09:33.645124')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2860, 'Peter', 'petguego@gmail.com', NULL, 1, '2015-03-18 23:09:33.662488', '2015-03-18 23:09:33.662488')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2861, 'aune', 'anita.merendina@gmail.com', NULL, 1, '2015-03-18 23:09:33.672805', '2015-03-18 23:09:33.672805')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2862, 'pedro', 'pedoosoriop@hotmail.com', NULL, 1, '2015-03-18 23:09:33.684422', '2015-03-18 23:09:33.684422')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2863, 'danila', 'danilailabaca@gmail.com', NULL, 1, '2015-03-18 23:09:33.693657', '2015-03-18 23:09:33.693657')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2864, 'jorge', 'artrodriguezdei@hotmail.com', NULL, 1, '2015-03-18 23:09:33.702999', '2015-03-18 23:09:33.702999')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2865, 'Javier', 'javieron9@gmail.com', NULL, 1, '2015-03-18 23:09:33.712698', '2015-03-18 23:09:33.712698')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2866, 'María', 'mary.mor4@gmail.com', NULL, 1, '2015-03-18 23:09:33.721424', '2015-03-18 23:09:33.721424')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2867, 'camila', 'camilahortensia@gmail.com', NULL, 1, '2015-03-18 23:09:33.734286', '2015-03-18 23:09:33.734286')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2868, 'Lu', 'caminodeldia@gmail.com', NULL, 1, '2015-03-18 23:09:33.748972', '2015-03-18 23:09:33.748972')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2869, 'Roberto', 'roberth_moon@hotmail.com', NULL, 1, '2015-03-18 23:09:33.763997', '2015-03-18 23:09:33.763997')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2870, 'Maria', 'consttanza@live.com', NULL, 1, '2015-03-18 23:09:33.783522', '2015-03-18 23:09:33.783522')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2871, 'Elías', 'elicofra@yahoo.com', NULL, 1, '2015-03-18 23:09:33.793143', '2015-03-18 23:09:33.793143')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2872, 'Rodríguez', 'irodriguezmarconi@gmail.com', NULL, 1, '2015-03-18 23:09:33.803325', '2015-03-18 23:09:33.803325')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2873, 'Valeria', 'valeria.viancos@gmail.com', NULL, 1, '2015-03-18 23:09:33.813219', '2015-03-18 23:09:33.813219')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2874, 'Элисо', 'eliso_n@mail.ru', NULL, 1, '2015-03-18 23:09:33.823213', '2015-03-18 23:09:33.823213')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2875, 'Jaime', 'mendozaseminario@hotmail.com', NULL, 1, '2015-03-18 23:09:33.833923', '2015-03-18 23:09:33.833923')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2876, 'David', 'davidcofre@gmail.com', NULL, 1, '2015-03-18 23:09:33.843429', '2015-03-18 23:09:33.843429')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2877, 'Pedro', 'pedrofermin.arte@gmail.com', NULL, 1, '2015-03-18 23:09:33.854043', '2015-03-18 23:09:33.854043')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2878, 'marcos', 'marcos.palacios77@gmail.com', NULL, 1, '2015-03-18 23:09:33.864524', '2015-03-18 23:09:33.864524')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2879, 'Macarena', 'macasanchezm@gmail.com', NULL, 1, '2015-03-18 23:09:33.883267', '2015-03-18 23:09:33.883267')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2880, 'Celeste', 'celesteortich@gmail.com', NULL, 1, '2015-03-18 23:09:33.906877', '2015-03-18 23:09:33.906877')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2881, 'Natalia', 'ramirezv.natalia@gmail.com', NULL, 1, '2015-03-18 23:09:33.917844', '2015-03-18 23:09:33.917844')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2882, 'Elisabet', 'elisabet.genoveva@gmail.com', NULL, 1, '2015-03-18 23:09:33.933469', '2015-03-18 23:09:33.933469')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2883, 'Andres Francisco', 'andres.matusantis@gmail.com', NULL, 1, '2015-03-18 23:09:33.943595', '2015-03-18 23:09:33.943595')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2884, 'Pia', 'pihita.inzunza@gmail.com', NULL, 1, '2015-03-18 23:09:34.055609', '2015-03-18 23:09:34.055609')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2885, 'Jose', 'jm.gonzalez.farias@gmail.com', NULL, 1, '2015-03-18 23:09:34.066444', '2015-03-18 23:09:34.066444')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2886, 'mrelmarc', 'cenzhandyeg@sogou.com', NULL, 1, '2015-03-18 23:09:34.076226', '2015-03-18 23:09:34.076226')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2887, 'Julian', 'julianfarias_22@hotmail.com', NULL, 1, '2015-03-18 23:09:34.086147', '2015-03-18 23:09:34.086147')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2888, 'Sebastian', 'seba.calfuqueo@gmail.com', NULL, 1, '2015-03-18 23:09:34.116511', '2015-03-18 23:09:34.116511')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2889, 'MarMel', 'tonmarmel@hotmail.com', NULL, 1, '2015-03-18 23:09:34.128132', '2015-03-18 23:09:34.128132')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2890, 'Natalia', 'natahuidobro@gmail.com', NULL, 1, '2015-03-18 23:09:34.138028', '2015-03-18 23:09:34.138028')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2891, 'daniel', 'danielgallardo@hotmail.com', NULL, 1, '2015-03-18 23:09:34.148188', '2015-03-18 23:09:34.148188')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2892, 'julio', 'juliopinzon2014@hotmail.com', NULL, 1, '2015-03-18 23:09:34.166282', '2015-03-18 23:09:34.166282')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2893, 'cristóbal', 'eyefocus75@gmail.com', NULL, 1, '2015-03-18 23:09:34.175854', '2015-03-18 23:09:34.175854')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2894, 'Simón', 'sbrojas@uc.cl', NULL, 1, '2015-03-18 23:09:34.184815', '2015-03-18 23:09:34.184815')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2895, 'Mariana', 'marianamarciana@gmail.com', NULL, 1, '2015-03-18 23:09:34.195043', '2015-03-18 23:09:34.195043')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2896, 'Mabel', 'info@mmontes.com.ar', NULL, 1, '2015-03-18 23:09:34.205044', '2015-03-18 23:09:34.205044')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2897, 'tan', 'tanvargas@gmail.com', NULL, 1, '2015-03-18 23:09:34.216330', '2015-03-18 23:09:34.216330')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2898, 'Javiera', 'javieravalenciaarenas@gmail.com', NULL, 1, '2015-03-18 23:09:34.227743', '2015-03-18 23:09:34.227743')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2899, 'Eduardo', 'efeuerhake@gmail.com', NULL, 1, '2015-03-18 23:09:34.236896', '2015-03-18 23:09:34.236896')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2900, 'Francisca', 'fran.infante@live.com', NULL, 1, '2015-03-18 23:09:34.247651', '2015-03-18 23:09:34.247651')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2901, 'Clara', 'claralarrainz@gmail.com', NULL, 1, '2015-03-18 23:09:34.266647', '2015-03-18 23:09:34.266647')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2902, 'Neto', 'ricardolagosmiranda@gmail.com', NULL, 1, '2015-03-18 23:09:34.275877', '2015-03-18 23:09:34.275877')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2903, 'maria', 'mtwilliamslisboa@gmail.com', NULL, 1, '2015-03-18 23:09:34.284865', '2015-03-18 23:09:34.284865')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2904, 'Nicolas', 'nicolasrico1@gmail.com', NULL, 1, '2015-03-18 23:09:34.295383', '2015-03-18 23:09:34.295383')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2905, 'Angel', 'blirusa@yahoo.es', NULL, 1, '2015-03-18 23:09:34.495436', '2015-03-18 23:09:34.495436')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2906, 'Juan', 'juanmsandin@gmail.com', NULL, 1, '2015-03-18 23:09:34.505559', '2015-03-18 23:09:34.505559')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2907, 'Miguel', 'elmigue.contacto@gmail.com', NULL, 1, '2015-03-18 23:09:34.515114', '2015-03-18 23:09:34.515114')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2908, 'Ete', 'mendoquino@gmail.com', NULL, 1, '2015-03-18 23:09:34.526098', '2015-03-18 23:09:34.526098')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2909, 'Jovita ', 'jovisandoval@gmail.com', NULL, 1, '2015-03-18 23:09:34.550499', '2015-03-18 23:09:34.550499')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2910, 'ailine', 'luzailine33@gmail.com', NULL, 1, '2015-03-18 23:09:34.560522', '2015-03-18 23:09:34.560522')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2911, 'Leopoldo', 'leopinturas@hotmail.com', NULL, 1, '2015-03-18 23:09:34.570511', '2015-03-18 23:09:34.570511')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2912, 'Kenji', 'kenji.senda.ferrando@gmail.com', NULL, 1, '2015-03-18 23:09:34.580766', '2015-03-18 23:09:34.580766')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2913, 'Mario', 'mario.morales.astudillo@hotmail.com', NULL, 1, '2015-03-18 23:09:34.602551', '2015-03-18 23:09:34.602551')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2914, 'Giana ', 'gianadedier@gmail.com', NULL, 1, '2015-03-18 23:09:34.632673', '2015-03-18 23:09:34.632673')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2915, 'Sebastian', 'sebastianlartigue@gmail.com', NULL, 1, '2015-03-18 23:09:34.648699', '2015-03-18 23:09:34.648699')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2916, 'miguel', 'soari.miguel@gmail.com', NULL, 1, '2015-03-18 23:09:34.658543', '2015-03-18 23:09:34.658543')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2917, 'Maria Camila', 'camiamado@gmail.com', NULL, 1, '2015-03-18 23:09:34.744369', '2015-03-18 23:09:34.744369')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2918, 'Montalván ', 'montalvanestudio@gmail.com', NULL, 1, '2015-03-18 23:09:34.754532', '2015-03-18 23:09:34.754532')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2919, 'Cynthia', 'cynthiarodriguez76@gmail.com', NULL, 1, '2015-03-18 23:09:34.764096', '2015-03-18 23:09:34.764096')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2920, 'Juan ', 'juanegrande@gmail.com', NULL, 1, '2015-03-18 23:09:34.774647', '2015-03-18 23:09:34.774647')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2921, 'Xavi', 'infocreadors@gmail.com', NULL, 1, '2015-03-18 23:09:34.799671', '2015-03-18 23:09:34.799671')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2922, 'Sumiko', 'sumiko.muray@gmail.com', NULL, 1, '2015-03-18 23:09:34.809746', '2015-03-18 23:09:34.809746')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2923, 'Gabriela ', 'gabyfarnell@gmail.com', NULL, 1, '2015-03-18 23:09:34.818691', '2015-03-18 23:09:34.818691')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2924, 'Jo', 'joaliciamunozv@gmail.com', NULL, 1, '2015-03-18 23:09:34.828506', '2015-03-18 23:09:34.828506')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2925, 'Duncan', 'dmacdonald@brocku.ca', NULL, 1, '2015-03-18 23:09:34.837898', '2015-03-18 23:09:34.837898')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2926, 'Lito', 'litomille@hotmail.com', NULL, 1, '2015-03-18 23:09:34.848153', '2015-03-18 23:09:34.848153')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2927, 'Josefina ', 'josefrederick83@gmail.com', NULL, 1, '2015-03-18 23:09:34.870474', '2015-03-18 23:09:34.870474')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2928, 'Javier', 'pinturadelsur@yahoo.es', NULL, 1, '2015-03-18 23:09:34.885449', '2015-03-18 23:09:34.885449')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2929, 'paloma', 'palomaanahi@gmail.com', NULL, 1, '2015-03-18 23:09:34.900335', '2015-03-18 23:09:34.900335')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2930, 'Sergio ', 'naranjoestudio@hotmail.com', NULL, 1, '2015-03-18 23:09:34.911760', '2015-03-18 23:09:34.911760')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2931, 'daniel', 'danygarciaconbirr@yahoo.com.ar', NULL, 1, '2015-03-18 23:09:35.064905', '2015-03-18 23:09:35.064905')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2932, 'Coco', 'pintorchileno7@gmail.com', NULL, 1, '2015-03-18 23:09:35.075557', '2015-03-18 23:09:35.075557')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2933, 'Ricardo', 'ricardoalfarog@gmail.com', NULL, 1, '2015-03-18 23:09:35.085860', '2015-03-18 23:09:35.085860')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2934, 'oscar', 'oscararroyopaint@gmail.com', NULL, 1, '2015-03-18 23:09:35.095842', '2015-03-18 23:09:35.095842')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2935, 'Carola', 'tecnostyle@hotmail.com', NULL, 1, '2015-03-18 23:09:35.114733', '2015-03-18 23:09:35.114733')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2936, 'Sofía ', 'sofiadonovan@hotmail.com', NULL, 1, '2015-03-18 23:09:35.144731', '2015-03-18 23:09:35.144731')  (0.1ms) INSERT INTO "postino_subscribers" ("id","name","email","state","list_id","created_at","updated_at") VALUES (2937, 'Rodrigo ', 'gal_frias@hotmail.com', NULL, 1, '2015-03-18 23:09:35.165548', '2015-03-18 23:09:35.165548')  (0.6ms) DROP TABLE "apostino_subscribers" SQL (0.4ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20150318225157"]]  (10.7ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddLastNameToPostinoSubscribers (20150318225157)  (0.1ms) begin transaction  (0.5ms) ALTER TABLE "postino_subscribers" ADD "last_name" varchar SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150318225157"]]  (2.4ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:42:47 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Completed 500 Internal Server Error in 6ms ArgumentError (No association found for name `campaign_template'. Has it been defined yet?): activerecord (4.2.0) lib/active_record/nested_attributes.rb:319:in `block in accepts_nested_attributes_for' activerecord (4.2.0) lib/active_record/nested_attributes.rb:307:in `each' activerecord (4.2.0) lib/active_record/nested_attributes.rb:307:in `accepts_nested_attributes_for' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/campaign.rb:10:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/campaign.rb:2:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/campaign.rb:1:in `' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.7ms) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddTemplateToPostinoCampaign (20150319044154)  (0.1ms) begin transaction  (0.5ms) ALTER TABLE "postino_campaigns" ADD "template_id" integer  (0.1ms) select sqlite_version(*)  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.2ms) CREATE INDEX "index_postino_campaigns_on_template_id" ON "postino_campaigns" ("template_id") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150319044154"]]  (62.9ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_template_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:43:11 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (7.7ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (43.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 235ms (Views: 197.4ms | ActiveRecord: 1.7ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:43:12 -0300 Started GET "/postino/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-19 01:50:59 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/design.haml within layouts/postino/application (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 205ms (Views: 169.8ms | ActiveRecord: 1.1ms) Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:51:00 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.1ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.0ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (38.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 114ms (Views: 111.2ms | ActiveRecord: 1.1ms) Started GET "/postino/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-19 01:51:06 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (76.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/design.haml within layouts/postino/application (90.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 172ms (Views: 170.6ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:51:08 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.9ms) Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 170ms (Views: 167.9ms | ActiveRecord: 0.5ms) Started PATCH "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:51:11 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+6RvntOcsQP05wSiJ7xMMO2KHEH5g0kWbRw3Vj5MJiGDYQoMu0J89yNKE4bS2o8SWrhZpfGSg7PhEVmmFakhjQ==", "campaign"=>{"template"=>"1"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameter: template  (0.2ms) begin transaction  (0.5ms) rollback transaction Completed 500 Internal Server Error in 8ms ArgumentError (When assigning attributes, you must pass a hash as an argument.): activerecord (4.2.0) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' activerecord (4.2.0) lib/active_record/persistence.rb:249:in `block in update' activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.0) lib/active_record/persistence.rb:248:in `update' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:19:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.3ms) Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 01:51:30 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (8.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (70.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 221ms (Views: 219.0ms | ActiveRecord: 0.2ms) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddNameToPostinoCampaign (20150319045255)  (0.1ms) begin transaction  (0.6ms) ALTER TABLE "postino_campaigns" ADD "name" varchar SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150319045255"]]  (6.2ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_template_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 01:54:01 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (7.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (151.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 271ms (Views: 233.4ms | ActiveRecord: 1.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:02 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (134.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 217ms (Views: 215.6ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:54:09 -0300 Started PATCH "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 01:54:15 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/z5Dwna32AdEALyXhzWc2O83ttyL759qd2JeCt5S+46H+yZQHmkV85Otq7NyU1/6WAXzOIP+Vc/7bzD69bf8Ig==", "campaign"=>{"name"=>"una campaña", "subject"=>"", "from_name"=>"", "from_email"=>"", "reply_email"=>"", "query_string"=>"", "scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"3", "scheduled_at(3i)"=>"19", "scheduled_at(4i)"=>"04", "scheduled_at(5i)"=>"54", "timezone"=>"(GMT-10:00) Hawaii", "created_at(1i)"=>"2015", "created_at(2i)"=>"3", "created_at(3i)"=>"18", "created_at(4i)"=>"05", "created_at(5i)"=>"18", "updated_at(1i)"=>"2015", "updated_at(2i)"=>"3", "updated_at(3i)"=>"18", "updated_at(4i)"=>"05", "updated_at(5i)"=>"18"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: name, subject, from_name, from_email, reply_email, query_string, scheduled_at(1i), scheduled_at(2i), scheduled_at(3i), scheduled_at(4i), scheduled_at(5i), timezone, created_at(1i), created_at(2i), created_at(3i), created_at(4i), created_at(5i), updated_at(1i), updated_at(2i), updated_at(3i), updated_at(4i), updated_at(5i)  (0.2ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 7ms ArgumentError (When assigning attributes, you must pass a hash as an argument.): activerecord (4.2.0) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' activerecord (4.2.0) lib/active_record/persistence.rb:249:in `block in update' activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.0) lib/active_record/persistence.rb:248:in `update' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:19:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.9ms) Started PATCH "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 01:54:45 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/z5Dwna32AdEALyXhzWc2O83ttyL759qd2JeCt5S+46H+yZQHmkV85Otq7NyU1/6WAXzOIP+Vc/7bzD69bf8Ig==", "campaign"=>{"name"=>"una campaña", "subject"=>"", "from_name"=>"", "from_email"=>"", "reply_email"=>"", "query_string"=>"", "scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"3", "scheduled_at(3i)"=>"19", "scheduled_at(4i)"=>"04", "scheduled_at(5i)"=>"54", "timezone"=>"(GMT-10:00) Hawaii", "created_at(1i)"=>"2015", "created_at(2i)"=>"3", "created_at(3i)"=>"18", "created_at(4i)"=>"05", "created_at(5i)"=>"18", "updated_at(1i)"=>"2015", "updated_at(2i)"=>"3", "updated_at(3i)"=>"18", "updated_at(4i)"=>"05", "updated_at(5i)"=>"18"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameters: name, subject, from_name, from_email, reply_email, query_string, scheduled_at(1i), scheduled_at(2i), scheduled_at(3i), scheduled_at(4i), scheduled_at(5i), timezone, created_at(1i), created_at(2i), created_at(3i), created_at(4i), created_at(5i), updated_at(1i), updated_at(2i), updated_at(3i), updated_at(4i), updated_at(5i) Unpermitted parameters: name, subject, from_name, from_email, reply_email, query_string, scheduled_at(1i), scheduled_at(2i), scheduled_at(3i), scheduled_at(4i), scheduled_at(5i), timezone, created_at(1i), created_at(2i), created_at(3i), created_at(4i), created_at(5i), updated_at(1i), updated_at(2i), updated_at(3i), updated_at(4i), updated_at(5i)  (0.2ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 28775ms ArgumentError (When assigning attributes, you must pass a hash as an argument.): activerecord (4.2.0) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' activerecord (4.2.0) lib/active_record/persistence.rb:249:in `block in update' activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.0) lib/active_record/persistence.rb:248:in `update' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:20:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (18.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.2ms) Started PATCH "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 01:55:17 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/z5Dwna32AdEALyXhzWc2O83ttyL759qd2JeCt5S+46H+yZQHmkV85Otq7NyU1/6WAXzOIP+Vc/7bzD69bf8Ig==", "campaign"=>{"name"=>"una campaña", "subject"=>"", "from_name"=>"", "from_email"=>"", "reply_email"=>"", "query_string"=>"", "scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"3", "scheduled_at(3i)"=>"19", "scheduled_at(4i)"=>"04", "scheduled_at(5i)"=>"54", "timezone"=>"(GMT-10:00) Hawaii", "created_at(1i)"=>"2015", "created_at(2i)"=>"3", "created_at(3i)"=>"18", "created_at(4i)"=>"05", "created_at(5i)"=>"18", "updated_at(1i)"=>"2015", "updated_at(2i)"=>"3", "updated_at(3i)"=>"18", "updated_at(4i)"=>"05", "updated_at(5i)"=>"18"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 17788ms ArgumentError (When assigning attributes, you must pass a hash as an argument.): activerecord (4.2.0) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' activerecord (4.2.0) lib/active_record/persistence.rb:249:in `block in update' activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.0) lib/active_record/persistence.rb:248:in `update' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:20:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.1ms) Started PATCH "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 01:55:44 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"/z5Dwna32AdEALyXhzWc2O83ttyL759qd2JeCt5S+46H+yZQHmkV85Otq7NyU1/6WAXzOIP+Vc/7bzD69bf8Ig==", "campaign"=>{"name"=>"una campaña", "subject"=>"", "from_name"=>"", "from_email"=>"", "reply_email"=>"", "query_string"=>"", "scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"3", "scheduled_at(3i)"=>"19", "scheduled_at(4i)"=>"04", "scheduled_at(5i)"=>"54", "timezone"=>"(GMT-10:00) Hawaii", "created_at(1i)"=>"2015", "created_at(2i)"=>"3", "created_at(3i)"=>"18", "created_at(4i)"=>"05", "created_at(5i)"=>"18", "updated_at(1i)"=>"2015", "updated_at(2i)"=>"3", "updated_at(3i)"=>"18", "updated_at(4i)"=>"05", "updated_at(5i)"=>"18"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (70.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (70.2ms) Completed 200 OK in 3675ms (Views: 220.7ms | ActiveRecord: 1.6ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:55:48 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:55:49 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:55:49 -0300 Started PATCH "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 01:56:48 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"RfrSBnCBvRyfaK0suVyh/3Djab18+Y8abZeGTfKf53s9P7eUGF9w6EjFughMOmLdx9EsWXToRb/hmui92Xrg1w==", "campaign"=>{"name"=>"una campaña", "subject"=>"censo", "from_name"=>"miguel", "from_email"=>"miguelmichelson@gmail.com", "reply_email"=>"miguelmichelson@gmail.com", "query_string"=>"", "scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"3", "scheduled_at(3i)"=>"19", "scheduled_at(4i)"=>"04", "scheduled_at(5i)"=>"54", "timezone"=>"(GMT-10:00) Hawaii", "created_at(1i)"=>"2015", "created_at(2i)"=>"3", "created_at(3i)"=>"18", "created_at(4i)"=>"05", "created_at(5i)"=>"18", "updated_at(1i)"=>"2015", "updated_at(2i)"=>"3", "updated_at(3i)"=>"18", "updated_at(4i)"=>"05", "updated_at(5i)"=>"18"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.5ms) UPDATE "postino_campaigns" SET "name" = ?, "subject" = ?, "from_name" = ?, "from_email" = ?, "reply_email" = ?, "query_string" = ?, "timezone" = ?, "scheduled_at" = ?, "created_at" = ?, "updated_at" = ? WHERE "postino_campaigns"."id" = ? [["name", "una campaña"], ["subject", "censo"], ["from_name", "miguel"], ["from_email", "miguelmichelson@gmail.com"], ["reply_email", "miguelmichelson@gmail.com"], ["query_string", ""], ["timezone", "(GMT-10:00) Hawaii"], ["scheduled_at", "2015-03-19 04:54:00.000000"], ["created_at", "2015-03-18 05:18:00.000000"], ["updated_at", "2015-03-18 05:18:00.000000"], ["id", 1]]  (2.2ms) commit transaction  (0.1ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3000/postino/campaigns/1/wizard/template Completed 302 Found in 6391ms (ActiveRecord: 3.2ms) Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (10.7ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (43.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 123ms (Views: 119.8ms | ActiveRecord: 1.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:56:55 -0300 Started PATCH "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:57:04 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"MKZyOv2Grs03W/Jf+3AlmSOKGrauKB104UoQ6ABPMBRIYxeolVhjOeD25XsOFua7lLhfUqY519FtR34YK6o3uA==", "campaign"=>{"template"=>"1"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 48ms NameError (uninitialized constant Template): activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.0) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' activerecord (4.2.0) lib/active_record/associations/association.rb:214:in `raise_on_type_mismatch!' activerecord (4.2.0) lib/active_record/associations/belongs_to_association.rb:12:in `replace' activerecord (4.2.0) lib/active_record/associations/singular_association.rb:17:in `writer' activerecord (4.2.0) lib/active_record/associations/builder/association.rb:123:in `template=' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:54:in `public_send' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:54:in `_assign_attribute' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:41:in `block in assign_attributes' actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:183:in `each_pair' actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:183:in `each_pair' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:35:in `assign_attributes' activerecord (4.2.0) lib/active_record/persistence.rb:249:in `block in update' activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.0) lib/active_record/persistence.rb:248:in `update' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:19:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (122.5ms) Started PATCH "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:57:31 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"MKZyOv2Grs03W/Jf+3AlmSOKGrauKB104UoQ6ABPMBRIYxeolVhjOeD25XsOFua7lLhfUqY519FtR34YK6o3uA==", "campaign"=>{"template"=>"1"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 51ms ActiveRecord::AssociationTypeMismatch (Postino::Template(#70214715545720) expected, got String(#70214687641980)): activerecord (4.2.0) lib/active_record/associations/association.rb:216:in `raise_on_type_mismatch!' activerecord (4.2.0) lib/active_record/associations/belongs_to_association.rb:12:in `replace' activerecord (4.2.0) lib/active_record/associations/singular_association.rb:17:in `writer' activerecord (4.2.0) lib/active_record/associations/builder/association.rb:123:in `template=' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:54:in `public_send' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:54:in `_assign_attribute' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:41:in `block in assign_attributes' actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:183:in `each_pair' actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:183:in `each_pair' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:35:in `assign_attributes' activerecord (4.2.0) lib/active_record/persistence.rb:249:in `block in update' activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.0) lib/active_record/persistence.rb:248:in `update' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaign_wizard_controller.rb:19:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (119.2ms) Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:57:49 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (10.0ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (37.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 122ms (Views: 119.7ms | ActiveRecord: 0.7ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:57:49 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:57:49 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:57:49 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:57:49 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:57:49 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:57:49 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:57:50 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:50 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:50 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:50 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:50 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:50 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:50 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:50 -0300 Started PATCH "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:57:52 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"3zykPsg8tWaErnSXTryhjQvUy19IsDI4izCwYkJgUiOn+cGsoOJ4klMDY7O72mKvvOaOu0Ch+J0HPd6SaYVVjw==", "campaign"=>{"template_id"=>"1"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction Postino::Template Load (0.5ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] SQL (0.5ms) UPDATE "postino_campaigns" SET "template_id" = ?, "html_content" = ?, "updated_at" = ? WHERE "postino_campaigns"."id" = ? [["template_id", 1], ["html_content", "

"], ["updated_at", "2015-03-19 04:57:52.492828"], ["id", 1]]  (6.6ms) commit transaction  (0.1ms) begin transaction  (0.3ms) commit transaction Redirected to http://localhost:3000/postino/campaigns/1/wizard/design Completed 302 Found in 27ms (ActiveRecord: 8.3ms) Started GET "/postino/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-19 01:57:52 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (7.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/design.haml within layouts/postino/application (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 189ms (Views: 186.6ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:52 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:52 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:52 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:57:52 -0300 Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:57:59 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.9ms) Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 101ms (Views: 99.0ms | ActiveRecord: 0.4ms) Started PATCH "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:58:01 -0300 Processing by Postino::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"SQtg9dTYncyV4z/ko5jplZUfruW0BSljxhnsEJlQBuMxzgVnvAZQOEJOKMBW/iq3Ii3rAbwU48ZKFILgsrUBTw==", "campaign"=>{"template_id"=>"1"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction  (0.1ms) commit transaction  (0.1ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3000/postino/campaigns/1/wizard/design Completed 302 Found in 8ms (ActiveRecord: 0.5ms) Started GET "/postino/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-19 01:58:01 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.1ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/design.haml within layouts/postino/application (91.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 174ms (Views: 173.3ms | ActiveRecord: 0.1ms) Started GET "/postino/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-19 01:58:07 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/confirm.haml within layouts/postino/application (15.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 95ms (Views: 92.6ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-19 01:58:48 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/confirm.haml within layouts/postino/application (91.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 174ms (Views: 172.6ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:49 -0300 Started GET "/postino/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (10.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/confirm.haml within layouts/postino/application (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 184ms (Views: 181.9ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:58:59 -0300 Started GET "/postino/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/confirm.haml within layouts/postino/application (18.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 95ms (Views: 92.8ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:09 -0300 Started GET "/postino/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (8.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/design.haml within layouts/postino/application (98.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.3ms) Completed 200 OK in 181ms (Views: 179.8ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:53 -0300 Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.3ms) Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 183ms (Views: 180.5ms | ActiveRecord: 0.6ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:54 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (8.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (73.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 156ms (Views: 154.2ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:55 -0300 Started GET "/postino/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (6.4ms) Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/list.haml within layouts/postino/application (46.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 133ms (Views: 130.5ms | ActiveRecord: 1.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 01:59:56 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (7.2ms) Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (98.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 187ms (Views: 184.1ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:57 -0300 Started GET "/postino/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/design.haml within layouts/postino/application (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 95ms (Views: 93.7ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 01:59:58 -0300 Started GET "/postino/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-19 02:02:19 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (5.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/confirm.haml within layouts/postino/application (17.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 135ms (Views: 94.4ms | ActiveRecord: 1.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:02:20 -0300 Started GET "/postino/manage/campaigns/1/preview" for 127.0.0.1 at 2015-03-19 02:02:25 -0300 AbstractController::ActionNotFound (The action 'preview' could not be found for Postino::CampaignsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.7ms) Started GET "/postino/manage/campaigns/1/preview" for 127.0.0.1 at 2015-03-19 02:03:22 -0300 Processing by Postino::CampaignsController#preview as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/preview.haml within layouts/postino/application (1.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 110ms (Views: 78.0ms | ActiveRecord: 1.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:22 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:22 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:22 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:22 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:22 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:23 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:23 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:23 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:23 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:23 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:23 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:23 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:23 -0300 Started GET "/postino/manage/campaigns/1/preview" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Processing by Postino::CampaignsController#preview as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/preview.haml within layouts/postino/application (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 81ms (Views: 79.3ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:03:31 -0300 Started GET "/postino/manage/campaigns/1/preview" for 127.0.0.1 at 2015-03-19 02:04:05 -0300 Processing by Postino::CampaignsController#preview as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/preview.haml within layouts/postino/application (2.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 81ms (Views: 78.9ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:05 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:05 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:05 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:05 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:05 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:05 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:06 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:06 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:06 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:06 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:06 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:06 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:06 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:06 -0300 Started GET "/postino/manage/campaigns/1/preview" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Processing by Postino::CampaignsController#preview as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/preview.haml within layouts/postino/application (2.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 86ms (Views: 85.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:20 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 02:04:29 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (17.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 126ms (Views: 117.7ms | ActiveRecord: 0.9ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:30 -0300 Started GET "/postino/manage/lists/2" for 127.0.0.1 at 2015-03-19 02:04:31 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"2"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 2]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (11.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 106ms (Views: 97.1ms | ActiveRecord: 1.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:32 -0300 Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (51.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 127ms (Views: 123.6ms | ActiveRecord: 1.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:34 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (3.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 85ms (Views: 83.3ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:04:38 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 02:05:42 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 85ms (Views: 83.8ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:43 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (93.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 180ms (Views: 173.7ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:44 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (5.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 82ms (Views: 80.9ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:45 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 02:05:46 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (9.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.2ms) Completed 200 OK in 166ms (Views: 165.4ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:05:47 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 02:08:53 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.6ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (42.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 129ms (Views: 122.1ms | ActiveRecord: 1.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:08:54 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 02:29:25 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (16.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 107ms (Views: 100.0ms | ActiveRecord: 1.0ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/assets/postino/application-1cf51cba8aca43b4899b9dcf07af9433.js?body=1" for 127.0.0.1 at 2015-03-19 02:29:26 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 02:29:27 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (13.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.2ms) Completed 200 OK in 188ms (Views: 178.3ms | ActiveRecord: 0.9ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 02:29:29 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.2ms) Completed 200 OK in 87ms (Views: 85.2ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 02:29:32 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (35.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 131ms (Views: 122.1ms | ActiveRecord: 0.7ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-19 02:29:34 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/application (2.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 163ms (Views: 160.0ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 02:57:58 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.6ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (16.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 104ms (Views: 96.6ms | ActiveRecord: 1.2ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-19 02:58:02 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (89.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 255ms (Views: 243.6ms | ActiveRecord: 3.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 03:00:11 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (3.6ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (51.5ms) Completed 500 Internal Server Error in 420ms ActionView::Template::Error (couldn't find file 'jquery' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/javascripts/postino/application.js:14)): 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries 12: /[if lt IE 9] sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:137:in `block in javascript_include_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `javascript_include_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:9:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3980421542665421268_70176670900840' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (22.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (57.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (140.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 03:01:17 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (4.1ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (102.6ms) Completed 500 Internal Server Error in 359ms ActionView::Template::Error (couldn't find file 'jquery-ujs' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/javascripts/postino/application.js:15)): 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries 12: /[if lt IE 9] sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:137:in `block in javascript_include_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `javascript_include_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:9:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml__4250969585685893272_70306790511900' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (78.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (34.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (137.5ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 03:18:55 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (14.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (6.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (3.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (2.6ms) Completed 200 OK in 288ms (Views: 281.5ms | ActiveRecord: 0.8ms) Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 03:18:55 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 03:18:57 -0300 Processing by Postino::CampaignsController#index as HTML Completed 500 Internal Server Error in 0ms ArgumentError (wrong number of arguments (1 for 0)): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:44:in `send' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.4ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 03:20:32 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (99.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 196ms (Views: 178.4ms | ActiveRecord: 1.0ms) Started GET "/postino/manage/campaigns/1/preview" for 127.0.0.1 at 2015-03-19 03:20:36 -0300 Processing by Postino::CampaignsController#preview as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/preview.haml within layouts/postino/application (3.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 163ms (Views: 140.6ms | ActiveRecord: 0.4ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 03:20:38 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (11.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 152ms (Views: 150.8ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/campaigns/1/deliver" for 127.0.0.1 at 2015-03-19 03:20:40 -0300 Processing by Postino::CampaignsController#deliver as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (17.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? [["id", 1]] Postino::CampaignMailer#newsletter: processed outbound mail in 544.2ms Sent mail to miguelmichelson@gmail.com (188.8ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: miguelmichelson@gmail.com Message-ID: <550a6ab94defe_9d0e3ff1934c82e4144c2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to jorge@numcero.cl (75.2ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: jorge@numcero.cl Message-ID: <550a6ab9799f2_9d0e3ff1934c82e414578@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to taoanarkripta@yahoo.com.ar (9.4ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: taoanarkripta@yahoo.com.ar Message-ID: <550a6ab98cbab_9d0e3ff1934c82e4146c3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to amplifica@gmail.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: amplifica@gmail.com Message-ID: <550a6ab98f821_9d0e3ff1934c82e414738@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to arriagada.isabel@gmail.com (9.9ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: arriagada.isabel@gmail.com Message-ID: <550a6ab99272f_9d0e3ff1934c82e4148c6@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.9ms Sent mail to alcidesperez2002@hotmail.com (12.2ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: alcidesperez2002@hotmail.com Message-ID: <550a6ab995c77_9d0e3ff1934c82e41491e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to aquinteros101@yahoo.com (10.2ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: aquinteros101@yahoo.com Message-ID: <550a6ab9992a6_9d0e3ff1934c82e4150a2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to ahteum@gmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: ahteum@gmail.com Message-ID: <550a6ab99c4f3_9d0e3ff1934c82e41517a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to psthandier@gmail.com (10.0ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: psthandier@gmail.com Message-ID: <550a6ab99f34d_9d0e3ff1934c82e41524d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.2ms Sent mail to diego.mz@gmail.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: diego.mz@gmail.com Message-ID: <550a6ab9a2b66_9d0e3ff1934c82e415312@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to mariazc@gmail.com (9.2ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: mariazc@gmail.com Message-ID: <550a6ab9a5f6e_9d0e3ff1934c82e415461@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to juan.mb1@gmail.com (8.2ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: juan.mb1@gmail.com Message-ID: <550a6ab9a88cd_9d0e3ff1934c82e4155a2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to tiopico@gmail.com (8.5ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: tiopico@gmail.com Message-ID: <550a6ab9ab092_9d0e3ff1934c82e4156d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 63.4ms Sent mail to luchohino@gmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: luchohino@gmail.com Message-ID: <550a6ab9bced5_9d0e3ff1934c82e41578b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to mgraur02@yahoo.es (8.8ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: mgraur02@yahoo.es Message-ID: <550a6ab9bff58_9d0e3ff1934c82e4158e3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to delrio.clemente@gmail.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: delrio.clemente@gmail.com Message-ID: <550a6ab9c2b61_9d0e3ff1934c82e4159c5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to pernildeherodes@gmail.com (11.1ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: pernildeherodes@gmail.com Message-ID: <550a6ab9c5ab3_9d0e3ff1934c82e4160c8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to smaquieirao@hotmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: smaquieirao@hotmail.com Message-ID: <550a6ab9c8ddb_9d0e3ff1934c82e4161b8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to gabrieldfbannen@hotmail.com (10.2ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: gabrieldfbannen@hotmail.com Message-ID: <550a6ab9cbe7a_9d0e3ff1934c82e4162de@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to florenciapozo@gmail.com (9.9ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: florenciapozo@gmail.com Message-ID: <550a6ab9cf206_9d0e3ff1934c82e41633d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to jojofuentes@yahoo.com (11.1ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: jojofuentes@yahoo.com Message-ID: <550a6ab9d2251_9d0e3ff1934c82e4164e0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to carmonagabriela.s@gmail.com (11.3ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: carmonagabriela.s@gmail.com Message-ID: <550a6ab9d5b99_9d0e3ff1934c82e416519@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to tanvargas@hotmail.com (10.4ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: tanvargas@hotmail.com Message-ID: <550a6ab9d8ff4_9d0e3ff1934c82e4166aa@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to apablazabaschmann@gmail.com (11.7ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: apablazabaschmann@gmail.com Message-ID: <550a6ab9dc260_9d0e3ff1934c82e416718@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to kaelazo@gmail.com (73.6ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: kaelazo@gmail.com Message-ID: <550a6ab9e0144_9d0e3ff1934c82e4168aa@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to lacoonsu@gmail.com (9.1ms) Date: Thu, 19 Mar 2015 03:20:41 -0300 From: miguel To: lacoonsu@gmail.com Message-ID: <550a6ab9f25e2_9d0e3ff1934c82e416932@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to greenmaik7@hotmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: greenmaik7@hotmail.com Message-ID: <550a6abacda_9d0e3ff1934c82e417021@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to pretereto@paranoia.cl (12.7ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: pretereto@paranoia.cl Message-ID: <550a6aba44f3_9d0e3ff1934c82e4171c4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to diegobianchi@ciudad.com.ar (9.8ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: diegobianchi@ciudad.com.ar Message-ID: <550a6aba7fc8_9d0e3ff1934c82e4172b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to mnemenauta@yahoo.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: mnemenauta@yahoo.com Message-ID: <550a6abaaff8_9d0e3ff1934c82e4173ae@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to mzelehoski@yahoo.com (12.5ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: mzelehoski@yahoo.com Message-ID: <550a6abade5a_9d0e3ff1934c82e41747e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to catalina.rojas@vtr.net (11.1ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: catalina.rojas@vtr.net Message-ID: <550a6aba11a04_9d0e3ff1934c82e41756f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to carolinaschmidtp@gmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: carolinaschmidtp@gmail.com Message-ID: <550a6aba14f0d_9d0e3ff1934c82e41762d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to corderodediozz@yahoo.es (8.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: corderodediozz@yahoo.es Message-ID: <550a6aba17c8e_9d0e3ff1934c82e41774d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to jcarmona@dialectos.cl (13.5ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: jcarmona@dialectos.cl Message-ID: <550a6aba1a824_9d0e3ff1934c82e417846@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to carodriguezez@gmail.es (79.5ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: carodriguezez@gmail.es Message-ID: <550a6aba1e980_9d0e3ff1934c82e41796b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to lulamothe@gmail.com (12.9ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: lulamothe@gmail.com Message-ID: <550a6aba32b21_9d0e3ff1934c82e41803@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to evaporarte@hotmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: evaporarte@hotmail.com Message-ID: <550a6aba3678c_9d0e3ff1934c82e4181a0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to fotografiaglomerada@gmail.com (8.1ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: fotografiaglomerada@gmail.com Message-ID: <550a6aba3966d_9d0e3ff1934c82e418286@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to joseoportot@hotmail.com (8.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: joseoportot@hotmail.com Message-ID: <550a6aba3be1f_9d0e3ff1934c82e418317@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to danizderich@gmail.com (9.4ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: danizderich@gmail.com Message-ID: <550a6aba3e67c_9d0e3ff1934c82e4184bf@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to ricardoparra_1@yahoo.es (10.6ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: ricardoparra_1@yahoo.es Message-ID: <550a6aba41a94_9d0e3ff1934c82e4185e0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.3ms Sent mail to guerranuclear@gmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: guerranuclear@gmail.com Message-ID: <550a6aba45046_9d0e3ff1934c82e41863b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to semilla@mi.cl (8.1ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: semilla@mi.cl Message-ID: <550a6aba47ed8_9d0e3ff1934c82e418718@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to angiesaiz@gmail.com (11.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: angiesaiz@gmail.com Message-ID: <550a6aba4a850_9d0e3ff1934c82e418850@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.3ms Sent mail to elenaro@prodigy.net.mx (17.6ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: elenaro@prodigy.net.mx Message-ID: <550a6aba4e5bd_9d0e3ff1934c82e4189c0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.9ms Sent mail to federicoinfantelorca@gmail.com (81.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: federicoinfantelorca@gmail.com Message-ID: <550a6aba53b71_9d0e3ff1934c82e4190fd@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to elalegrepintor@gmail.com (11.4ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: elalegrepintor@gmail.com Message-ID: <550a6aba67f33_9d0e3ff1934c82e4191b1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to nakkao@hotmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: nakkao@hotmail.com Message-ID: <550a6aba6b275_9d0e3ff1934c82e4192e8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to aymarazegers@gmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: aymarazegers@gmail.com Message-ID: <550a6aba6e616_9d0e3ff1934c82e419333@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to esperbravo7@yahoo.es (8.9ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: esperbravo7@yahoo.es Message-ID: <550a6aba712eb_9d0e3ff1934c82e41944e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to jcsistem@gmail.com (32.5ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: jcsistem@gmail.com Message-ID: <550a6aba74022_9d0e3ff1934c82e4195fb@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.7ms Sent mail to klaudiakemper@gmail.com (11.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: klaudiakemper@gmail.com Message-ID: <550a6aba7d114_9d0e3ff1934c82e41961c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to artesor@yahoo.es (14.5ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: artesor@yahoo.es Message-ID: <550a6aba80325_9d0e3ff1934c82e419776@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.6ms Sent mail to amaliavaldes@gmail.com (15.8ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: amaliavaldes@gmail.com Message-ID: <550a6aba85124_9d0e3ff1934c82e419892@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to marcelo@apurolapiz.cl (12.0ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: marcelo@apurolapiz.cl Message-ID: <550a6aba89599_9d0e3ff1934c82e41991a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to yoistik@gmail.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: yoistik@gmail.com Message-ID: <550a6aba8cc11_9d0e3ff1934c82e420065@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to ericschiodtz7@hotmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: ericschiodtz7@hotmail.com Message-ID: <550a6aba90005_9d0e3ff1934c82e420173@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to barbara@gillmore.cl (69.8ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: barbara@gillmore.cl Message-ID: <550a6aba933bf_9d0e3ff1934c82e4202ad@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to izquierdo.v@gmail.com (13.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: izquierdo.v@gmail.com Message-ID: <550a6abaa534e_9d0e3ff1934c82e420386@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to ytoaranda@gmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: ytoaranda@gmail.com Message-ID: <550a6abaa8b59_9d0e3ff1934c82e4204d5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to llaikelpaikel@gmail.com (9.0ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: llaikelpaikel@gmail.com Message-ID: <550a6abaab8a1_9d0e3ff1934c82e420520@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to proyectoslaura@yahoo.es (8.7ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: proyectoslaura@yahoo.es Message-ID: <550a6abaae4c7_9d0e3ff1934c82e4206f8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to pazmb@hotmail.com (12.5ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: pazmb@hotmail.com Message-ID: <550a6abab1003_9d0e3ff1934c82e420731@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to arte_fuego@hotmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: arte_fuego@hotmail.com Message-ID: <550a6abab4c15_9d0e3ff1934c82e4208f8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to tessiebujes@gmail.com (11.0ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: tessiebujes@gmail.com Message-ID: <550a6abab7d91_9d0e3ff1934c82e420969@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to jocegza@gmail.com (12.1ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: jocegza@gmail.com Message-ID: <550a6ababb613_9d0e3ff1934c82e4210e4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to ja_watt75@yahoo.es (10.1ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: ja_watt75@yahoo.es Message-ID: <550a6ababf171_9d0e3ff1934c82e4211c5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.3ms Sent mail to natosalt@yahoo.es (12.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: natosalt@yahoo.es Message-ID: <550a6abac26f7_9d0e3ff1934c82e4212e5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to fgamboac@gmail.com (80.8ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: fgamboac@gmail.com Message-ID: <550a6abac5eba_9d0e3ff1934c82e421375@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to agablerp@gmail.com (11.5ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: agablerp@gmail.com Message-ID: <550a6abada62e_9d0e3ff1934c82e42146e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to paulagarrido@hotmail.com (11.0ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: paulagarrido@hotmail.com Message-ID: <550a6abadddcd_9d0e3ff1934c82e42158a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to art210@latinmail.com (11.4ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: art210@latinmail.com Message-ID: <550a6abae13f3_9d0e3ff1934c82e421676@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to pintoralan@gmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: pintoralan@gmail.com Message-ID: <550a6abae49fe_9d0e3ff1934c82e4217d3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to daniellaperbac@gmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: daniellaperbac@gmail.com Message-ID: <550a6abae7ab6_9d0e3ff1934c82e421896@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to maramar.mar@gmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: maramar.mar@gmail.com Message-ID: <550a6abaea749_9d0e3ff1934c82e4219e5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to francoescultor@yahoo.com.ar (10.4ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: francoescultor@yahoo.com.ar Message-ID: <550a6abaed70c_9d0e3ff1934c82e422088@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to mariananajmanovich@gmail.com (11.8ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: mariananajmanovich@gmail.com Message-ID: <550a6abaf0a40_9d0e3ff1934c82e422119@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to schwarzenberg@mananaart.de (10.9ms) Date: Thu, 19 Mar 2015 03:20:42 -0300 From: miguel To: schwarzenberg@mananaart.de Message-ID: <550a6abb133_9d0e3ff1934c82e4222aa@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.4ms Sent mail to kamilitak@gmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: kamilitak@gmail.com Message-ID: <550a6abb3a3f_9d0e3ff1934c82e4223f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to pinkantoinette@gmail.com (9.2ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: pinkantoinette@gmail.com Message-ID: <550a6abb6df2_9d0e3ff1934c82e42244@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to cristoallende@gmail.com (74.4ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: cristoallende@gmail.com Message-ID: <550a6abb9810_9d0e3ff1934c82e42253d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to erico_locuas@hotmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: erico_locuas@hotmail.com Message-ID: <550a6abb1c61e_9d0e3ff1934c82e422640@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to lay.sergio@gmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: lay.sergio@gmail.com Message-ID: <550a6abb1f6b2_9d0e3ff1934c82e4227b0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to artmourey@gmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: artmourey@gmail.com Message-ID: <550a6abb2277b_9d0e3ff1934c82e422892@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to rikardopizarro@gmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: rikardopizarro@gmail.com Message-ID: <550a6abb2586a_9d0e3ff1934c82e422947@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to starskybrines@gmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: starskybrines@gmail.com Message-ID: <550a6abb28ab3_9d0e3ff1934c82e4230c9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to cocaburnier@hotmail.com (9.4ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: cocaburnier@hotmail.com Message-ID: <550a6abb2bfd8_9d0e3ff1934c82e423126@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to natosalt@gmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: natosalt@gmail.com Message-ID: <550a6abb2eafb_9d0e3ff1934c82e423274@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to centauro@manquehue.net (10.8ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: centauro@manquehue.net Message-ID: <550a6abb31dbe_9d0e3ff1934c82e4233ed@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to amr@galeriarte.cl (11.0ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: amr@galeriarte.cl Message-ID: <550a6abb353c7_9d0e3ff1934c82e4234af@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to angelesguzmanf@gmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: angelesguzmanf@gmail.com Message-ID: <550a6abb38956_9d0e3ff1934c82e42355f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to isaaraneda@hotmail.com (72.5ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: isaaraneda@hotmail.com Message-ID: <550a6abb3bbe9_9d0e3ff1934c82e423620@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to adansat@hotmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: adansat@hotmail.com Message-ID: <550a6abb4e130_9d0e3ff1934c82e4237c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to dvergaralira@yahoo.es (11.7ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: dvergaralira@yahoo.es Message-ID: <550a6abb516f0_9d0e3ff1934c82e4238cf@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to jonathansanguezag@gmail.com (9.5ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: jonathansanguezag@gmail.com Message-ID: <550a6abb54f47_9d0e3ff1934c82e423948@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to muriel.gw@gmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: muriel.gw@gmail.com Message-ID: <550a6abb57db7_9d0e3ff1934c82e4240df@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to carolina.hermana@gmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: carolina.hermana@gmail.com Message-ID: <550a6abb5af8a_9d0e3ff1934c82e4241c4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to carolinaolmedocarrasco@gmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: carolinaolmedocarrasco@gmail.com Message-ID: <550a6abb5e36e_9d0e3ff1934c82e4242c4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to celizama@uach.cl (20.5ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: celizama@uach.cl Message-ID: <550a6abb61a3b_9d0e3ff1934c82e42437e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to dondiego@hotmail.com (22.5ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: dondiego@hotmail.com Message-ID: <550a6abb675e0_9d0e3ff1934c82e4244e9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.9ms Sent mail to serveralvarado@gmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: serveralvarado@gmail.com Message-ID: <550a6abb6d9f8_9d0e3ff1934c82e4245d8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to tierradesombra@yahoo.es (10.4ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: tierradesombra@yahoo.es Message-ID: <550a6abb7102c_9d0e3ff1934c82e42463f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to alexchellewm@yahoo.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: alexchellewm@yahoo.com Message-ID: <550a6abb73e48_9d0e3ff1934c82e4247bc@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to carmvalle@gmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: carmvalle@gmail.com Message-ID: <550a6abb86ffd_9d0e3ff1934c82e424897@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to antonellagd@hotmail.com (10.2ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: antonellagd@hotmail.com Message-ID: <550a6abb8a64e_9d0e3ff1934c82e4249b2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to coltra@mi.cl (8.9ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: coltra@mi.cl Message-ID: <550a6abb8d7b3_9d0e3ff1934c82e4250b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to flores_bx@yahoo.es (15.0ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: flores_bx@yahoo.es Message-ID: <550a6abb907e0_9d0e3ff1934c82e425160@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.9ms Sent mail to andreafortuita@gmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: andreafortuita@gmail.com Message-ID: <550a6abb94b52_9d0e3ff1934c82e425226@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to esteban.echague@gmail.com (8.7ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: esteban.echague@gmail.com Message-ID: <550a6abb97800_9d0e3ff1934c82e4253c2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to bravocarreno@gmail.com (8.5ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: bravocarreno@gmail.com Message-ID: <550a6abb9a383_9d0e3ff1934c82e4254a7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to superbabyfell@yahoo.es (9.9ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: superbabyfell@yahoo.es Message-ID: <550a6abb9cea3_9d0e3ff1934c82e425587@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to lecarosamaro@gmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: lecarosamaro@gmail.com Message-ID: <550a6abb9fd7c_9d0e3ff1934c82e425631@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to aa.casanova@gmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: aa.casanova@gmail.com Message-ID: <550a6abba2d8f_9d0e3ff1934c82e42572@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to carlossilvatroncoso@hotmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: carlossilvatroncoso@hotmail.com Message-ID: <550a6abba60c7_9d0e3ff1934c82e42585e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to pajarovolante77@gmail.com (89.0ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: pajarovolante77@gmail.com Message-ID: <550a6abba9327_9d0e3ff1934c82e425956@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.5ms Sent mail to contacto@mvgallo.cl (14.2ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: contacto@mvgallo.cl Message-ID: <550a6abbc2e9e_9d0e3ff1934c82e4260e2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.8ms Sent mail to igna_cl@hotmail.com (12.5ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: igna_cl@hotmail.com Message-ID: <550a6abbc7935_9d0e3ff1934c82e42616a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to cvelascog@yahoo.com (14.1ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: cvelascog@yahoo.com Message-ID: <550a6abbcb658_9d0e3ff1934c82e4262ae@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to pafa53@hotmail.com (8.7ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: pafa53@hotmail.com Message-ID: <550a6abbcf2f8_9d0e3ff1934c82e4263a0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.3ms Sent mail to tatevary@yahoo.com (9.2ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: tatevary@yahoo.com Message-ID: <550a6abbd2521_9d0e3ff1934c82e4264b4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to carlitos_artes@hotmail.com (11.2ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: carlitos_artes@hotmail.com Message-ID: <550a6abbd4fde_9d0e3ff1934c82e4265e5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to mairysethvargas@gmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: mairysethvargas@gmail.com Message-ID: <550a6abbda440_9d0e3ff1934c82e4266b3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to larayav@gmail.com (12.3ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: larayav@gmail.com Message-ID: <550a6abbdd33f_9d0e3ff1934c82e42676a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to cristal.ferret@gmail.com (13.7ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: cristal.ferret@gmail.com Message-ID: <550a6abbe0fb5_9d0e3ff1934c82e42684b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to clom99@yahoo.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: clom99@yahoo.com Message-ID: <550a6abbe6101_9d0e3ff1934c82e426971@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to alejandrabasualdo@gmail.com (77.6ms) Date: Thu, 19 Mar 2015 03:20:43 -0300 From: miguel To: alejandrabasualdo@gmail.com Message-ID: <550a6abbe8c6e_9d0e3ff1934c82e4270a4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to aviva@vtr.net (9.9ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: aviva@vtr.net Message-ID: <550a6abc82f7_9d0e3ff1934c82e4271e2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.5ms Sent mail to oyarce100@hotmail.com (12.8ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: oyarce100@hotmail.com Message-ID: <550a6abcbc37_9d0e3ff1934c82e4272d6@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to increado@hotmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: increado@hotmail.com Message-ID: <550a6abcfa45_9d0e3ff1934c82e4273f7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to chegrarte@yahoo.com.ar (10.8ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: chegrarte@yahoo.com.ar Message-ID: <550a6abc1383b_9d0e3ff1934c82e4274b7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.3ms Sent mail to bmodinger@hotmail.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: bmodinger@hotmail.com Message-ID: <550a6abc17127_9d0e3ff1934c82e427517@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to hugotripodi@yahoo.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: hugotripodi@yahoo.com Message-ID: <550a6abc1a500_9d0e3ff1934c82e427626@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to c.macan@gmail.com (11.1ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: c.macan@gmail.com Message-ID: <550a6abc200de_9d0e3ff1934c82e4277ab@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to cali83@gmail.com (8.7ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: cali83@gmail.com Message-ID: <550a6abc23622_9d0e3ff1934c82e42781a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to luisengranajes@hotmail.com (10.2ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: luisengranajes@hotmail.com Message-ID: <550a6abc26114_9d0e3ff1934c82e4279c1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to ortegach@gmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: ortegach@gmail.com Message-ID: <550a6abc2b099_9d0e3ff1934c82e428075@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to paloma_iva@yahoo.com (73.1ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: paloma_iva@yahoo.com Message-ID: <550a6abc2dd72_9d0e3ff1934c82e4281a9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to fernandobruma@swissinfo.org (8.4ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: fernandobruma@swissinfo.org Message-ID: <550a6abc40572_9d0e3ff1934c82e4282e1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to ira_el_bardo@hotmail.com (12.3ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: ira_el_bardo@hotmail.com Message-ID: <550a6abc431f5_9d0e3ff1934c82e42837a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to artebariquia@yahoo.es (9.7ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: artebariquia@yahoo.es Message-ID: <550a6abc466e0_9d0e3ff1934c82e428438@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to claudia@claudiaolivos.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: claudia@claudiaolivos.com Message-ID: <550a6abc4b237_9d0e3ff1934c82e428571@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to anakarinavalecillos@gmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: anakarinavalecillos@gmail.com Message-ID: <550a6abc4e2ac_9d0e3ff1934c82e4286de@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to ansiarte@gmail.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: ansiarte@gmail.com Message-ID: <550a6abc517e1_9d0e3ff1934c82e428749@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to correocamila@gmail.com (12.2ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: correocamila@gmail.com Message-ID: <550a6abc575d7_9d0e3ff1934c82e428875@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to ralmistiblue@hotmail.com (10.6ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: ralmistiblue@hotmail.com Message-ID: <550a6abc5ae9d_9d0e3ff1934c82e4289e3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to cicciolina3x@gmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: cicciolina3x@gmail.com Message-ID: <550a6abc5de47_9d0e3ff1934c82e429017@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to camilo@camilovillanueva.com.ar (9.5ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: camilo@camilovillanueva.com.ar Message-ID: <550a6abc638ae_9d0e3ff1934c82e42916e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to contacto@luciarodriguez.cl (76.8ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: contacto@luciarodriguez.cl Message-ID: <550a6abc663bf_9d0e3ff1934c82e429233@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to mariajosedurans@gmail.com (8.5ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: mariajosedurans@gmail.com Message-ID: <550a6abc799ed_9d0e3ff1934c82e429385@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to lgamio@gmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: lgamio@gmail.com Message-ID: <550a6abc7c2f5_9d0e3ff1934c82e429495@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to lagos.alberto@gmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: lagos.alberto@gmail.com Message-ID: <550a6abc7edb0_9d0e3ff1934c82e429597@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to phespino@uc.cl (12.2ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: phespino@uc.cl Message-ID: <550a6abc81d4c_9d0e3ff1934c82e42966b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to raimundoedwards@gmail.com (10.6ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: raimundoedwards@gmail.com Message-ID: <550a6abc854b3_9d0e3ff1934c82e4297fb@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to melf_en_viena@yahoo.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: melf_en_viena@yahoo.com Message-ID: <550a6abc887b4_9d0e3ff1934c82e4298f3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to maidacordero@gmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: maidacordero@gmail.com Message-ID: <550a6abc8b9c2_9d0e3ff1934c82e429981@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to aldogarrido@hotmail.com (27.0ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: aldogarrido@hotmail.com Message-ID: <550a6abc9069f_9d0e3ff1934c82e430035@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to consuelolewin@yahoo.com (13.0ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: consuelolewin@yahoo.com Message-ID: <550a6abc97a9f_9d0e3ff1934c82e4301f1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to melania_lynch@yahoo.es (12.6ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: melania_lynch@yahoo.es Message-ID: <550a6abc9c4a9_9d0e3ff1934c82e4302e9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to fcusicanqui@gmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: fcusicanqui@gmail.com Message-ID: <550a6abca005e_9d0e3ff1934c82e4303d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to nk@nk.nk (24.7ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: nk@nk.nk Message-ID: <550a6abcb4581_9d0e3ff1934c82e430428@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to soberenda@hotmail.com (13.3ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: soberenda@hotmail.com Message-ID: <550a6abcbb5c2_9d0e3ff1934c82e430581@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to anguitapaula@yahoo.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: anguitapaula@yahoo.com Message-ID: <550a6abcc0d44_9d0e3ff1934c82e430687@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to kamila_gavinci@hotmail.com (12.8ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: kamila_gavinci@hotmail.com Message-ID: <550a6abcc42f6_9d0e3ff1934c82e430717@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to marianamarciana@hotmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: marianamarciana@hotmail.com Message-ID: <550a6abcc794b_9d0e3ff1934c82e430827@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to guzmanantonio@gmail.com (12.2ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: guzmanantonio@gmail.com Message-ID: <550a6abccd1e1_9d0e3ff1934c82e4309b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to vandalis.arte@gmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: vandalis.arte@gmail.com Message-ID: <550a6abcd0948_9d0e3ff1934c82e4310a4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to danceustedtambien@gmail.com (9.5ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: danceustedtambien@gmail.com Message-ID: <550a6abcd3885_9d0e3ff1934c82e431151@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to pepemoreno12@yahoo.es (9.6ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: pepemoreno12@yahoo.es Message-ID: <550a6abcd95ca_9d0e3ff1934c82e43125e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to sintitulo33@hotmail.com (13.4ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: sintitulo33@hotmail.com Message-ID: <550a6abcdc622_9d0e3ff1934c82e4313d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to senoritaugarte@gmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: senoritaugarte@gmail.com Message-ID: <550a6abce0014_9d0e3ff1934c82e4314e0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to bruriadnis@hotmail.com (76.4ms) Date: Thu, 19 Mar 2015 03:20:44 -0300 From: miguel To: bruriadnis@hotmail.com Message-ID: <550a6abce5b3c_9d0e3ff1934c82e431513@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to mcpolanc@uc.cl (8.7ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: mcpolanc@uc.cl Message-ID: <550a6abd4862_9d0e3ff1934c82e4316ce@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to aliciaurrea@yahoo.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: aliciaurrea@yahoo.com Message-ID: <550a6abd7311_9d0e3ff1934c82e431741@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to phsolimano@gmail.com (10.2ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: phsolimano@gmail.com Message-ID: <550a6abd9f18_9d0e3ff1934c82e4318b9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to daniel@sourlight.net (12.1ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: daniel@sourlight.net Message-ID: <550a6abd11ea7_9d0e3ff1934c82e4319a0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to diasnublados_82@hotmail.com (11.3ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: diasnublados_82@hotmail.com Message-ID: <550a6abd15c80_9d0e3ff1934c82e4320e7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to jaimevial@gmail.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: jaimevial@gmail.com Message-ID: <550a6abd18dec_9d0e3ff1934c82e432145@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to verenaurrutia@gmail.com (12.1ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: verenaurrutia@gmail.com Message-ID: <550a6abd1dfe2_9d0e3ff1934c82e432235@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to rsrrchio@gmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: rsrrchio@gmail.com Message-ID: <550a6abd219b0_9d0e3ff1934c82e4323cd@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to ceciliaarayaleon@gmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: ceciliaarayaleon@gmail.com Message-ID: <550a6abd24782_9d0e3ff1934c82e4324e4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to anazztacia@gmail.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: anazztacia@gmail.com Message-ID: <550a6abd2a21c_9d0e3ff1934c82e4325f1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to elisaghs@gmail.com (75.0ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: elisaghs@gmail.com Message-ID: <550a6abd2cd03_9d0e3ff1934c82e43263c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to contacto@magalipolverino.com (8.7ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: contacto@magalipolverino.com Message-ID: <550a6abd3fcce_9d0e3ff1934c82e432727@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to fabodangelo@hotmail.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: fabodangelo@hotmail.com Message-ID: <550a6abd42837_9d0e3ff1934c82e43282a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to info@arrisi.cl (11.1ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: info@arrisi.cl Message-ID: <550a6abd46286_9d0e3ff1934c82e43293f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to info@rodolfoedwards.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: info@rodolfoedwards.com Message-ID: <550a6abd4ae40_9d0e3ff1934c82e433021@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to arenitademar21@hotmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: arenitademar21@hotmail.com Message-ID: <550a6abd4dcd0_9d0e3ff1934c82e433161@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to estcordova@gmail.com (12.2ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: estcordova@gmail.com Message-ID: <550a6abd51385_9d0e3ff1934c82e433227@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to lechecita@gmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: lechecita@gmail.com Message-ID: <550a6abd56ce6_9d0e3ff1934c82e4333b4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to yorkymencia@correosdecuba.cu (10.7ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: yorkymencia@correosdecuba.cu Message-ID: <550a6abd59efe_9d0e3ff1934c82e433498@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to gracieweinrib@gmail.com (10.2ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: gracieweinrib@gmail.com Message-ID: <550a6abd5d1f1_9d0e3ff1934c82e4335d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to sebastianescalona@gmail.com (9.5ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: sebastianescalona@gmail.com Message-ID: <550a6abd631b1_9d0e3ff1934c82e43366a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to consuelo.rodriguez.d@gmail.com (73.5ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: consuelo.rodriguez.d@gmail.com Message-ID: <550a6abd65d07_9d0e3ff1934c82e43379c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to joc1483@gmail.com (8.6ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: joc1483@gmail.com Message-ID: <550a6abd78837_9d0e3ff1934c82e4338ce@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to sedicereiby@gmail.com (8.6ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: sedicereiby@gmail.com Message-ID: <550a6abd7b114_9d0e3ff1934c82e43394c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to andrestorresf@gmail.com (8.3ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: andrestorresf@gmail.com Message-ID: <550a6abd7da3e_9d0e3ff1934c82e434018@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to -----@------------ (8.0ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: -----@------------ Message-ID: <550a6abd80829_9d0e3ff1934c82e4341b0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to felipe.rencoret@hotmail.com (9.1ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: felipe.rencoret@hotmail.com Message-ID: <550a6abd83528_9d0e3ff1934c82e4342c4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to princesahallulla@gmail.com (9.4ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: princesahallulla@gmail.com Message-ID: <550a6abd85f67_9d0e3ff1934c82e4343aa@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to yonosoysmo@gmail.com (28.8ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: yonosoysmo@gmail.com Message-ID: <550a6abd88e95_9d0e3ff1934c82e434443@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to bruno_s_z@yahoo.com (10.0ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: bruno_s_z@yahoo.com Message-ID: <550a6abd90722_9d0e3ff1934c82e4345c8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to rdovillarroel@gmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: rdovillarroel@gmail.com Message-ID: <550a6abd93a4a_9d0e3ff1934c82e434670@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to pau_rubio_e@hotmail.com (8.6ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: pau_rubio_e@hotmail.com Message-ID: <550a6abd966ac_9d0e3ff1934c82e43473d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to natix14@gmail.com (74.9ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: natix14@gmail.com Message-ID: <550a6abd9bcbb_9d0e3ff1934c82e43487d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to florencia.onetto@gmail.com (8.5ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: florencia.onetto@gmail.com Message-ID: <550a6abdae98c_9d0e3ff1934c82e4349f3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to noanswernoname@gmail.com (10.2ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: noanswernoname@gmail.com Message-ID: <550a6abdb13a7_9d0e3ff1934c82e43508f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to rosemblart@gmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: rosemblart@gmail.com Message-ID: <550a6abdb4683_9d0e3ff1934c82e4351e1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to constanzageisse@mi.cl (9.6ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: constanzageisse@mi.cl Message-ID: <550a6abdb7f4f_9d0e3ff1934c82e435246@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.2ms Sent mail to luzmpz@gmail.com (13.6ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: luzmpz@gmail.com Message-ID: <550a6abdbb6b1_9d0e3ff1934c82e435354@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to leonpaco@gmail.com (9.5ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: leonpaco@gmail.com Message-ID: <550a6abdbf093_9d0e3ff1934c82e4354a5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to lologuzman@hotmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: lologuzman@hotmail.com Message-ID: <550a6abdc46c8_9d0e3ff1934c82e4355e5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to aprendeapintar@gmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: aprendeapintar@gmail.com Message-ID: <550a6abdc72a8_9d0e3ff1934c82e4356e3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to anamariaschmidt@yahoo.com (8.6ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: anamariaschmidt@yahoo.com Message-ID: <550a6abdca3b2_9d0e3ff1934c82e4357d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to =?UTF-8?B?bXBpcmFjw6lzQHlhaG9vLmVz?= (23.1ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: =?UTF-8?B?bXBpcmFjw6lzQHlhaG9vLmVz?= Message-ID: <550a6abdccf52_9d0e3ff1934c82e435870@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to sergiorequena@gmail.com (25.8ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: sergiorequena@gmail.com Message-ID: <550a6abdd3087_9d0e3ff1934c82e43594e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to fotoluisnavarro@gmail.com (77.3ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: fotoluisnavarro@gmail.com Message-ID: <550a6abddcccf_9d0e3ff1934c82e43601e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to boris.cofre@gmail.com (9.1ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: boris.cofre@gmail.com Message-ID: <550a6abdf036f_9d0e3ff1934c82e4361e9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to cebra.mbl@gmail.com (11.3ms) Date: Thu, 19 Mar 2015 03:20:45 -0300 From: miguel To: cebra.mbl@gmail.com Message-ID: <550a6abdf332b_9d0e3ff1934c82e4362a7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to cafloresv@hotmail.com (9.1ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: cafloresv@hotmail.com Message-ID: <550a6abe22e7_9d0e3ff1934c82e4363e0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to yorkymencia@correodecuba.cu (10.7ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: yorkymencia@correodecuba.cu Message-ID: <550a6abe90f3_9d0e3ff1934c82e43645c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to cantillana.pamela@gmail.com (12.0ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: cantillana.pamela@gmail.com Message-ID: <550a6abecb89_9d0e3ff1934c82e43652c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to pancholillo_1@hotmail.com (9.2ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: pancholillo_1@hotmail.com Message-ID: <550a6abefc87_9d0e3ff1934c82e43661d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to info@mauricioconcha.cl (9.5ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: info@mauricioconcha.cl Message-ID: <550a6abe15342_9d0e3ff1934c82e4367f5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to patiurquieta@yahoo.es (10.8ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: patiurquieta@yahoo.es Message-ID: <550a6abe17f29_9d0e3ff1934c82e436880@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to francisco@cintolesi.cl (8.3ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: francisco@cintolesi.cl Message-ID: <550a6abe1b0c8_9d0e3ff1934c82e4369dd@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to maria_pakia@hotmail.com (9.2ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: maria_pakia@hotmail.com Message-ID: <550a6abe21596_9d0e3ff1934c82e437096@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to ampdist@hotmail.com (73.3ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: ampdist@hotmail.com Message-ID: <550a6abe23fb7_9d0e3ff1934c82e4371e1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to fernandoloustalot@yahoo.com.ar (8.7ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: fernandoloustalot@yahoo.com.ar Message-ID: <550a6abe36841_9d0e3ff1934c82e437236@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to paulibunster@gmail.com (10.4ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: paulibunster@gmail.com Message-ID: <550a6abe39388_9d0e3ff1934c82e4373f2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to neus_ra@hotmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: neus_ra@hotmail.com Message-ID: <550a6abe3c5fc_9d0e3ff1934c82e43749@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to anmoral29@hotmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: anmoral29@hotmail.com Message-ID: <550a6abe41f97_9d0e3ff1934c82e437554@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to carla_fernandez_4@hotmail.com (10.6ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: carla_fernandez_4@hotmail.com Message-ID: <550a6abe45562_9d0e3ff1934c82e437690@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to raimundolarenas@gmail.com (8.5ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: raimundolarenas@gmail.com Message-ID: <550a6abe48398_9d0e3ff1934c82e437782@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to isra1205@gmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: isra1205@gmail.com Message-ID: <550a6abe4dd2c_9d0e3ff1934c82e437823@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to cynthiajacksonzam@gmail.com (11.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: cynthiajacksonzam@gmail.com Message-ID: <550a6abe50d1d_9d0e3ff1934c82e4379d6@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to alvaromegaherz@hotmail.com (8.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: alvaromegaherz@hotmail.com Message-ID: <550a6abe543b2_9d0e3ff1934c82e43809@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to ineslazzaro@hotmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: ineslazzaro@hotmail.com Message-ID: <550a6abe5a376_9d0e3ff1934c82e43819@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to felisajuancolor@hotmail.com (75.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: felisajuancolor@hotmail.com Message-ID: <550a6abe5cee4_9d0e3ff1934c82e4382ee@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to mavoun@gmail.com (8.5ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: mavoun@gmail.com Message-ID: <550a6abe70233_9d0e3ff1934c82e4383a6@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to nifaze@gmail.com (9.0ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: nifaze@gmail.com Message-ID: <550a6abe72af2_9d0e3ff1934c82e4384dc@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to felisajuancolor@hotmail.com (11.3ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: felisajuancolor@hotmail.com Message-ID: <550a6abe75d33_9d0e3ff1934c82e4385a0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to lallilli@hotmail.com (8.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: lallilli@hotmail.com Message-ID: <550a6abe7ad37_9d0e3ff1934c82e43865c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to franset@hotmail.com (8.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: franset@hotmail.com Message-ID: <550a6abe7d83b_9d0e3ff1934c82e438790@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to belainne@gmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: belainne@gmail.com Message-ID: <550a6abe80371_9d0e3ff1934c82e43881e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to luvier@gmail.com (9.1ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: luvier@gmail.com Message-ID: <550a6abe86bdc_9d0e3ff1934c82e438986@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to unknown@unknown.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: unknown@unknown.com Message-ID: <550a6abe89b58_9d0e3ff1934c82e439093@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to soyyo@cristiangallegos.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: soyyo@cristiangallegos.com Message-ID: <550a6abe8cfca_9d0e3ff1934c82e439159@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to alonso@prenuclear.cl (9.6ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: alonso@prenuclear.cl Message-ID: <550a6abe932e7_9d0e3ff1934c82e439284@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to caro_parrague@yahoo.com (11.5ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: caro_parrague@yahoo.com Message-ID: <550a6abe96070_9d0e3ff1934c82e4393ac@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 64.5ms Sent mail to callella@hotmail.com (9.1ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: callella@hotmail.com Message-ID: <550a6abea8d23_9d0e3ff1934c82e43947b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to patilein@gmail.com (8.4ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: patilein@gmail.com Message-ID: <550a6abeab8b9_9d0e3ff1934c82e43955f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to jazmin_lucero@hotmail.com (8.4ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: jazmin_lucero@hotmail.com Message-ID: <550a6abeae1cf_9d0e3ff1934c82e439664@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to marcelap40@yahoo.es (12.1ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: marcelap40@yahoo.es Message-ID: <550a6abeb0ae5_9d0e3ff1934c82e4397de@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to fabiholapaz@gmail.com (8.7ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: fabiholapaz@gmail.com Message-ID: <550a6abeb455b_9d0e3ff1934c82e4398d1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to nachamaturana@gmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: nachamaturana@gmail.com Message-ID: <550a6abeb70fa_9d0e3ff1934c82e43991@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to leoncamil@gmail.com (11.8ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: leoncamil@gmail.com Message-ID: <550a6abeba58b_9d0e3ff1934c82e440010@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to avigilc@yahoo.com (9.2ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: avigilc@yahoo.com Message-ID: <550a6abebfb99_9d0e3ff1934c82e440198@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to claudiamarinjara@hotmail.com (11.1ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: claudiamarinjara@hotmail.com Message-ID: <550a6abec29b1_9d0e3ff1934c82e44021f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to juegocontiza@gmail.com (9.0ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: juegocontiza@gmail.com Message-ID: <550a6abec5d1e_9d0e3ff1934c82e4403a8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to joseomarchavezluna@hotmail.com (9.4ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: joseomarchavezluna@hotmail.com Message-ID: <550a6abecbc0e_9d0e3ff1934c82e440476@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to danielgcampos@gmail.com (73.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: danielgcampos@gmail.com Message-ID: <550a6abeceaa3_9d0e3ff1934c82e4405b7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to fbrunaster@gmail.com (9.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: fbrunaster@gmail.com Message-ID: <550a6abee13b7_9d0e3ff1934c82e440688@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to rodrigovw@hotmail.com (8.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: rodrigovw@hotmail.com Message-ID: <550a6abee46d9_9d0e3ff1934c82e4407a5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to manemoragam@yahoo.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: manemoragam@yahoo.com Message-ID: <550a6abee71c0_9d0e3ff1934c82e440891@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to margaritadittborn@hotmail.com (9.5ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: margaritadittborn@hotmail.com Message-ID: <550a6abeecd8c_9d0e3ff1934c82e4409f6@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to mimart98@yahoo.com (11.0ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: mimart98@yahoo.com Message-ID: <550a6abeef9fc_9d0e3ff1934c82e4410ac@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to lectordemanjar@gmail.com (12.9ms) Date: Thu, 19 Mar 2015 03:20:46 -0300 From: miguel To: lectordemanjar@gmail.com Message-ID: <550a6abef2e5e_9d0e3ff1934c82e44115f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to sopulimonreal@hotmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: sopulimonreal@hotmail.com Message-ID: <550a6abf4448_9d0e3ff1934c82e441267@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to diegodeaduriz@yahoo.com (8.5ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: diegodeaduriz@yahoo.com Message-ID: <550a6abf7077_9d0e3ff1934c82e441350@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to dfabres@gmail.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: dfabres@gmail.com Message-ID: <550a6abf99c0_9d0e3ff1934c82e441421@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to matiasbiggs@gmail.com (9.0ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: matiasbiggs@gmail.com Message-ID: <550a6abfcc7b_9d0e3ff1934c82e4415bd@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to maurobalzarotti@gmail.com (73.3ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: maurobalzarotti@gmail.com Message-ID: <550a6abf10bdf_9d0e3ff1934c82e441692@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to barbarella.o@gmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: barbarella.o@gmail.com Message-ID: <550a6abf23279_9d0e3ff1934c82e441740@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to jovensalo@yahoo.es (10.2ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: jovensalo@yahoo.es Message-ID: <550a6abf2649f_9d0e3ff1934c82e4418b9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to josebalmaceda@hotmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: josebalmaceda@hotmail.com Message-ID: <550a6abf295cd_9d0e3ff1934c82e441962@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to cquijadaa@gmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: cquijadaa@gmail.com Message-ID: <550a6abf2d61f_9d0e3ff1934c82e4420be@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to loleandola@gmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: loleandola@gmail.com Message-ID: <550a6abf30676_9d0e3ff1934c82e442186@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to mjpedric@gmail.com (9.9ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: mjpedric@gmail.com Message-ID: <550a6abf3347f_9d0e3ff1934c82e442277@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to ramosajen@yahoo.co.uk (10.8ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: ramosajen@yahoo.co.uk Message-ID: <550a6abf39495_9d0e3ff1934c82e4423ca@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to delpozoysilva@gmail.com (11.5ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: delpozoysilva@gmail.com Message-ID: <550a6abf3ce1e_9d0e3ff1934c82e4424e6@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to politajimenez@hotmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: politajimenez@hotmail.com Message-ID: <550a6abf3ffbf_9d0e3ff1934c82e4425a5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to malandanza@hotmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: malandanza@hotmail.com Message-ID: <550a6abf457b0_9d0e3ff1934c82e4426e5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to maestrosiux@gmail.com (74.3ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: maestrosiux@gmail.com Message-ID: <550a6abf484df_9d0e3ff1934c82e44277a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to davidhorz@gmail.com (9.2ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: davidhorz@gmail.com Message-ID: <550a6abf5afb3_9d0e3ff1934c82e442848@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to kiskavega@hotmail.com (9.9ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: kiskavega@hotmail.com Message-ID: <550a6abf5e223_9d0e3ff1934c82e4429ec@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to ataxika@hotmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: ataxika@hotmail.com Message-ID: <550a6abf61274_9d0e3ff1934c82e4430d9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to malvariska@yahoo.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: malvariska@yahoo.com Message-ID: <550a6abf64083_9d0e3ff1934c82e443178@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to cintipas@hotmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: cintipas@hotmail.com Message-ID: <550a6abf66f70_9d0e3ff1934c82e44323c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to ppaiyee@gmail.com (8.7ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: ppaiyee@gmail.com Message-ID: <550a6abf69add_9d0e3ff1934c82e4433d4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to tlrobled@uc.cl (10.0ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: tlrobled@uc.cl Message-ID: <550a6abf6c748_9d0e3ff1934c82e4434c4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to myros84@gmail.com (11.5ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: myros84@gmail.com Message-ID: <550a6abf6faf4_9d0e3ff1934c82e443551@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to marambio.javiera@gmail.com (9.4ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: marambio.javiera@gmail.com Message-ID: <550a6abf7310e_9d0e3ff1934c82e443660@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to mai_aguirre@hotmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: mai_aguirre@hotmail.com Message-ID: <550a6abf7617a_9d0e3ff1934c82e443743@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to felipez007@gmail.com (94.2ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: felipez007@gmail.com Message-ID: <550a6abf7e479_9d0e3ff1934c82e4438c1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to ignacia.saavedra@gmail.com (18.2ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: ignacia.saavedra@gmail.com Message-ID: <550a6abf9f20d_9d0e3ff1934c82e44391d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to buhovomitando@gmail.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: buhovomitando@gmail.com Message-ID: <550a6abfabd18_9d0e3ff1934c82e44403a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to amaleones@hotmail.com (35.1ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: amaleones@hotmail.com Message-ID: <550a6abfb7789_9d0e3ff1934c82e444150@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to dominguez.sofia@gmail.com (12.4ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: dominguez.sofia@gmail.com Message-ID: <550a6abfc77d7_9d0e3ff1934c82e4442e5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to arturovalderas@gmail.com (16.6ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: arturovalderas@gmail.com Message-ID: <550a6abfcfaa4_9d0e3ff1934c82e4443b7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to camikibazar@gmail.com (22.8ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: camikibazar@gmail.com Message-ID: <550a6abfd7cfa_9d0e3ff1934c82e4444ad@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to guamarin@yahoo.com.ar (21.2ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: guamarin@yahoo.com.ar Message-ID: <550a6abfe3e13_9d0e3ff1934c82e444523@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to bernhadita@hotmail.com (12.2ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: bernhadita@hotmail.com Message-ID: <550a6abfe9650_9d0e3ff1934c82e444628@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to tativuka@gmail.com (9.1ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: tativuka@gmail.com Message-ID: <550a6abfed17e_9d0e3ff1934c82e444746@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.2ms Sent mail to conita663@gmail.com (9.5ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: conita663@gmail.com Message-ID: <550a6abff0502_9d0e3ff1934c82e44481a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to pascunan@yahoo.com (10.6ms) Date: Thu, 19 Mar 2015 03:20:47 -0300 From: miguel To: pascunan@yahoo.com Message-ID: <550a6abff32d4_9d0e3ff1934c82e44499d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to ricardomandujano@hotmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: ricardomandujano@hotmail.com Message-ID: <550a6ac0119c8_9d0e3ff1934c82e44500@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to djjousse2000@yahoo.es (8.8ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: djjousse2000@yahoo.es Message-ID: <550a6ac014d5a_9d0e3ff1934c82e4451f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to tomasfernandezdiaz@hotmail.com (10.0ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: tomasfernandezdiaz@hotmail.com Message-ID: <550a6ac017a3a_9d0e3ff1934c82e4452bd@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to flaten@flaten.cl (8.6ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: flaten@flaten.cl Message-ID: <550a6ac01a992_9d0e3ff1934c82e44539f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to dgarcia@genesisgrafica.cl (12.0ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: dgarcia@genesisgrafica.cl Message-ID: <550a6ac01d5e9_9d0e3ff1934c82e44541d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.9ms Sent mail to baeza.ricardo@hotmail.com (11.2ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: baeza.ricardo@hotmail.com Message-ID: <550a6ac021304_9d0e3ff1934c82e445559@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to movimientobohemia@hotmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: movimientobohemia@hotmail.com Message-ID: <550a6ac024b70_9d0e3ff1934c82e4456ee@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to cristobalbarrientos@gmail.com (10.0ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: cristobalbarrientos@gmail.com Message-ID: <550a6ac027c6d_9d0e3ff1934c82e4457b0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to eolivares60@yahoo.es (10.7ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: eolivares60@yahoo.es Message-ID: <550a6ac02a9f4_9d0e3ff1934c82e4458f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to mikehasick@yahoo.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: mikehasick@yahoo.com Message-ID: <550a6ac02dc3d_9d0e3ff1934c82e44597e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to gpalma@inform.dk (9.3ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: gpalma@inform.dk Message-ID: <550a6ac030efb_9d0e3ff1934c82e44609a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to woodstocky88@hotmail.com (74.3ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: woodstocky88@hotmail.com Message-ID: <550a6ac03402e_9d0e3ff1934c82e4461cc@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to qotiqox@gmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: qotiqox@gmail.com Message-ID: <550a6ac0468ea_9d0e3ff1934c82e44621@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to jotacarloza@gmail.com (8.7ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: jotacarloza@gmail.com Message-ID: <550a6ac049c2c_9d0e3ff1934c82e4463a7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to galvez.alfageme@gmail.com (8.6ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: galvez.alfageme@gmail.com Message-ID: <550a6ac04c685_9d0e3ff1934c82e4464b5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to marielsahue@gmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: marielsahue@gmail.com Message-ID: <550a6ac04f038_9d0e3ff1934c82e446572@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to vivilopezg@yahoo.com (8.9ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: vivilopezg@yahoo.com Message-ID: <550a6ac052327_9d0e3ff1934c82e4466a7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to nilarron@uc.cl (10.3ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: nilarron@uc.cl Message-ID: <550a6ac0552ff_9d0e3ff1934c82e4467ac@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to camilmontero@hotmail.com (15.5ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: camilmontero@hotmail.com Message-ID: <550a6ac058d4e_9d0e3ff1934c82e4468f3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.2ms Sent mail to pablinacastillo@gmail.com (11.2ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: pablinacastillo@gmail.com Message-ID: <550a6ac05d5b6_9d0e3ff1934c82e4469a1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to centopeia@csmtelecom.com.br (10.3ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: centopeia@csmtelecom.com.br Message-ID: <550a6ac0609b7_9d0e3ff1934c82e4470ce@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to santiago.ascui@gmail.com (12.3ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: santiago.ascui@gmail.com Message-ID: <550a6ac063d8f_9d0e3ff1934c82e44716f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to vjcocina@gmail.com (71.3ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: vjcocina@gmail.com Message-ID: <550a6ac067483_9d0e3ff1934c82e447276@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to m.jesus.seguel@gmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: m.jesus.seguel@gmail.com Message-ID: <550a6ac0797e4_9d0e3ff1934c82e44739@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to gonzalo.salinasc@gmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: gonzalo.salinasc@gmail.com Message-ID: <550a6ac07c587_9d0e3ff1934c82e44743a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to jomanei@yahoo, com (12.4ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: jomanei@yahoo, com Message-ID: <550a6ac07efa2_9d0e3ff1934c82e447589@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to cferradasoto@gmail.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: cferradasoto@gmail.com Message-ID: <550a6ac082ceb_9d0e3ff1934c82e447678@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to rosaapablaza@yahoo.es (9.6ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: rosaapablaza@yahoo.es Message-ID: <550a6ac086159_9d0e3ff1934c82e4477d2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to cristianoliva@catapilco.cl (11.4ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: cristianoliva@catapilco.cl Message-ID: <550a6ac088eb3_9d0e3ff1934c82e4478a8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to pabloxcourten@yahoo.com (11.9ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: pabloxcourten@yahoo.com Message-ID: <550a6ac08c6b6_9d0e3ff1934c82e4479fc@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to catalinavaras@gmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: catalinavaras@gmail.com Message-ID: <550a6ac08fccf_9d0e3ff1934c82e4480c3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to arquisentidos@gmail.com (9.4ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: arquisentidos@gmail.com Message-ID: <550a6ac093281_9d0e3ff1934c82e448151@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to ireneperezperez@yahoo.es (9.3ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: ireneperezperez@yahoo.es Message-ID: <550a6ac09621c_9d0e3ff1934c82e4482b5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to info@lasnaves.org (9.2ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: info@lasnaves.org Message-ID: <550a6ac0992ce_9d0e3ff1934c82e44836@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to claudia_godoy_o@hotmail.com (75.4ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: claudia_godoy_o@hotmail.com Message-ID: <550a6ac09f203_9d0e3ff1934c82e44848a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to rsgarciapalma@gmail.com (12.2ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: rsgarciapalma@gmail.com Message-ID: <550a6ac0b2110_9d0e3ff1934c82e44857f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to velosianismo@gmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: velosianismo@gmail.com Message-ID: <550a6ac0b55f8_9d0e3ff1934c82e4486ca@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to paulomendesfaria@terra.com.br (12.0ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: paulomendesfaria@terra.com.br Message-ID: <550a6ac0b8390_9d0e3ff1934c82e448713@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to winnim@gmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: winnim@gmail.com Message-ID: <550a6ac0bf1aa_9d0e3ff1934c82e4488ae@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to leandriono@hotmail.com (13.1ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: leandriono@hotmail.com Message-ID: <550a6ac0c27fc_9d0e3ff1934c82e4489fc@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to miguelgaetec@gmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: miguelgaetec@gmail.com Message-ID: <550a6ac0c5d27_9d0e3ff1934c82e44904a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to cmiguelbetan@yahoo.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: cmiguelbetan@yahoo.com Message-ID: <550a6ac0caca5_9d0e3ff1934c82e4491d5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to josefinagonzale@gmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: josefinagonzale@gmail.com Message-ID: <550a6ac0cd720_9d0e3ff1934c82e4492f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to oscarpoliotto@powervt.com.ar (9.4ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: oscarpoliotto@powervt.com.ar Message-ID: <550a6ac0d097c_9d0e3ff1934c82e4493f3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.2ms Sent mail to joshswalker@yahoo.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: joshswalker@yahoo.com Message-ID: <550a6ac0d746d_9d0e3ff1934c82e449447@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to francgaune@hotmail.com (74.7ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: francgaune@hotmail.com Message-ID: <550a6ac0da187_9d0e3ff1934c82e4495bf@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.9ms Sent mail to valentinacont@hotmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: valentinacont@hotmail.com Message-ID: <550a6ac0ed22d_9d0e3ff1934c82e4496ec@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to sebastiansilva_p@hotmail.com (8.5ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: sebastiansilva_p@hotmail.com Message-ID: <550a6ac0f0300_9d0e3ff1934c82e449715@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to wangulem_@hotmail.com (12.8ms) Date: Thu, 19 Mar 2015 03:20:48 -0300 From: miguel To: wangulem_@hotmail.com Message-ID: <550a6ac0f2dfe_9d0e3ff1934c82e449852@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to gpm.grafik@gmail.com (9.4ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: gpm.grafik@gmail.com Message-ID: <550a6ac1396a_9d0e3ff1934c82e4499df@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to armandoruiz8@hotmail.com (8.7ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: armandoruiz8@hotmail.com Message-ID: <550a6ac16540_9d0e3ff1934c82e45008c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to hilvanado@gmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: hilvanado@gmail.com Message-ID: <550a6ac18e85_9d0e3ff1934c82e450150@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to angepil_@hotmail.com (11.5ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: angepil_@hotmail.com Message-ID: <550a6ac1c653_9d0e3ff1934c82e450246@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to ef@mamchiloe.cl (9.1ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: ef@mamchiloe.cl Message-ID: <550a6ac1fb97_9d0e3ff1934c82e450376@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to andreaugarte@gmail.com (13.4ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: andreaugarte@gmail.com Message-ID: <550a6ac1129b7_9d0e3ff1934c82e45042d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to catatuca@yahoo.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: catatuca@yahoo.com Message-ID: <550a6ac1165d5_9d0e3ff1934c82e450583@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to tobernorberto@yahoo.com.mx (74.7ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: tobernorberto@yahoo.com.mx Message-ID: <550a6ac11bbd6_9d0e3ff1934c82e450661@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to alvaropaz21@gmail.com (13.4ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: alvaropaz21@gmail.com Message-ID: <550a6ac12eec3_9d0e3ff1934c82e450712@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to carrionfelipe@yahoo.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: carrionfelipe@yahoo.com Message-ID: <550a6ac1328c3_9d0e3ff1934c82e4508ec@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to matiasantamaria@hotmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: matiasantamaria@hotmail.com Message-ID: <550a6ac135b49_9d0e3ff1934c82e45099a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to albordedelborde@hotmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: albordedelborde@hotmail.com Message-ID: <550a6ac13cd67_9d0e3ff1934c82e4510ec@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to profesorjleyton@yahoo.es (9.1ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: profesorjleyton@yahoo.es Message-ID: <550a6ac13fe1c_9d0e3ff1934c82e451136@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to emperor@phenomena.cl (11.4ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: emperor@phenomena.cl Message-ID: <550a6ac142819_9d0e3ff1934c82e4512de@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.4ms Sent mail to dsthandier@gmail.com (12.8ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: dsthandier@gmail.com Message-ID: <550a6ac146716_9d0e3ff1934c82e45138c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to escaffi0@gmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: escaffi0@gmail.com Message-ID: <550a6ac14a0cd_9d0e3ff1934c82e4514bd@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to igor_barrenechea@hotmail.com (8.5ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: igor_barrenechea@hotmail.com Message-ID: <550a6ac14cbca_9d0e3ff1934c82e4515d9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to antitodozine@gmail.com (13.9ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: antitodozine@gmail.com Message-ID: <550a6ac14f643_9d0e3ff1934c82e4516af@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to martina.asenjo@gmail.com (80.9ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: martina.asenjo@gmail.com Message-ID: <550a6ac1553b8_9d0e3ff1934c82e45174@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to piturasxgeisse@hotmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: piturasxgeisse@hotmail.com Message-ID: <550a6ac169966_9d0e3ff1934c82e4518c1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to rosanagh85@hotmail.com (10.4ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: rosanagh85@hotmail.com Message-ID: <550a6ac16c49c_9d0e3ff1934c82e45191a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to ignacio@factor-d.cl (13.1ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: ignacio@factor-d.cl Message-ID: <550a6ac16f78a_9d0e3ff1934c82e4520e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to joaquinc@gmail.com (15.4ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: joaquinc@gmail.com Message-ID: <550a6ac1732e7_9d0e3ff1934c82e45212c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to paulaporpaula@gmail.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: paulaporpaula@gmail.com Message-ID: <550a6ac1780d0_9d0e3ff1934c82e4522b4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to coteleonlopez@gmail.com (9.1ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: coteleonlopez@gmail.com Message-ID: <550a6ac17b53a_9d0e3ff1934c82e4523d6@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to indice1980@gmail.com (10.0ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: indice1980@gmail.com Message-ID: <550a6ac18165b_9d0e3ff1934c82e45246f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to castellano.rosario@gmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: castellano.rosario@gmail.com Message-ID: <550a6ac184fba_9d0e3ff1934c82e4525ec@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to elisitab@gmail.com (12.0ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: elisitab@gmail.com Message-ID: <550a6ac1897b8_9d0e3ff1934c82e45267c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to jpcorreadigital@gmail.com (9.4ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: jpcorreadigital@gmail.com Message-ID: <550a6ac18de80_9d0e3ff1934c82e4527a4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to plutonexiliado@yahoo.es (10.6ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: plutonexiliado@yahoo.es Message-ID: <550a6ac19114d_9d0e3ff1934c82e45284c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 66.2ms Sent mail to zulaypina@yahoo.es (10.2ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: zulaypina@yahoo.es Message-ID: <550a6ac1a3f54_9d0e3ff1934c82e4529c6@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.1ms Sent mail to marcosvillacorta@yahoo.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: marcosvillacorta@yahoo.com Message-ID: <550a6ac1a7597_9d0e3ff1934c82e453032@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to andreasilvaguzman@hotmail.com (8.9ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: andreasilvaguzman@hotmail.com Message-ID: <550a6ac1aa737_9d0e3ff1934c82e453132@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to villover@hotmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: villover@hotmail.com Message-ID: <550a6ac1ad5cf_9d0e3ff1934c82e4532f0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to mr.trafic@gmail.com (9.2ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: mr.trafic@gmail.com Message-ID: <550a6ac1b2619_9d0e3ff1934c82e453334@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to mane_adaro@yahoo.es (10.6ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: mane_adaro@yahoo.es Message-ID: <550a6ac1b5fc7_9d0e3ff1934c82e453447@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to catalinaschliebener@buuuu.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: catalinaschliebener@buuuu.com Message-ID: <550a6ac1ba984_9d0e3ff1934c82e4535c3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to valecostabal@gmail.com (11.4ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: valecostabal@gmail.com Message-ID: <550a6ac1bf16b_9d0e3ff1934c82e4536e9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to peerro@gmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: peerro@gmail.com Message-ID: <550a6ac1c2425_9d0e3ff1934c82e453769@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to camilaletelier@hotmail.com (11.2ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: camilaletelier@hotmail.com Message-ID: <550a6ac1c53ef_9d0e3ff1934c82e4538b2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to evelyn.cautivo@gmail.com (9.0ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: evelyn.cautivo@gmail.com Message-ID: <550a6ac1ca5c3_9d0e3ff1934c82e453988@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to yuyiazpiri@hotmail.com (74.1ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: yuyiazpiri@hotmail.com Message-ID: <550a6ac1cd0c3_9d0e3ff1934c82e4540c3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to mazzzuco@gmail.com (9.1ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: mazzzuco@gmail.com Message-ID: <550a6ac1dfc05_9d0e3ff1934c82e4541be@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to colibreja@hotmail.com (11.4ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: colibreja@hotmail.com Message-ID: <550a6ac1e28b7_9d0e3ff1934c82e45428d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to mauro.longa@gmail.com (12.4ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: mauro.longa@gmail.com Message-ID: <550a6ac1e60b8_9d0e3ff1934c82e4543e0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to manefla@gmail.com (23.6ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: manefla@gmail.com Message-ID: <550a6ac1e9ac2_9d0e3ff1934c82e45446b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to sofiavergar@gmail.com (19.5ms) Date: Thu, 19 Mar 2015 03:20:49 -0300 From: miguel To: sofiavergar@gmail.com Message-ID: <550a6ac1f01c8_9d0e3ff1934c82e454550@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to amontanea@gmail.com (9.9ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: amontanea@gmail.com Message-ID: <550a6ac23536_9d0e3ff1934c82e4546ec@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to nquintano@yahoo.com (8.3ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: nquintano@yahoo.com Message-ID: <550a6ac260a5_9d0e3ff1934c82e4547e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to sol_blas@hotmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: sol_blas@hotmail.com Message-ID: <550a6ac28a2c_9d0e3ff1934c82e4548bd@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to ismaelav@gmail.com blueberrybird18@hotmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: ismaelav@gmail.com blueberrybird18@hotmail.com Message-ID: <550a6ac2bae6_9d0e3ff1934c82e454963@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to maria_jose_gas@hotmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: maria_jose_gas@hotmail.com Message-ID: <550a6ac2f726_9d0e3ff1934c82e455033@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to invunchearte@gmail.com (74.4ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: invunchearte@gmail.com Message-ID: <550a6ac2122f0_9d0e3ff1934c82e4551ee@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to majobarros@yahoo.com (8.9ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: majobarros@yahoo.com Message-ID: <550a6ac224f3b_9d0e3ff1934c82e45526f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to rodrigofigueroa@arquitas.cl (9.9ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: rodrigofigueroa@arquitas.cl Message-ID: <550a6ac227d4d_9d0e3ff1934c82e4553a8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to herz89@hotmail.com (12.6ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: herz89@hotmail.com Message-ID: <550a6ac22b19a_9d0e3ff1934c82e4554f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to adrian.gouet@gmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: adrian.gouet@gmail.com Message-ID: <550a6ac22fb96_9d0e3ff1934c82e45557f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to Pinorra80@yahoo.es (10.1ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: Pinorra80@yahoo.es Message-ID: <550a6ac232c16_9d0e3ff1934c82e45562b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to pekind@gmail.com (9.2ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: pekind@gmail.com Message-ID: <550a6ac235b3b_9d0e3ff1934c82e455771@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to paulgalue@hotmail.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: paulgalue@hotmail.com Message-ID: <550a6ac23c0a6_9d0e3ff1934c82e4558db@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to xlaomelo@hotmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: xlaomelo@hotmail.com Message-ID: <550a6ac23f742_9d0e3ff1934c82e45596b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to pabloandresmontt@gmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: pabloandresmontt@gmail.com Message-ID: <550a6ac242501_9d0e3ff1934c82e4560d3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.9ms Sent mail to saraoblisar@yahoo.es (9.3ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: saraoblisar@yahoo.es Message-ID: <550a6ac248498_9d0e3ff1934c82e4561f9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to carolasep@gmail.com (72.6ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: carolasep@gmail.com Message-ID: <550a6ac24ad5e_9d0e3ff1934c82e456235@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to punto.clava@hotmail.com (8.9ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: punto.clava@hotmail.com Message-ID: <550a6ac25d3e6_9d0e3ff1934c82e4563a2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to antogagliano@yahoo.com.ar (10.5ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: antogagliano@yahoo.com.ar Message-ID: <550a6ac2600ea_9d0e3ff1934c82e456461@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to carolv9@gmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: carolv9@gmail.com Message-ID: <550a6ac2632a5_9d0e3ff1934c82e456541@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to patricio.fc@gmail.com (8.9ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: patricio.fc@gmail.com Message-ID: <550a6ac268969_9d0e3ff1934c82e456622@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to crystalships@hotmail.com (9.9ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: crystalships@hotmail.com Message-ID: <550a6ac26b351_9d0e3ff1934c82e4567a6@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to solerusso@gmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: solerusso@gmail.com Message-ID: <550a6ac26e6a1_9d0e3ff1934c82e456857@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to rosabeas5@hotmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: rosabeas5@hotmail.com Message-ID: <550a6ac27497d_9d0e3ff1934c82e45696d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to joaquin.r.u@gmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: joaquin.r.u@gmail.com Message-ID: <550a6ac277a26_9d0e3ff1934c82e457069@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to primate1@gmail.com (8.7ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: primate1@gmail.com Message-ID: <550a6ac27a9c3_9d0e3ff1934c82e4571b2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to ocupasocupas@gmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: ocupasocupas@gmail.com Message-ID: <550a6ac280bb0_9d0e3ff1934c82e45724f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to gquercia@gmail.com (74.0ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: gquercia@gmail.com Message-ID: <550a6ac283dc7_9d0e3ff1934c82e45735f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to buildingthek@gmail.com (25.4ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: buildingthek@gmail.com Message-ID: <550a6ac296ae4_9d0e3ff1934c82e457421@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to isidoraira@gmail.com (11.1ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: isidoraira@gmail.com Message-ID: <550a6ac29db34_9d0e3ff1934c82e457521@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 3.1ms Sent mail to bella_eternidad@hotmail.com (10.0ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: bella_eternidad@hotmail.com Message-ID: <550a6ac2a1958_9d0e3ff1934c82e45762@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to nicolaspmelo@hotmail.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: nicolaspmelo@hotmail.com Message-ID: <550a6ac2a5d56_9d0e3ff1934c82e4577e5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to artificisanimal@hotmail.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: artificisanimal@hotmail.com Message-ID: <550a6ac2a923e_9d0e3ff1934c82e4578f1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to fran.ahlers@gmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: fran.ahlers@gmail.com Message-ID: <550a6ac2abdea_9d0e3ff1934c82e457928@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to gajardopinta@yahoo.es (11.8ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: gajardopinta@yahoo.es Message-ID: <550a6ac2b18a1_9d0e3ff1934c82e4580e4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to losolteros@hotmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: losolteros@hotmail.com Message-ID: <550a6ac2b4e09_9d0e3ff1934c82e4581b4@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to ZANGOLAS@HOTMAIL.COM (12.0ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: ZANGOLAS@HOTMAIL.COM Message-ID: <550a6ac2b7ea2_9d0e3ff1934c82e4582f7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to mariaignaciadiazv@hotmail.com (12.9ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: mariaignaciadiazv@hotmail.com Message-ID: <550a6ac2be066_9d0e3ff1934c82e458370@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to isgilians@gmail.com (13.3ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: isgilians@gmail.com Message-ID: <550a6ac2c72fe_9d0e3ff1934c82e458484@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to misstresenoritas@gmail.com (74.4ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: misstresenoritas@gmail.com Message-ID: <550a6ac2caa38_9d0e3ff1934c82e45857@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to juanignacio.cl@gmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: juanignacio.cl@gmail.com Message-ID: <550a6ac2ddde6_9d0e3ff1934c82e45864d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to oij oi@jn.cl (7.2ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: oij oi@jn.cl Message-ID: <550a6ac2e0c3e_9d0e3ff1934c82e4587b9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to hematie_x@hotmail.com (11.6ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: hematie_x@hotmail.com Message-ID: <550a6ac2e347a_9d0e3ff1934c82e4588e5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to ceciliaavendanio@hotmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: ceciliaavendanio@hotmail.com Message-ID: <550a6ac2ea1a2_9d0e3ff1934c82e45898@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to cstrmelj@gmail.com (10.9ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: cstrmelj@gmail.com Message-ID: <550a6ac2ed2c8_9d0e3ff1934c82e4590de@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to beatrizasofia@hotmail.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:50 -0300 From: miguel To: beatrizasofia@hotmail.com Message-ID: <550a6ac2f055b_9d0e3ff1934c82e459144@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to mauriciovalenciacardenas@gmail.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: mauriciovalenciacardenas@gmail.com Message-ID: <550a6ac325c8_9d0e3ff1934c82e459217@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to evangelisti@gmx.net (10.3ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: evangelisti@gmx.net Message-ID: <550a6ac35060_9d0e3ff1934c82e45938f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to jisilva1@uc.cl (12.1ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: jisilva1@uc.cl Message-ID: <550a6ac382a1_9d0e3ff1934c82e45942e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to alluantu@gmail.com (9.6ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: alluantu@gmail.com Message-ID: <550a6ac3e9d8_9d0e3ff1934c82e459516@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to matiaslab@yahoo.com (77.5ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: matiaslab@yahoo.com Message-ID: <550a6ac3115bc_9d0e3ff1934c82e4596f8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to catalina.delacruz@gmail.com (9.9ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: catalina.delacruz@gmail.com Message-ID: <550a6ac324fe5_9d0e3ff1934c82e459777@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.8ms Sent mail to errejemex@hotmail.com (10.6ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: errejemex@hotmail.com Message-ID: <550a6ac32849a_9d0e3ff1934c82e4598f2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to ivan.javis@gmail.com (10.0ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: ivan.javis@gmail.com Message-ID: <550a6ac32b7c7_9d0e3ff1934c82e459954@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.4ms Sent mail to cristianvega@hotmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: cristianvega@hotmail.com Message-ID: <550a6ac32edeb_9d0e3ff1934c82e4600c9@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to macajarpa@gmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: macajarpa@gmail.com Message-ID: <550a6ac331e9e_9d0e3ff1934c82e4601bd@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to jpgreingardt@hotmail.com (9.0ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: jpgreingardt@hotmail.com Message-ID: <550a6ac334ea6_9d0e3ff1934c82e4602c6@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to josefinastorga@gmail.com (10.8ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: josefinastorga@gmail.com Message-ID: <550a6ac33b12d_9d0e3ff1934c82e4603ce@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to miguelmichelson@2iopjfji.cl (10.9ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: miguelmichelson@2iopjfji.cl Message-ID: <550a6ac33e495_9d0e3ff1934c82e4604cc@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to zaidagr77@yahoo.es (11.9ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: zaidagr77@yahoo.es Message-ID: <550a6ac341806_9d0e3ff1934c82e46058b@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to atlarrai@uc.cl (11.1ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: atlarrai@uc.cl Message-ID: <550a6ac347874_9d0e3ff1934c82e460614@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to lilithvoncarter@gmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: lilithvoncarter@gmail.com Message-ID: <550a6ac34aaad_9d0e3ff1934c82e4607ce@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to e7online@gmail.com (73.3ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: e7online@gmail.com Message-ID: <550a6ac34db59_9d0e3ff1934c82e46085d@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to loretin.metalera@gmail.com (10.6ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: loretin.metalera@gmail.com Message-ID: <550a6ac360918_9d0e3ff1934c82e46094e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to cecilia.albertina@gmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: cecilia.albertina@gmail.com Message-ID: <550a6ac363b25_9d0e3ff1934c82e4610cc@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to hidalgobastien1@hotmail.com (10.6ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: hidalgobastien1@hotmail.com Message-ID: <550a6ac366858_9d0e3ff1934c82e4611aa@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to jorgeovandos@gmail.com (13.0ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: jorgeovandos@gmail.com Message-ID: <550a6ac36be99_9d0e3ff1934c82e4612e1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to mchernandezj@wanadoo.es (10.3ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: mchernandezj@wanadoo.es Message-ID: <550a6ac36fac9_9d0e3ff1934c82e461354@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to pattygh@gmail.com (13.0ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: pattygh@gmail.com Message-ID: <550a6ac372935_9d0e3ff1934c82e461416@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to muere@gmail.com (9.9ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: muere@gmail.com Message-ID: <550a6ac378411_9d0e3ff1934c82e4615f@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to morapepo@yahoo.es (10.4ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: morapepo@yahoo.es Message-ID: <550a6ac37af79_9d0e3ff1934c82e4616b3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to alejandrobalbontin@manquehue.net (8.7ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: alejandrobalbontin@manquehue.net Message-ID: <550a6ac37e098_9d0e3ff1934c82e461763@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to g.lazoq@gmail.com (13.8ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: g.lazoq@gmail.com Message-ID: <550a6ac381218_9d0e3ff1934c82e4618cf@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to ariel_maluenda@hotmail.com (75.2ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: ariel_maluenda@hotmail.com Message-ID: <550a6ac38511e_9d0e3ff1934c82e461957@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to super_miguelin@msn.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: super_miguelin@msn.com Message-ID: <550a6ac3983d7_9d0e3ff1934c82e46209e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to satanicnerd@hotmail.com (11.0ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: satanicnerd@hotmail.com Message-ID: <550a6ac39b3b5_9d0e3ff1934c82e462128@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to bernigoycoolea@gmail.com (11.3ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: bernigoycoolea@gmail.com Message-ID: <550a6ac39ea7c_9d0e3ff1934c82e46228a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.1ms Sent mail to Lisamalla@yahoo.es (11.5ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: Lisamalla@yahoo.es Message-ID: <550a6ac3a4677_9d0e3ff1934c82e462354@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to cristianoliva@yahoo.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: cristianoliva@yahoo.com Message-ID: <550a6ac3a7a3b_9d0e3ff1934c82e462481@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to pollatrujillo@gmail.com (9.0ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: pollatrujillo@gmail.com Message-ID: <550a6ac3aa9f5_9d0e3ff1934c82e462547@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to dianalakatira@hotmail.com (12.3ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: dianalakatira@hotmail.com Message-ID: <550a6ac3b0de3_9d0e3ff1934c82e4626a2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to jnpbloo@gmail.com (9.7ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: jnpbloo@gmail.com Message-ID: <550a6ac3b4417_9d0e3ff1934c82e462728@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to adrenaliniik0@gmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: adrenaliniik0@gmail.com Message-ID: <550a6ac3b7219_9d0e3ff1934c82e4628f7@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to hubearts@gmail.com (10.7ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: hubearts@gmail.com Message-ID: <550a6ac3bd2d6_9d0e3ff1934c82e462934@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to rouge.lona@gmail.com (11.4ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: rouge.lona@gmail.com Message-ID: <550a6ac3c011a_9d0e3ff1934c82e4630d8@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to lolamorenos@hotmail.com (10.3ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: lolamorenos@hotmail.com Message-ID: <550a6ac3d3259_9d0e3ff1934c82e4631ba@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to hejary@yahoo.com (11.1ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: hejary@yahoo.com Message-ID: <550a6ac3d65d0_9d0e3ff1934c82e463299@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to javierchorbadjian@gmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: javierchorbadjian@gmail.com Message-ID: <550a6ac3d9dde_9d0e3ff1934c82e463379@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to jgarridomarin@hotmail.com (10.1ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: jgarridomarin@hotmail.com Message-ID: <550a6ac3dc8f0_9d0e3ff1934c82e46346e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to mrta000@gmail.com (15.6ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: mrta000@gmail.com Message-ID: <550a6ac3e1e75_9d0e3ff1934c82e46355c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to shelita_22@hotmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: shelita_22@hotmail.com Message-ID: <550a6ac3e63e1_9d0e3ff1934c82e463659@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to bravo@waldobravo.com.br (11.1ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: bravo@waldobravo.com.br Message-ID: <550a6ac3e9083_9d0e3ff1934c82e46378c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.7ms Sent mail to mirtabenavente@gmail.com (10.2ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: mirtabenavente@gmail.com Message-ID: <550a6ac3ee17e_9d0e3ff1934c82e463832@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to fupablo@gmail.com (10.5ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: fupablo@gmail.com Message-ID: <550a6ac3f0cfb_9d0e3ff1934c82e46399@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to rbarrose@gmail.com (11.4ms) Date: Thu, 19 Mar 2015 03:20:51 -0300 From: miguel To: rbarrose@gmail.com Message-ID: <550a6ac3f419b_9d0e3ff1934c82e464090@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.3ms Sent mail to artes_kohen@yahoo.es (9.2ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: artes_kohen@yahoo.es Message-ID: <550a6ac45be6_9d0e3ff1934c82e464165@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 66.3ms Sent mail to molinarte@gmail.com (9.3ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: molinarte@gmail.com Message-ID: <550a6ac4187c8_9d0e3ff1934c82e4642f5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to chapinakaire@yahoo.com (8.5ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: chapinakaire@yahoo.com Message-ID: <550a6ac41b2eb_9d0e3ff1934c82e46438a@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to segunda.piiel@gmail.com (22.3ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: segunda.piiel@gmail.com Message-ID: <550a6ac41ddf0_9d0e3ff1934c82e46442e@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to quehaceres_domesticos@yahoo.com (12.2ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: quehaceres_domesticos@yahoo.com Message-ID: <550a6ac4265db_9d0e3ff1934c82e4645da@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to lacaro360@hotmail.com (9.8ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: lacaro360@hotmail.com Message-ID: <550a6ac429e8a_9d0e3ff1934c82e46467c@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to pabloalbustos@gmail.com (18.5ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: pabloalbustos@gmail.com Message-ID: <550a6ac42cb80_9d0e3ff1934c82e4647a5@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.0ms Sent mail to jpgodoy@uc.cl (9.5ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: jpgodoy@uc.cl Message-ID: <550a6ac432bb8_9d0e3ff1934c82e464847@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to pinturas@alfonsofernandez.cl (10.3ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: pinturas@alfonsofernandez.cl Message-ID: <550a6ac4355bb_9d0e3ff1934c82e4649e2@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.5ms Sent mail to cote@cotesantana.com (9.9ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: cote@cotesantana.com Message-ID: <550a6ac43883d_9d0e3ff1934c82e4650e0@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 2.3ms Sent mail to gacanale@hotmail.com (14.2ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: gacanale@hotmail.com Message-ID: <550a6ac43c0b7_9d0e3ff1934c82e4651cd@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.2ms Sent mail to franuyeah@gmail.com (9.0ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: franuyeah@gmail.com Message-ID: <550a6ac43fcfe_9d0e3ff1934c82e465245@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.6ms Sent mail to cemimi@hotmail.com (74.1ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: cemimi@hotmail.com Message-ID: <550a6ac442ccc_9d0e3ff1934c82e465358@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to pataghom@gmail.com (8.8ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: pataghom@gmail.com Message-ID: <550a6ac455634_9d0e3ff1934c82e4654f3@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Postino::CampaignMailer#newsletter: processed outbound mail in 1.4ms Sent mail to alvaromegaherz@gmail.com (5.9ms) Date: Thu, 19 Mar 2015 03:20:52 -0300 From: miguel To: alvaromegaherz@gmail.com Message-ID: <550a6ac45842c_9d0e3ff1934c82e4655c1@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Completed in 11851ms Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-19 03:21:18 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (5.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (76.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (5.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (3.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (2.6ms) Completed 200 OK in 533ms (Views: 394.6ms | ActiveRecord: 6.3ms) Started GET "/postino/manage/campaigns/1/test" for 127.0.0.1 at 2015-03-19 03:21:22 -0300 Processing by Postino::CampaignsController#test as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::CampaignMailer#newsletter: processed outbound mail in 1.0ms Completed 500 Internal Server Error in 107ms ArgumentError (wrong number of arguments (1 for 2)): /Users/michelsonmartinez/Documents/ruby/postino/app/mailers/application_mailer.rb:10:in `newsletter' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionmailer (4.2.0) lib/action_mailer/base.rb:596:in `block in process' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionmailer (4.2.0) lib/action_mailer/base.rb:593:in `process' actionmailer (4.2.0) lib/action_mailer/base.rb:584:in `initialize' actionmailer (4.2.0) lib/action_mailer/message_delivery.rb:25:in `new' actionmailer (4.2.0) lib/action_mailer/message_delivery.rb:25:in `__getobj__' actionmailer (4.2.0) lib/action_mailer/message_delivery.rb:34:in `message' actionmailer (4.2.0) lib/action_mailer/message_delivery.rb:85:in `deliver_now' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/campaign.rb:42:in `test_newsletter' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:39:in `test' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.8ms) Started GET "/postino/manage/campaigns/1/test" for 127.0.0.1 at 2015-03-19 03:23:00 -0300 Processing by Postino::CampaignsController#test as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (1.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::CampaignMailer#test: processed outbound mail in 474.9ms Sent mail to miguelmichelson@gmail.com (72.7ms) Date: Thu, 19 Mar 2015 03:23:01 -0300 From: miguel To: miguelmichelson@gmail.com Message-ID: <550a6b453445e_9edc3fd547c265e479353@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Redirected to http://localhost:3000/postino/campaigns Completed 302 Found in 675ms (ActiveRecord: 2.9ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (12.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.3ms) Completed 200 OK in 93ms (Views: 91.7ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 03:23:01 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 03:25:40 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (87.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 181ms (Views: 172.0ms | ActiveRecord: 0.9ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:40 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:40 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:40 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:40 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:41 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:41 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:41 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:41 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:41 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:41 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:41 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:41 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:41 -0300 Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:41 -0300 Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-19 03:25:42 -0300 Processing by Postino::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/show.haml within layouts/postino/application (111.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 348ms (Views: 248.3ms | ActiveRecord: 2.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:43 -0300 Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Processing by Postino::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/_form.haml (53.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/edit.haml within layouts/postino/application (57.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 199ms (Views: 197.2ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:48 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 03:25:53 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 147ms (Views: 145.8ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:54 -0300 Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (10.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 88ms (Views: 87.2ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 03:25:56 -0300 Started GET "/postino/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-19 03:26:02 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (9.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (4.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/setup.haml within layouts/postino/application (817.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 970ms (Views: 968.6ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:03 -0300 Started GET "/postino/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (7.2ms) Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/template.haml within layouts/postino/application (114.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 193ms (Views: 190.4ms | ActiveRecord: 1.1ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:05 -0300 Started GET "/postino/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-19 03:26:06 -0300 Processing by Postino::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_steps.haml (8.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaign_wizard/design.haml within layouts/postino/application (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 104ms (Views: 102.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 03:26:07 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (15.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 171ms (Views: 163.1ms | ActiveRecord: 1.1ms) Started GET "/assets/postino/campaign_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/campaigns-261f1c61ef0413328352cf82cac3ec4b.css?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/application-285afa2497909258085d94ec0972d163.css?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/dashboard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/subscribers-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/campaign_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/assets/postino/application-c2bb31ce3fd070bbf80b9099eaa05f22.js?body=1" for 127.0.0.1 at 2015-03-19 04:14:11 -0300 Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-19 04:14:12 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 176ms (Views: 171.2ms | ActiveRecord: 0.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-19 04:14:13 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 85ms (Views: 83.8ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 04:14:14 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (40.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 208ms (Views: 195.3ms | ActiveRecord: 0.8ms) Started GET "/postino/manage/campaigns/1/test" for 127.0.0.1 at 2015-03-19 19:34:48 -0300 Processing by Postino::CampaignsController#test as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (13.7ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::CampaignMailer#test: processed outbound mail in 601.5ms Sent mail to miguelmichelson@gmail.com (55.5ms) Date: Thu, 19 Mar 2015 19:34:50 -0300 From: miguel To: miguelmichelson@gmail.com Message-ID: <550b4f0aa21d8_b5203ff5d9f9581c37ab@Michelsons-MacBook-Pro.local.mail> Subject: censo Mime-Version: 1.0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit

Redirected to http://localhost:3000/postino/campaigns Completed 302 Found in 1162ms (ActiveRecord: 19.7ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-19 19:34:50 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (55.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (7.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (4.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (3.5ms) Completed 200 OK in 697ms (Views: 696.0ms | ActiveRecord: 0.3ms) ActiveRecord::SchemaMigration Load (17.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePostinoMetrics (20150319223955)  (0.1ms) begin transaction  (1.2ms) CREATE TABLE "postino_metrics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "subject_id" integer, "campaign_id" integer, "host" varchar, "action" varchar, "data" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.2ms) select sqlite_version(*)  (0.2ms) CREATE INDEX "index_postino_metrics_on_subject_id" ON "postino_metrics" ("subject_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_metrics_on_subject_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_metrics_on_subject_id' AND type='index'  (0.1ms) CREATE INDEX "index_postino_metrics_on_campaign_id" ON "postino_metrics" ("campaign_id") SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150319223955"]]  (2.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_template_id' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_metrics_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_metrics_on_campaign_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_metrics_on_subject_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_metrics_on_subject_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePostinoMetrics (20150320031404)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "postino_metrics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "trackable_id" integer NOT NULL, "trackable_type" varchar NOT NULL, "campaign_id" integer, "action" varchar, "host" varchar, "data" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  SQLite3::SQLException: table "postino_metrics" already exists: CREATE TABLE "postino_metrics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "trackable_id" integer NOT NULL, "trackable_type" varchar NOT NULL, "campaign_id" integer, "action" varchar, "host" varchar, "data" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) rollback transaction Postino::Campaign Load (53.5ms) DROP TABLE postino_metrics ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePostinoMetrics (20150320031404)  (0.1ms) begin transaction  (0.6ms) CREATE TABLE "postino_metrics" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "trackable_id" integer NOT NULL, "trackable_type" varchar NOT NULL, "campaign_id" integer, "action" varchar, "host" varchar, "data" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) select sqlite_version(*)  (0.2ms) CREATE INDEX "index_postino_metrics_on_trackable_type_and_trackable_id" ON "postino_metrics" ("trackable_type", "trackable_id")  (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_metrics_on_trackable_type_and_trackable_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_metrics_on_trackable_type_and_trackable_id' AND type='index'  (0.1ms) CREATE INDEX "index_postino_metrics_on_campaign_id" ON "postino_metrics" ("campaign_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150320031404"]]  (6.7ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_template_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_list_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaigns_on_parent_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_metrics_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_metrics_on_campaign_id' AND type='index'   (0.1ms) SELECT sql FROM sqlite_master WHERE name='index_postino_metrics_on_trackable_type_and_trackable_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_metrics_on_trackable_type_and_trackable_id' AND type='index'  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index'  Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" ORDER BY "postino_metrics"."id" ASC LIMIT 1 Started GET "/postino/manage/campaigns/" for 127.0.0.1 at 2015-03-20 01:31:36 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.8ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (39.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.2ms) Completed 200 OK in 392ms (Views: 381.3ms | ActiveRecord: 1.3ms) Started GET "/assets/postino/tracks-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-20 01:31:36 -0300 Started GET "/assets/postino/application-07844edf0cafd326c9af3dcd6e7c2947.css?body=1" for 127.0.0.1 at 2015-03-20 01:31:36 -0300 Started GET "/assets/postino/tracks-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-20 01:31:36 -0300 Started GET "/assets/postino/application-3842459f43ed4b0272503f5b466fcf2d.js?body=1" for 127.0.0.1 at 2015-03-20 01:31:36 -0300 Started GET "/postino/campaigns/" for 127.0.0.1 at 2015-03-20 01:31:42 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (16.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 119ms (Views: 118.1ms | ActiveRecord: 0.5ms) Started GET "/postino/campaigns/trackers" for 127.0.0.1 at 2015-03-20 01:32:27 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"trackers"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 0]] Completed 404 Not Found in 3ms ActiveRecord::RecordNotFound (Couldn't find Postino::Campaign with 'id'=trackers): activerecord (4.2.0) lib/active_record/core.rb:154:in `find' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:11:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.3ms) Started GET "/postino/campaigns/tracker" for 127.0.0.1 at 2015-03-20 01:32:30 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"tracker"} Postino::Campaign Load (0.1ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 0]] Completed 404 Not Found in 1ms ActiveRecord::RecordNotFound (Couldn't find Postino::Campaign with 'id'=tracker): activerecord (4.2.0) lib/active_record/core.rb:154:in `find' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:11:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (14.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.7ms) Started GET "/postino/campaigns/tracks" for 127.0.0.1 at 2015-03-20 01:32:36 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"tracks"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 0]] Completed 404 Not Found in 2ms ActiveRecord::RecordNotFound (Couldn't find Postino::Campaign with 'id'=tracks): activerecord (4.2.0) lib/active_record/core.rb:154:in `find' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:11:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (40.4ms) Started GET "/postino/campaigns/1/tracks" for 127.0.0.1 at 2015-03-20 01:32:43 -0300 Processing by Postino::TracksController#index as HTML Parameters: {"campaign_id"=>"1"} Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms) Started GET "/postino/campaigns/1/tracks" for 127.0.0.1 at 2015-03-20 01:34:16 -0300 Processing by Postino::TracksController#index as HTML Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 38ms (Views: 1.8ms | ActiveRecord: 1.1ms) Started GET "/postino/campaigns/1/tracks.gif" for 127.0.0.1 at 2015-03-20 01:34:41 -0300 Processing by Postino::TracksController#index as GIF Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1/tracks.gif" for 127.0.0.1 at 2015-03-20 01:34:56 -0300 Processing by Postino::TracksController#index as GIF Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1/tracks.gif" for 127.0.0.1 at 2015-03-20 01:35:49 -0300 Processing by Postino::TracksController#index as GIF Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 136ms LoadError (cannot load such file -- aasm): activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.0) lib/active_support/dependencies.rb:238:in `block in load_dependency' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:238:in `load_dependency' activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `require' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/subscriber.rb:1:in `' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.0) lib/active_support/dependencies.rb:526:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:304:in `safe_constantize' activesupport (4.2.0) lib/active_support/dependencies.rb:572:in `safe_get' activesupport (4.2.0) lib/active_support/dependencies.rb:603:in `safe_constantize' activerecord (4.2.0) lib/active_record/inheritance.rb:154:in `block in compute_type' activerecord (4.2.0) lib/active_record/inheritance.rb:153:in `each' activerecord (4.2.0) lib/active_record/inheritance.rb:153:in `compute_type' activerecord (4.2.0) lib/active_record/reflection.rb:271:in `compute_class' activerecord (4.2.0) lib/active_record/reflection.rb:640:in `klass' activerecord (4.2.0) lib/active_record/associations/association.rb:118:in `klass' activerecord (4.2.0) lib/active_record/associations/collection_association.rb:41:in `reader' activerecord (4.2.0) lib/active_record/associations/builder/association.rb:115:in `subscribers' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:23:in `find_subscriber' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:11:in `index' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (18.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.1ms) Started GET "/postino/campaigns/1/tracks.gif?s=1" for 127.0.0.1 at 2015-03-20 01:35:56 -0300 Processing by Postino::TracksController#index as GIF Parameters: {"s"=>"1", "campaign_id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 8ms LoadError (cannot load such file -- aasm): activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.0) lib/active_support/dependencies.rb:238:in `block in load_dependency' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:238:in `load_dependency' activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `require' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/subscriber.rb:1:in `' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.0) lib/active_support/dependencies.rb:526:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:304:in `safe_constantize' activesupport (4.2.0) lib/active_support/dependencies.rb:572:in `safe_get' activesupport (4.2.0) lib/active_support/dependencies.rb:603:in `safe_constantize' activerecord (4.2.0) lib/active_record/inheritance.rb:154:in `block in compute_type' activerecord (4.2.0) lib/active_record/inheritance.rb:153:in `each' activerecord (4.2.0) lib/active_record/inheritance.rb:153:in `compute_type' activerecord (4.2.0) lib/active_record/reflection.rb:271:in `compute_class' activerecord (4.2.0) lib/active_record/reflection.rb:640:in `klass' activerecord (4.2.0) lib/active_record/associations/association.rb:118:in `klass' activerecord (4.2.0) lib/active_record/associations/collection_association.rb:41:in `reader' activerecord (4.2.0) lib/active_record/associations/builder/association.rb:115:in `subscribers' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:23:in `find_subscriber' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:11:in `index' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.3ms) Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" ORDER BY "postino_campaigns"."id" ASC LIMIT 1 Postino::Subscriber Load (63.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? [["id", 1]] Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" ORDER BY "postino_campaigns"."id" ASC LIMIT 1 Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? ORDER BY "postino_subscribers"."id" ASC LIMIT 1 [["id", 1]] Started GET "/postino/campaigns/1/tracks.gif?s=1" for 127.0.0.1 at 2015-03-20 01:39:07 -0300 Processing by Postino::TracksController#index as GIF Parameters: {"s"=>"1", "campaign_id"=>"1"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["id", 1], ["id", 1]] Completed 200 OK in 549ms (Views: 1.5ms | ActiveRecord: 7.7ms) Started GET "/postino/campaigns/1/tracks/click.gif?s=1" for 127.0.0.1 at 2015-03-20 01:40:41 -0300 AbstractController::ActionNotFound (The action 'show' could not be found for Postino::TracksController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (28.1ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 01:41:06 -0300 AbstractController::ActionNotFound (The action 'click' could not be found for Postino::TracksController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.6ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 01:45:07 -0300 ActionController::RoutingError (undefined method `each' for "click open bounce spam":String): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:15:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:4:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:3:in `' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (69.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (43.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (37.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (498.4ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 01:45:15 -0300 AbstractController::ActionNotFound (The action 'click' could not be found for Postino::TracksController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.9ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 01:45:27 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 39ms ArgumentError (wrong number of arguments (0 for 1)): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:17:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.6ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 01:45:41 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 103ms ArgumentError (wrong number of arguments (0 for 1)): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:17:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (39.3ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 01:45:51 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 40ms ArgumentError (wrong number of arguments (0 for 1)): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:17:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (115.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (143.1ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 01:46:06 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 41ms ArgumentError (wrong number of arguments (0 for 1)): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:17:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.8ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 01:46:30 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 126ms ArgumentError (wrong number of arguments (0 for 1)): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:17:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (14.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.2ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 01:46:50 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["id", 1], ["id", 1]] Completed 500 Internal Server Error in 80ms NoMethodError (undefined method `track_click' for #): activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:18:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.6ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 01:53:27 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["id", 1], ["id", 1]] Completed 500 Internal Server Error in 185ms NoMethodError (undefined method `track_click' for #): activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:12:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (59.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (85.1ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 02:13:40 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["id", 1], ["id", 1]]  (0.1ms) begin transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] SQL (0.5ms) INSERT INTO "postino_metrics" ("trackable_id", "trackable_type", "campaign_id", "action", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["trackable_id", 1], ["trackable_type", "Postino::Subscriber"], ["campaign_id", 1], ["action", "click"], ["created_at", "2015-03-20 05:13:41.054570"], ["updated_at", "2015-03-20 05:13:41.054570"]]  (6.4ms) commit transaction Completed 500 Internal Server Error in 199ms NoMethodError (undefined method `image_url' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:13:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (57.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (63.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (142.9ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 02:14:01 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["id", 1], ["id", 1]]  (0.1ms) begin transaction Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] SQL (0.5ms) INSERT INTO "postino_metrics" ("trackable_id", "trackable_type", "campaign_id", "action", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["trackable_id", 1], ["trackable_type", "Postino::Subscriber"], ["campaign_id", 1], ["action", "click"], ["created_at", "2015-03-20 05:14:01.303295"], ["updated_at", "2015-03-20 05:14:01.303295"]]  (2.6ms) commit transaction Completed 500 Internal Server Error in 115ms NoMethodError (undefined method `image_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:13:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.7ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 02:15:20 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["id", 1], ["id", 1]]  (0.1ms) begin transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] SQL (0.5ms) INSERT INTO "postino_metrics" ("trackable_id", "trackable_type", "campaign_id", "action", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["trackable_id", 1], ["trackable_type", "Postino::Subscriber"], ["campaign_id", 1], ["action", "click"], ["created_at", "2015-03-20 05:15:21.289328"], ["updated_at", "2015-03-20 05:15:21.289328"]]  (6.7ms) commit transaction Completed 500 Internal Server Error in 118ms Errno::ENOENT (No such file or directory - /assets/postino/track-3fd866b7d032b19e5eb66916dd032f96.gif): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:13:in `read' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:13:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (14.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.7ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 02:15:47 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["id", 1], ["id", 1]]  (0.1ms) begin transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] SQL (0.4ms) INSERT INTO "postino_metrics" ("trackable_id", "trackable_type", "campaign_id", "action", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["trackable_id", 1], ["trackable_type", "Postino::Subscriber"], ["campaign_id", 1], ["action", "click"], ["created_at", "2015-03-20 05:15:47.706268"], ["updated_at", "2015-03-20 05:15:47.706268"]]  (6.4ms) commit transaction Completed 500 Internal Server Error in 185ms Errno::ENOENT (No such file or directory - http://localhost:3000/assets/postino/track-3fd866b7d032b19e5eb66916dd032f96.gif): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:13:in `read' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:13:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.1ms) Started GET "/assets/postino/track-3fd866b7d032b19e5eb66916dd032f96.gif" for 127.0.0.1 at 2015-03-20 02:15:55 -0300 Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 02:17:23 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["id", 1], ["id", 1]]  (0.1ms) begin transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] SQL (0.4ms) INSERT INTO "postino_metrics" ("trackable_id", "trackable_type", "campaign_id", "action", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["trackable_id", 1], ["trackable_type", "Postino::Subscriber"], ["campaign_id", 1], ["action", "click"], ["created_at", "2015-03-20 05:17:24.252627"], ["updated_at", "2015-03-20 05:17:24.252627"]]  (11.1ms) commit transaction Completed 500 Internal Server Error in 226ms Errno::ENOENT (No such file or directory - /Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/assets/images/postino/track.gif): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:14:in `read' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:14:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (60.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (86.2ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 02:18:17 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["id", 1], ["id", 1]]  (0.1ms) begin transaction Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] SQL (0.7ms) INSERT INTO "postino_metrics" ("trackable_id", "trackable_type", "campaign_id", "action", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["trackable_id", 1], ["trackable_type", "Postino::Subscriber"], ["campaign_id", 1], ["action", "click"], ["created_at", "2015-03-20 05:18:17.386801"], ["updated_at", "2015-03-20 05:18:17.386801"]]  (6.3ms) commit transaction Completed 500 Internal Server Error in 114ms NoMethodError (undefined method `root' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/tracks_controller.rb:13:in `block (2 levels) in ' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (14.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (43.0ms) Started GET "/postino/campaigns/1/tracks/1/click.gif" for 127.0.0.1 at 2015-03-20 02:18:55 -0300 Processing by Postino::TracksController#click as GIF Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["id", 1], ["id", 1]]  (0.2ms) begin transaction Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] SQL (0.6ms) INSERT INTO "postino_metrics" ("trackable_id", "trackable_type", "campaign_id", "action", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["trackable_id", 1], ["trackable_type", "Postino::Subscriber"], ["campaign_id", 1], ["action", "click"], ["created_at", "2015-03-20 05:18:55.766028"], ["updated_at", "2015-03-20 05:18:55.766028"]]  (2.8ms) commit transaction Rendered text template (0.1ms) Sent data 1x1.gif (31.9ms) Completed 200 OK in 204ms (Views: 31.7ms | ActiveRecord: 6.9ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-20 02:35:55 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.6ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (116.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (50.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (67.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (2.8ms) Completed 200 OK in 631ms (Views: 620.5ms | ActiveRecord: 1.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-20 02:36:09 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 114ms (Views: 107.6ms | ActiveRecord: 0.6ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-20 02:36:11 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 196ms (Views: 191.2ms | ActiveRecord: 0.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-20 02:36:12 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 165ms (Views: 163.6ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-20 02:36:13 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (15.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 103ms (Views: 102.3ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-20 02:36:14 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (4.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 157ms (Views: 156.4ms | ActiveRecord: 0.3ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-20 02:36:14 -0300 Processing by Postino::TemplatesController#index as HTML Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/templates/index.haml within layouts/postino/application (3.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 89ms (Views: 88.0ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-20 02:36:15 -0300 Processing by Postino::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/lists/index.haml within layouts/postino/application (5.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 154ms (Views: 153.2ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-20 02:36:16 -0300 Processing by Postino::CampaignsController#index as HTML Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/index.haml within layouts/postino/application (15.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 200 OK in 114ms (Views: 113.0ms | ActiveRecord: 0.5ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:22:26 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (55.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (75.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.2ms) Completed 200 OK in 1098ms (Views: 1025.9ms | ActiveRecord: 55.9ms) Started GET "/assets/postino/manage/campaigns-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-21 11:22:27 -0300 Started GET "/assets/postino/manage/campain_wizard-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-21 11:22:27 -0300 Started GET "/assets/postino/manage/lists-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-21 11:22:27 -0300 Started GET "/assets/postino/manage/templates-dfa7b291102a59957590b4e00e20f1c8.css?body=1" for 127.0.0.1 at 2015-03-21 11:22:27 -0300 Started GET "/assets/postino/application-82b99ccfb9f7932d0b0fb714c99f715d.css?body=1" for 127.0.0.1 at 2015-03-21 11:22:27 -0300 Started GET "/assets/postino/manage/campain_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 11:22:27 -0300 Started GET "/assets/postino/manage/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 11:22:27 -0300 Started GET "/assets/postino/manage/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 11:22:27 -0300 Started GET "/assets/postino/manage/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 11:22:27 -0300 Started GET "/assets/postino/application-74897cf7aa10e46d9455aca92f3def85.js?body=1" for 127.0.0.1 at 2015-03-21 11:22:27 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:36:24 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.9ms) Completed 500 Internal Server Error in 31ms ActionView::Template::Error (couldn't find file 'font-awesome' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:12)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml__2984355999155135296_70180286089300' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (84.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (123.1ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:36:53 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (5.1ms) Completed 500 Internal Server Error in 48ms ActionView::Template::Error (couldn't find file 'font-awesome' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:12)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml__2984355999155135296_70180286089300' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (28.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.7ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:37:45 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (32.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (127.4ms) Completed 500 Internal Server Error in 499ms ActionView::Template::Error (couldn't find file 'font-awesome' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:12)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___464484811766726476_70197513354540' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (28.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (59.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (117.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:45:49 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (4.2ms) Completed 500 Internal Server Error in 155ms ActionView::Template::Error (couldn't find file 'font-awesome' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:12)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___464484811766726476_70197513354540' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (76.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (112.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:47:26 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.6ms) Completed 500 Internal Server Error in 68ms ActionView::Template::Error (couldn't find file 'font-awesome' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:12)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___464484811766726476_70197513354540' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (22.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.7ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:49:11 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (32.7ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (138.1ms) Completed 500 Internal Server Error in 676ms ActionView::Template::Error (couldn't find file 'font-awesome' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:12)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml__2844439312583252547_70136431586220' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (21.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (83.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (140.7ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:52:24 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (18.8ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (147.6ms) Completed 500 Internal Server Error in 498ms ActionView::Template::Error (couldn't find file 'animate/animate.css' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:13)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml__1770660522882158508_70350798775500' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (59.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (46.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (155.9ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:52:46 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (5.5ms) Completed 500 Internal Server Error in 59ms ActionView::Template::Error (couldn't find file 'style' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:14)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml__1770660522882158508_70350798775500' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (22.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (54.8ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:53:00 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.0ms) Completed 500 Internal Server Error in 35ms ActionView::Template::Error (couldn't find file 'style' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:14)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml__1770660522882158508_70350798775500' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (22.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:53:12 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.5ms) Completed 500 Internal Server Error in 38ms ActionView::Template::Error (couldn't find file 'style' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:14)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml__1770660522882158508_70350798775500' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.0ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:53:15 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (5.2ms) Completed 500 Internal Server Error in 40ms ActionView::Template::Error (couldn't find file 'style' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:14)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml__1770660522882158508_70350798775500' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.9ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:53:27 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.3ms) Completed 500 Internal Server Error in 35ms ActionView::Template::Error (couldn't find file 'style' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:14)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml__1770660522882158508_70350798775500' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (21.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (52.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:55:19 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (39.8ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (193.3ms) Completed 500 Internal Server Error in 509ms ActionView::Template::Error (couldn't find file 'style' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/application.css:14)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___1238407884068093774_70191603707160' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (22.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (46.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (101.7ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:55:39 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.9ms) Completed 500 Internal Server Error in 3756ms ActionView::Template::Error (File to import not found or unreadable: bootstrap-sprockets. Load paths: /Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/assets/images /Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/assets/javascripts /Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/assets/stylesheets /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/font-awesome-rails-4.3.0.0/app/assets/fonts /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/font-awesome-rails-4.3.0.0/app/assets/stylesheets /Users/michelsonmartinez/Documents/ruby/postino/app/assets/images /Users/michelsonmartinez/Documents/ruby/postino/app/assets/javascripts /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets /Users/michelsonmartinez/Documents/ruby/postino/vendor/assets/images /Users/michelsonmartinez/Documents/ruby/postino/vendor/assets/javascripts /Users/michelsonmartinez/Documents/ruby/postino/vendor/assets/stylesheets (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/style.css.scss:10)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/style.css.scss:10 sass (3.4.13) lib/sass/tree/import_node.rb:66:in `rescue in import' sass (3.4.13) lib/sass/tree/import_node.rb:45:in `import' sass (3.4.13) lib/sass/tree/import_node.rb:28:in `imported_file' sass (3.4.13) lib/sass/tree/import_node.rb:37:in `css_import?' sass (3.4.13) lib/sass/tree/visitors/perform.rb:311:in `visit_import' sass (3.4.13) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.4.13) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.4.13) lib/sass/stack.rb:79:in `block in with_base' sass (3.4.13) lib/sass/stack.rb:115:in `with_frame' sass (3.4.13) lib/sass/stack.rb:79:in `with_base' sass (3.4.13) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.4.13) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.4.13) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.4.13) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.4.13) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.4.13) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.4.13) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.4.13) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.4.13) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.4.13) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.4.13) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.4.13) lib/sass/tree/visitors/perform.rb:8:in `visit' sass (3.4.13) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.4.13) lib/sass/tree/root_node.rb:20:in `render' sass (3.4.13) lib/sass/engine.rb:268:in `render' sprockets (2.12.3) lib/sprockets/sass_template.rb:53:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.12.3) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.12.3) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.12.3) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.12.3) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___1238407884068093774_70191603707160' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (29.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (55.8ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:56:14 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.7ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (8.5ms) Completed 500 Internal Server Error in 85ms ActionView::Template::Error (File to import not found or unreadable: bootstrap-sprockets. Load paths: /Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/assets/images /Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/assets/javascripts /Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/assets/stylesheets /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/font-awesome-rails-4.3.0.0/app/assets/fonts /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/font-awesome-rails-4.3.0.0/app/assets/stylesheets /Users/michelsonmartinez/Documents/ruby/postino/app/assets/images /Users/michelsonmartinez/Documents/ruby/postino/app/assets/javascripts /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets /Users/michelsonmartinez/Documents/ruby/postino/vendor/assets/images /Users/michelsonmartinez/Documents/ruby/postino/vendor/assets/javascripts /Users/michelsonmartinez/Documents/ruby/postino/vendor/assets/stylesheets (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/style.css.scss:10)): 5: = stylesheet_link_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" 6: = javascript_include_tag "//code.jquery.com/jquery-git2.min.js" 7: = javascript_include_tag "//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js" 8: = stylesheet_link_tag "postino/application", media: "all" 9: = javascript_include_tag "postino/application" 10: = csrf_meta_tags 11: / HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries /Users/michelsonmartinez/Documents/ruby/postino/app/assets/stylesheets/postino/style.css.scss:10 sass (3.4.13) lib/sass/tree/import_node.rb:66:in `rescue in import' sass (3.4.13) lib/sass/tree/import_node.rb:45:in `import' sass (3.4.13) lib/sass/tree/import_node.rb:28:in `imported_file' sass (3.4.13) lib/sass/tree/import_node.rb:37:in `css_import?' sass (3.4.13) lib/sass/tree/visitors/perform.rb:311:in `visit_import' sass (3.4.13) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.4.13) lib/sass/tree/visitors/perform.rb:158:in `block in visit' sass (3.4.13) lib/sass/stack.rb:79:in `block in with_base' sass (3.4.13) lib/sass/stack.rb:115:in `with_frame' sass (3.4.13) lib/sass/stack.rb:79:in `with_base' sass (3.4.13) lib/sass/tree/visitors/perform.rb:158:in `visit' sass (3.4.13) lib/sass/tree/visitors/base.rb:52:in `block in visit_children' sass (3.4.13) lib/sass/tree/visitors/base.rb:52:in `map' sass (3.4.13) lib/sass/tree/visitors/base.rb:52:in `visit_children' sass (3.4.13) lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' sass (3.4.13) lib/sass/tree/visitors/perform.rb:179:in `with_environment' sass (3.4.13) lib/sass/tree/visitors/perform.rb:166:in `visit_children' sass (3.4.13) lib/sass/tree/visitors/base.rb:36:in `block in visit' sass (3.4.13) lib/sass/tree/visitors/perform.rb:186:in `visit_root' sass (3.4.13) lib/sass/tree/visitors/base.rb:36:in `visit' sass (3.4.13) lib/sass/tree/visitors/perform.rb:157:in `visit' sass (3.4.13) lib/sass/tree/visitors/perform.rb:8:in `visit' sass (3.4.13) lib/sass/tree/root_node.rb:36:in `css_tree' sass (3.4.13) lib/sass/tree/root_node.rb:20:in `render' sass (3.4.13) lib/sass/engine.rb:268:in `render' sprockets (2.12.3) lib/sprockets/sass_template.rb:53:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies' sprockets (2.12.3) lib/sprockets/processed_asset.rb:105:in `each' sprockets (2.12.3) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies' sprockets (2.12.3) lib/sprockets/processed_asset.rb:97:in `build_required_assets' sprockets (2.12.3) lib/sprockets/processed_asset.rb:16:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___1238407884068093774_70191603707160' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (38.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (13.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (81.8ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:57:00 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (5.5ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (104.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (6.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (4.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (3.5ms) Completed 200 OK in 9382ms (Views: 9260.3ms | ActiveRecord: 6.2ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 11:57:10 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 11:57:10 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 11:57:10 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:58:37 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.2ms) Completed 500 Internal Server Error in 650ms ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( postino/manage/lists.css )` to `config/initializers/assets.rb` and restart your server): 37: %meta{:content => "width=device-width, initial-scale=1.0", :name => "viewport"}/ 38: %title INSPINIA | Responsive admin theme 39: / Include style per-controller - vendor plugins 40: = stylesheet_link_tag params[:controller] if ::Rails.application.assets.find_asset("#{params[:controller]}.css") 41: / Main css styles 42: = stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true 43: / Main javascript files sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:193:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:40:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365080898520' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (55.9ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 11:58:58 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.1ms) Completed 500 Internal Server Error in 303ms ActionView::Template::Error (Missing partial layouts/_navigation with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): 49: / Wrapper 50: #wrapper{:class => "#{params[:controller]}.#{params[:action]}"} 51: / Navigation 52: = render 'layouts/navigation' 53: / Page wraper 54: #page-wrapper{:class => "gray-bg #{@extra_class}"} 55: / Page wrapper actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:52:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365072768400' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.7ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:01:02 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_main_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.2ms) Completed 500 Internal Server Error in 257ms ActionView::Template::Error (Missing partial layouts/_navigation with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): 49: / Wrapper 50: #wrapper{:class => "#{params[:controller]}.#{params[:action]}"} 51: / Navigation 52: = render 'layouts/navigation' 53: / Page wraper 54: #page-wrapper{:class => "gray-bg #{@extra_class}"} 55: / Page wrapper actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:52:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365072768400' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (54.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:01:51 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (4.6ms) Completed 500 Internal Server Error in 55ms ActionView::Template::Error (Missing partial layouts/_navigation with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): 47: / Wrapper 48: #wrapper{:class => "#{params[:controller]}.#{params[:action]}"} 49: / Navigation 50: = render 'layouts/navigation' 51: / Page wraper 52: #page-wrapper{:class => "gray-bg #{@extra_class}"} 53: / Page wrapper actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:50:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365063223900' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (53.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:02:03 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (4.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (1.4ms) Completed 500 Internal Server Error in 54ms ActionView::Template::Error (Illegal nesting: nesting within plain text is illegal.): 1: \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n \n\n", -6, false);::Haml... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...=> "image", :src => image_url 'profile_small.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected ')', expecting '}' ... image_url 'profile_small.jpg')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...-bold'>David Williams\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - b /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - pa /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n \n Profile\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... Contacts\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... Mailbox\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...vider'>
  • \n
  • \n Log... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...
  • \n Logout\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...>Logout\n
  • \n \n \n \n
    \n
    \n I... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...
    \n IN+\n \n IN+\n
    \n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...+\n
    \n \n \n
    \n\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n \n\n", -6, false);::Haml... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:50:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365063898080' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (28.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (14.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (88.5ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:03:42 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (4.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (2.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.erb (176.1ms) Completed 500 Internal Server Error in 1546ms ActionView::Template::Error (No route matches {:action=>"login_2", :controller=>"postino/manage/pages"}): 110: 111: 112:
  • 113: 114: Log out 115: 116:
  • actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/url_for.rb:156:in `url_for' actionview (4.2.0) lib/action_view/routing_url_for.rb:94:in `url_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.erb:113:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino__topnavbar_html_erb__4081997152583266021_70365075150780' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:54:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365063898080' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (84.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (112.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:04:17 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (7.4ms) Completed 500 Internal Server Error in 48ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...=> "image", :src => image_url 'profile_small.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected ')', expecting '}' ... image_url 'profile_small.jpg')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...-bold'>David Williams\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - b /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - pa /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n \n Profile\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... Contacts\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... Mailbox\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...vider'>
  • \n
  • \n Log... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...
  • \n Logout\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...>Logout\n
  • \n \n \n \n
    \n
    \n I... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...
    \n IN+\n \n IN+\n
    \n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...+\n
    \n \n \n
    \n\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n \n\n", -6, false);::Haml... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...=> "image", :src => image_url 'profile_small.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected ')', expecting '}' ... image_url 'profile_small.jpg')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...-bold'>David Williams\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - b /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - pa /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n \n Profile\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... Contacts\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... Mailbox\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...vider'>
  • \n
  • \n Log... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...
  • \n Logout\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...>Logout\n
  • \n \n \n \n
    \n
    \n I... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...
    \n IN+\n \n IN+\n
    \n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...+\n
    \n \n \n
    \n\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n \n\n", -6, false);::Haml... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:50:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365063898080' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (24.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (76.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (123.8ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:04:30 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (4.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (45.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.erb (92.5ms) Completed 500 Internal Server Error in 207ms ActionView::Template::Error (No route matches {:action=>"login_2", :controller=>"postino/manage/pages"}): 110: 111: 112:
  • 113: 114: Log out 115: 116:
  • actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/url_for.rb:156:in `url_for' actionview (4.2.0) lib/action_view/routing_url_for.rb:94:in `url_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.erb:113:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino__topnavbar_html_erb__4081997152583266021_70365075150780' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:54:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365063898080' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (30.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (72.1ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:05:50 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (27.0ms) Completed 500 Internal Server Error in 216ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...tes({}, nil, :href => url_for :controller => 'pages', :actio... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected ',', expecting '}' ...url_for :controller => 'pages', :action => 'login_2')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected ')', expecting '}' ... 'pages', :action => 'login_2')}>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected '<' ... \n Log out\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected $undefined ... Log out\n \n \n \n \n \n \n \n\n", -4, fal... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected $undefined ...>\n \n \n\n", -4, false);::Haml::Util.h... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: unterminated string meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected $end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...tes({}, nil, :href => url_for :controller => 'pages', :actio... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected ',', expecting '}' ...url_for :controller => 'pages', :action => 'login_2')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected ')', expecting '}' ... 'pages', :action => 'login_2')}>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected '<' ... \n Log out\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected $undefined ... Log out\n \n \n \n \n \n \n \n\n", -4, fal... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected $undefined ...>\n \n \n\n", -4, false);::Haml::Util.h... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: unterminated string meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94: syntax error, unexpected $end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:54:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365063898080' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (22.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (56.1ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:06:07 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (8.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (96.2ms) Completed 500 Internal Server Error in 180ms ActionView::Template::Error (No route matches {:action=>"login_2", :controller=>"postino/manage/pages"}): 91: %strong See All Alerts 92: %i.fa.fa-angle-right 93: %li 94: %a{:href => url_for( :controller => 'pages', :action => 'login_2')} 95: %i.fa.fa-sign-out 96: Log out actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/url_for.rb:156:in `url_for' actionview (4.2.0) lib/action_view/routing_url_for.rb:94:in `url_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml:94:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino__topnavbar_html_haml__1627488361105243015_70365081737140' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:54:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365063898080' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (25.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (64.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:06:25 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (4.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (187.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.7ms) Completed 500 Internal Server Error in 361ms ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( postino/manage/lists.js )` to `config/initializers/assets.rb` and restart your server): 59: / End page wrapper 60: / End wrapper 61: / Include javascript per-controller - vendor plugins 62: = javascript_include_tag params[:controller] if ::Rails.application.assets.find_asset("#{params[:controller]}.js") 63: / Include javascript per-view 64: / For demo purpose we include javascript in view but you can easily start SeedProject and organize it with Rails asset pipeline as you want 65: = yield :javascript sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:193:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:137:in `block in javascript_include_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `javascript_include_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:62:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365063898080' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (27.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (64.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:06:44 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.6ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (6.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (120.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 270ms (Views: 268.1ms | ActiveRecord: 0.6ms) Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-03-21 12:06:44 -0300 Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-03-21 12:06:44 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:06:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2014.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (3688.7ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:06:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.4ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:06:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (67.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (152.7ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:06:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.9ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (3.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (72.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 320ms (Views: 318.6ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/postino/tracks-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/postino/manage/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/postino/manage/campain_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/postino/manage/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/postino/manage/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/assets/postino/application-74897cf7aa10e46d9455aca92f3def85.js?body=1" for 127.0.0.1 at 2015-03-21 12:07:27 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:07:28 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.7ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:07:28 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (87.4ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:07:29 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.7ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:07:29 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:07:29 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.5ms) Started GET "/assets/fontawesome-webfont-e1e9796e37de923cfba919958e1e7fb0.woff?v=4.3.0" for 127.0.0.1 at 2015-03-21 12:07:29 -0300 Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:09:15 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (4.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (8.9ms) Completed 500 Internal Server Error in 572ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...=> "image", :src => image_url 'profile_small.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected ')', expecting '}' ... image_url 'profile_small.jpg')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...-bold'>David Williams\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - b /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp options - pa /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... \n \n \n Profile\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... Contacts\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ... Mailbox\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...vider'>
  • \n
  • \n Log... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...
  • \n Logout\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...>Logout\n
  • \n \n \n \n
    \n
    \n I... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...
    \n IN+\n \n IN+\n
    \n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...+\n
    \n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '(' ...>\n
  • \n
  • \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...lass='active'>\n \n \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected '<' ... \n Dashboards\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...a arrow'>\n \n
  • \n
    \n
    \n I... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...
    \n IN+\n \n IN+\n
    \n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...+\n
    \n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '(' ...>\n
  • \n
  • \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...lass='active'>\n \n \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected '<' ... \n Dashboards\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:7: syntax error, unexpected $undefined ...a arrow'>\n \n
  • \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Read below... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Read below comments and tweets
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='fa fa-chevron-up'>
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ass='ibox-content no-padding'>\n
      \n
        \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
          \n
        • \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
        • \n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

          \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

          \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...t-info' href='#'>Stock Man\n Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ck chart. This price is crazy!\n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - pa /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 hours ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined .../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Kevin S... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Kevin Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...text-info' href='#'>Kevin Smith\n Lor... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...galley\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 2 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... href='#'>Jonathan Febrick\n The stan... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... standard chunk of Lorem Ipsum\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 1 hour a... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined .../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...info' href='#'>Kevin Smith\n Lorem ip... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... unknown printer took a galley\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 minuts... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined .../small>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Your daily... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Your daily feed
    \n 10 Messages\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...content'>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...iv class='feed-activity-list'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n "image", :src => image_url 'profile.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ')', expecting '}' ...src => image_url 'profile.jpg')}>\n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>5m ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...y 5:60 pm - 12.06.2014\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...g-circle' src='assets/a2.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Mark Johnson\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...e.\n
    \n Today 2:10 pm -... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ...mall class='text-muted'>Today 2:10 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: no . floating literal anymore; put 0 before dot ...t-muted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER ...ted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...g-circle' src='assets/a3.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Janet Rosowski\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - trg unmatched close parenthesis: /strong>\n add 1 photo on\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 8... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...g-circle' src='assets/a4.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...ight text-navy'>5h ago\n Chris Johnatan Overtunk\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - trg unmatched close parenthesis: /strong>\n started following\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...("\n
    \n Yesterday 1:21 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 1:21 pm - 11.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER ...>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...i class='fa fa-thumbs-up'>\n Li... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ... \n Lo... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...\n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...g-circle' src='assets/a5.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Kim Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...e.\n
    \n Yesterday 5:20 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 5:20 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER ...>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...v>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...cle' src='assets/profile.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...s='pull-right'>23h ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - trg unmatched close parenthesis: /strong>\n love\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Kim SmithKim Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 2:30 am - 11.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: no . floating literal anymore; put 0 before dot ...>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tINTEGER ...ays ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...g-circle' src='assets/a7.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...s='pull-right'>46h ago\n Mike Loreipsum\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg unmatched close parenthesis: /strong>\n started following\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...("\n
    \n 3 days ago at 7... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>3 days ago at 7:58 pm - 10.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ':', expecting '}' ...s='text-muted'>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: no . floating literal anymore; put 0 before dot ...>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tINTEGER ...ays ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    Alpha proj... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...
    Alpha project
    \n
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...s='ibox-content ibox-heading'>\n

    You have m... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...g'>\n

    You have meeting today!

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... class='fa fa-map-marker'>
    \n Meeting is o... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ':', expecting '}' ... Meeting is on 6:00am. Check your schedule to ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...k your schedule to see detail.\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 6:00... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...'text-navy'>2 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... Meeting\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ale.\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n

    \n 5,3,9,6,5,9,7,... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ',', expecting '}' ...ng-chart' data-diameter='40'>5,3,9,6,5,9,7,3,5,2,5,3,9,6,5,9... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...pan>\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...i class='fa fa-file-text'>\n 7:00 am\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...0 am\n
    \n 3 hour ago3 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n Send documents to Mike\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ong>\n

    \n

    Lorem... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...

    Lorem Ipsum is simply dummy text of the ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...

    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n 8:... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...

    \n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 11:0... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...text-navy'>21 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...g>Phone with Jeronimo\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...nce.\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n 09:00 pm... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: Invalid octal digit ...d'>\n 09:00 pm\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...0 pm\n
    \n 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ... 21 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n Go to the doctor dr Smith... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ong>\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n

    \n Find s... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...d some issue and go to doctor.\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 12:5... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...text-navy'>48 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ith Monica and Sandra\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ke).\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...div>\n
    \n
    \n \n \n", -11, false);::Ham... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...tes({}, nil, :href => url_for :controller => 'graphs', :acti... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected ',', expecting '}' ...rl_for :controller => 'graphs', :action => 'flot')}>Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected ')', expecting '}' ...=> 'graphs', :action => 'flot')}>Check the stock price!\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Read below... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Read below comments and tweets
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='fa fa-chevron-up'>
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ass='ibox-content no-padding'>\n
      \n
        \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
          \n
        • \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
        • \n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

          \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

          \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...t-info' href='#'>Stock Man\n Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ck chart. This price is crazy!\n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - pa /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 hours ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Kevin S... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Kevin Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...text-info' href='#'>Kevin Smith\n Lor... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...galley\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 2 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... href='#'>Jonathan Febrick\n The stan... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... standard chunk of Lorem Ipsum\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 1 hour a... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...info' href='#'>Kevin Smith\n Lorem ip... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... unknown printer took a galley\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 minuts... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ../small>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Your daily... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Your daily feed
    \n 10 Messages\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...content'>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...iv class='feed-activity-list'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n "image", :src => image_url 'profile.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ')', expecting '}' ...src => image_url 'profile.jpg')}>\n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>5m ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...y 5:60 pm - 12.06.2014\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...g-circle' src='assets/a2.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Mark Johnson\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...e.\n
    \n Today 2:10 pm -... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ...mall class='text-muted'>Today 2:10 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: no . floating literal anymore; put 0 before dot ...t-muted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER ...ted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...g-circle' src='assets/a3.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Janet Rosowski\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - trg unmatched close parenthesis: /strong>\n add 1 photo on\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 8... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...g-circle' src='assets/a4.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...ight text-navy'>5h ago\n Chris Johnatan Overtunk\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - trg unmatched close parenthesis: /strong>\n started following\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...("\n
    \n Yesterday 1:21 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 1:21 pm - 11.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER ...>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...i class='fa fa-thumbs-up'>\n Li... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ... \n Lo... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...\n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...g-circle' src='assets/a5.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Kim Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...e.\n
    \n Yesterday 5:20 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 5:20 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER ...>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...v>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...cle' src='assets/profile.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...s='pull-right'>23h ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - trg unmatched close parenthesis: /strong>\n love\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Kim SmithKim Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 2:30 am - 11.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: no . floating literal anymore; put 0 before dot ...>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tINTEGER ...ays ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...g-circle' src='assets/a7.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...s='pull-right'>46h ago\n Mike Loreipsum\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg unmatched close parenthesis: /strong>\n started following\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...("\n
    \n 3 days ago at 7... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>3 days ago at 7:58 pm - 10.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ':', expecting '}' ...s='text-muted'>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: no . floating literal anymore; put 0 before dot ...>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tINTEGER ...ays ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    Alpha proj... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...
    Alpha project
    \n
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...s='ibox-content ibox-heading'>\n

    You have m... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...g'>\n

    You have meeting today!

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... class='fa fa-map-marker'>
    \n Meeting is o... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ':', expecting '}' ... Meeting is on 6:00am. Check your schedule to ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...k your schedule to see detail.\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 6:00... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...'text-navy'>2 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... Meeting\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ale.\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n

    \n 5,3,9,6,5,9,7,... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ',', expecting '}' ...ng-chart' data-diameter='40'>5,3,9,6,5,9,7,3,5,2,5,3,9,6,5,9... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...pan>\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...i class='fa fa-file-text'>\n 7:00 am\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...0 am\n
    \n 3 hour ago3 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n Send documents to Mike\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ong>\n

    \n

    Lorem... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...

    Lorem Ipsum is simply dummy text of the ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...

    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n 8:... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...

    \n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 11:0... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...text-navy'>21 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...g>Phone with Jeronimo\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...nce.\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n 09:00 pm... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: Invalid octal digit ...d'>\n 09:00 pm\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...0 pm\n
    \n 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ... 21 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n Go to the doctor dr Smith... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ong>\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n

    \n Find s... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...d some issue and go to doctor.\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 12:5... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...text-navy'>48 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ith Monica and Sandra\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ke).\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...div>\n
    \n
    \n \n \n", -11, false);::Ham... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Started GET "/postino" for 127.0.0.1 at 2015-03-21 12:12:45 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (88.9ms) Completed 500 Internal Server Error in 139ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...tes({}, nil, :href => url_for :controller => 'graphs', :acti... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected ',', expecting '}' ...rl_for :controller => 'graphs', :action => 'flot')}>Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected ')', expecting '}' ...=> 'graphs', :action => 'flot')}>Check the stock price!\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Read below... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Read below comments and tweets
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='fa fa-chevron-up'>
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ass='ibox-content no-padding'>\n
      \n
        \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
          \n
        • \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
        • \n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

          \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

          \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...t-info' href='#'>Stock Man\n Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ck chart. This price is crazy!\n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - pa /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 hours ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined .../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Kevin S... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Kevin Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...text-info' href='#'>Kevin Smith\n Lor... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...galley\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 2 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... href='#'>Jonathan Febrick\n The stan... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... standard chunk of Lorem Ipsum\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 1 hour a... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined .../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...info' href='#'>Kevin Smith\n Lorem ip... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... unknown printer took a galley\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 minuts... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined .../small>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Your daily... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Your daily feed
    \n 10 Messages\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...content'>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...iv class='feed-activity-list'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n "image", :src => image_url 'profile.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ')', expecting '}' ...src => image_url 'profile.jpg')}>\n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>5m ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...y 5:60 pm - 12.06.2014\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...g-circle' src='assets/a2.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Mark Johnson\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...e.\n
    \n Today 2:10 pm -... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ...mall class='text-muted'>Today 2:10 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: no . floating literal anymore; put 0 before dot ...t-muted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER ...ted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...g-circle' src='assets/a3.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Janet Rosowski\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - trg unmatched close parenthesis: /strong>\n add 1 photo on\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 8... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...g-circle' src='assets/a4.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...ight text-navy'>5h ago\n Chris Johnatan Overtunk\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - trg unmatched close parenthesis: /strong>\n started following\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...("\n
    \n Yesterday 1:21 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 1:21 pm - 11.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER ...>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...i class='fa fa-thumbs-up'>\n Li... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ... \n Lo... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...\n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...g-circle' src='assets/a5.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Kim Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...e.\n
    \n Yesterday 5:20 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 5:20 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER ...>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...v>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...cle' src='assets/profile.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...s='pull-right'>23h ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - trg unmatched close parenthesis: /strong>\n love\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Kim SmithKim Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 2:30 am - 11.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: no . floating literal anymore; put 0 before dot ...>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tINTEGER ...ays ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...g-circle' src='assets/a7.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...s='pull-right'>46h ago\n Mike Loreipsum\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg unmatched close parenthesis: /strong>\n started following\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...("\n
    \n 3 days ago at 7... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>3 days ago at 7:58 pm - 10.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ':', expecting '}' ...s='text-muted'>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: no . floating literal anymore; put 0 before dot ...>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tINTEGER ...ays ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    Alpha proj... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...
    Alpha project
    \n
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...s='ibox-content ibox-heading'>\n

    You have m... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...g'>\n

    You have meeting today!

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... class='fa fa-map-marker'>
    \n Meeting is o... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ':', expecting '}' ... Meeting is on 6:00am. Check your schedule to ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...k your schedule to see detail.\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 6:00... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...'text-navy'>2 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... Meeting\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ale.\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n

    \n 5,3,9,6,5,9,7,... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ',', expecting '}' ...ng-chart' data-diameter='40'>5,3,9,6,5,9,7,3,5,2,5,3,9,6,5,9... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...pan>\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...i class='fa fa-file-text'>\n 7:00 am\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...0 am\n
    \n 3 hour ago3 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n Send documents to Mike\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ong>\n

    \n

    Lorem... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...

    Lorem Ipsum is simply dummy text of the ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...

    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n 8:... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...

    \n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 11:0... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...text-navy'>21 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...g>Phone with Jeronimo\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...nce.\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n 09:00 pm... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: Invalid octal digit ...d'>\n 09:00 pm\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...0 pm\n
    \n 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ... 21 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n Go to the doctor dr Smith... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ong>\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n

    \n Find s... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...d some issue and go to doctor.\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 12:5... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...text-navy'>48 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ith Monica and Sandra\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ke).\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...div>\n
    \n
    \n \n \n", -11, false);::Ham... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...tes({}, nil, :href => url_for :controller => 'graphs', :acti... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected ',', expecting '}' ...rl_for :controller => 'graphs', :action => 'flot')}>Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected ')', expecting '}' ...=> 'graphs', :action => 'flot')}>Check the stock price!\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Read below... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Read below comments and tweets
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='fa fa-chevron-up'>
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ass='ibox-content no-padding'>\n
      \n
        \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
          \n
        • \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
        • \n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

          \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

          \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...t-info' href='#'>Stock Man\n Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ck chart. This price is crazy!\n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - pa /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 hours ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Kevin S... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Kevin Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...text-info' href='#'>Kevin Smith\n Lor... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...galley\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 2 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... href='#'>Jonathan Febrick\n The stan... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... standard chunk of Lorem Ipsum\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 1 hour a... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...info' href='#'>Kevin Smith\n Lorem ip... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... unknown printer took a galley\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 minuts... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ../small>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Your daily... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Your daily feed
    \n 10 Messages\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...content'>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...iv class='feed-activity-list'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n "image", :src => image_url 'profile.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ')', expecting '}' ...src => image_url 'profile.jpg')}>\n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>5m ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...y 5:60 pm - 12.06.2014\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...g-circle' src='assets/a2.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Mark Johnson\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...e.\n
    \n Today 2:10 pm -... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ...mall class='text-muted'>Today 2:10 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: no . floating literal anymore; put 0 before dot ...t-muted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER ...ted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...g-circle' src='assets/a3.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Janet Rosowski\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - trg unmatched close parenthesis: /strong>\n add 1 photo on\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 8... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...g-circle' src='assets/a4.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...ight text-navy'>5h ago\n Chris Johnatan Overtunk\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - trg unmatched close parenthesis: /strong>\n started following\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...("\n
    \n Yesterday 1:21 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 1:21 pm - 11.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER ...>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...i class='fa fa-thumbs-up'>\n Li... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ... \n Lo... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...\n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...g-circle' src='assets/a5.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Kim Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...e.\n
    \n Yesterday 5:20 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 5:20 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER ...>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...v>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...cle' src='assets/profile.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...s='pull-right'>23h ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - trg unmatched close parenthesis: /strong>\n love\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Kim SmithKim Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 2:30 am - 11.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: no . floating literal anymore; put 0 before dot ...>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tINTEGER ...ays ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...g-circle' src='assets/a7.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...s='pull-right'>46h ago\n Mike Loreipsum\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg unmatched close parenthesis: /strong>\n started following\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...("\n
    \n 3 days ago at 7... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>3 days ago at 7:58 pm - 10.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ':', expecting '}' ...s='text-muted'>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: no . floating literal anymore; put 0 before dot ...>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tINTEGER ...ays ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    Alpha proj... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...
    Alpha project
    \n
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...s='ibox-content ibox-heading'>\n

    You have m... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...g'>\n

    You have meeting today!

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... class='fa fa-map-marker'>
    \n Meeting is o... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ':', expecting '}' ... Meeting is on 6:00am. Check your schedule to ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...k your schedule to see detail.\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 6:00... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...'text-navy'>2 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... Meeting\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ale.\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n

    \n 5,3,9,6,5,9,7,... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected ',', expecting '}' ...ng-chart' data-diameter='40'>5,3,9,6,5,9,7,3,5,2,5,3,9,6,5,9... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...pan>\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...i class='fa fa-file-text'>\n 7:00 am\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...0 am\n
    \n 3 hour ago3 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n Send documents to Mike\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ong>\n

    \n

    Lorem... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...

    Lorem Ipsum is simply dummy text of the ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...

    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n 8:... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...

    \n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 11:0... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...text-navy'>21 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...g>Phone with Jeronimo\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...nce.\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ... \n 09:00 pm... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: Invalid octal digit ...d'>\n 09:00 pm\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...0 pm\n
    \n 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected tIDENTIFIER, expecting '}' ... 21 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n Go to the doctor dr Smith... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ong>\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n

    \n Find s... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...d some issue and go to doctor.\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected '<' ... \n 12:5... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...text-navy'>48 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ith Monica and Sandra\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...ke).\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $undefined ...div>\n
    \n
    \n \n \n", -11, false);::Ham... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:251: syntax error, unexpected $end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Started GET "/postino" for 127.0.0.1 at 2015-03-21 12:13:52 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (84.4ms) Completed 500 Internal Server Error in 109ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...tes({}, nil, :href => url_for :controller => 'graphs', :acti... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected ',', expecting '}' ...rl_for :controller => 'graphs', :action => 'flot')}>Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected ')', expecting '}' ...=> 'graphs', :action => 'flot')}>Check the stock price!\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Read below... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Read below comments and tweets
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='fa fa-chevron-up'>
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ass='ibox-content no-padding'>\n
      \n
        \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
          \n
        • \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
        • \n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

          \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

          \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...t-info' href='#'>Stock Man\n Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ck chart. This price is crazy!\n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - pa /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 hours ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined .../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Kevin S... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Kevin Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...text-info' href='#'>Kevin Smith\n Lor... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...galley\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 2 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... href='#'>Jonathan Febrick\n The stan... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... standard chunk of Lorem Ipsum\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 1 hour a... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined .../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...info' href='#'>Kevin Smith\n Lorem ip... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... unknown printer took a galley\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 minuts... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined .../small>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Your daily... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Your daily feed
    \n 10 Messages\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...content'>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...iv class='feed-activity-list'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n "image", :src => image_url 'profile.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ')', expecting '}' ...src => image_url 'profile.jpg')}>\n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>5m ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...y 5:60 pm - 12.06.2014\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...g-circle' src='assets/a2.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Mark Johnson\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...e.\n
    \n Today 2:10 pm -... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ...mall class='text-muted'>Today 2:10 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: no . floating literal anymore; put 0 before dot ...t-muted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER ...ted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...g-circle' src='assets/a3.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Janet Rosowski\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - trg unmatched close parenthesis: /strong>\n add 1 photo on\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 8... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...g-circle' src='assets/a4.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...ight text-navy'>5h ago\n Chris Johnatan Overtunk\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - trg unmatched close parenthesis: /strong>\n started following\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...("\n
    \n Yesterday 1:21 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 1:21 pm - 11.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER ...>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...i class='fa fa-thumbs-up'>\n Li... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ... \n Lo... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...\n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...g-circle' src='assets/a5.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Kim Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...e.\n
    \n Yesterday 5:20 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 5:20 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER ...>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...v>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...cle' src='assets/profile.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...s='pull-right'>23h ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - trg unmatched close parenthesis: /strong>\n love\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Kim SmithKim Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 2:30 am - 11.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: no . floating literal anymore; put 0 before dot ...>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tINTEGER ...ays ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...g-circle' src='assets/a7.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...s='pull-right'>46h ago\n Mike Loreipsum\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... Monica Smith\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...g>\n
    \n 3 days ago at 7... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>3 days ago at 7:58 pm - 10.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ':', expecting '}' ...s='text-muted'>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: no . floating literal anymore; put 0 before dot ...>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tINTEGER ...ays ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    Alpha proj... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...
    Alpha project
    \n
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...s='ibox-content ibox-heading'>\n

    You have m... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...g'>\n

    You have meeting today!

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... class='fa fa-map-marker'>
    \n Meeting is o... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ':', expecting '}' ... Meeting is on 6:00am. Check your schedule to ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...k your schedule to see detail.\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected '<' ... \n 6:00... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...'text-navy'>2 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... Meeting\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...ale.\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n

    \n 5,3,9,6,5,9,7,... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ',', expecting '}' ...ng-chart' data-diameter='40'>5,3,9,6,5,9,7,3,5,2,5,3,9,6,5,9... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...pan>\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...i class='fa fa-file-text'>\n 7:00 am\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...0 am\n
    \n 3 hour ago3 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n Send documents to Mike\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...ong>\n

    \n

    Lorem... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...

    Lorem Ipsum is simply dummy text of the ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ...

    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n 8:... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...

    \n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected '<' ... \n 11:0... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...text-navy'>21 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...g>Phone with Jeronimo\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...nce.\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... \n 09:00 pm... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: Invalid octal digit ...d'>\n 09:00 pm\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...0 pm\n
    \n 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ... 21 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n Go to the doctor dr Smith... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...ong>\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n

    \n Find s... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...d some issue and go to doctor.\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected '<' ... \n 12:5... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...text-navy'>48 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...ith Monica and Sandra\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...ke).\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...div>\n
    \n
    \n \n \n", -10, false);::Ham... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...tes({}, nil, :href => url_for :controller => 'graphs', :acti... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected ',', expecting '}' ...rl_for :controller => 'graphs', :action => 'flot')}>Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected ')', expecting '}' ...=> 'graphs', :action => 'flot')}>Check the stock price!\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Read below... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Read below comments and tweets
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='fa fa-chevron-up'>
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ass='ibox-content no-padding'>\n
      \n
        \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
          \n
        • \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
        • \n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

          \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

          \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
        • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...t-info' href='#'>Stock Man\n Check th... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ck chart. This price is crazy!\n

          \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - pa /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 hours ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Kevin S... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Kevin Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...text-info' href='#'>Kevin Smith\n Lor... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...galley\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 2 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... href='#'>Jonathan Febrick\n The stan... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... standard chunk of Lorem Ipsum\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 1 hour a... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ../small>\n \n
  • \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
  • \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...-item'>\n

    \n \n Alan Ma... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting '}' ... Alan Marry\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...'text-info' href='#'>Alan Marry\n I b... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...ustry.\n

    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...mall class='block text-muted'>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected '<' ... \n 1 mi... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...go\n \n
  • \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...info' href='#'>Kevin Smith\n Lorem ip... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined, expecting '}' ... unknown printer took a galley\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n 2 minuts... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ../small>\n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    Your daily... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...>\n
    Your daily feed
    \n 10 Messages\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...content'>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...iv class='feed-activity-list'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:94: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:166: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n "image", :src => image_url 'profile.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ')', expecting '}' ...src => image_url 'profile.jpg')}>\n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>5m ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...y 5:60 pm - 12.06.2014\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...g-circle' src='assets/a2.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Mark Johnson\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...e.\n
    \n Today 2:10 pm -... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ...mall class='text-muted'>Today 2:10 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: no . floating literal anymore; put 0 before dot ...t-muted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected tINTEGER ...ted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:175: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...g-circle' src='assets/a3.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:186: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Janet Rosowski\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - trg unmatched close parenthesis: /strong>\n add 1 photo on\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 8... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 8:30am\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...g-circle' src='assets/a4.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:197: syntax error, unexpected $undefined ...ight text-navy'>5h ago\n Chris Johnatan Overtunk\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - trg unmatched close parenthesis: /strong>\n started following\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Monica SmithMonica Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...("\n
    \n Yesterday 1:21 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 1:21 pm - 11.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tINTEGER ...>Yesterday 1:21 pm - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...i class='fa fa-thumbs-up'>\n Li... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ... \n Lo... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...\n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...
    \n url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...g-circle' src='assets/a5.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Kim Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...e.\n
    \n Yesterday 5:20 ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ... class='text-muted'>Yesterday 5:20 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: no . floating literal anymore; put 0 before dot ...ted'>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected tINTEGER ...>Yesterday 5:20 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ... ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:215: syntax error, unexpected $undefined ...v>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...cle' src='assets/profile.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:233: syntax error, unexpected $undefined ...s='pull-right'>23h ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - trg unmatched close parenthesis: /strong>\n love\n ", 1, false); haml_temp = succeed "." do _hamlout.push_text(" Kim SmithKim Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 2:30 am - 11.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: no . floating literal anymore; put 0 before dot ...>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tINTEGER ...ays ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...left"}, nil, :href => url_for :controller => 'appviews', :ac... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ',', expecting '}' ..._for :controller => 'appviews', :action => 'profile')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ')', expecting '}' ...ppviews', :action => 'profile')}>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...g-circle' src='assets/a7.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...s='pull-right'>46h ago\n Mike Loreipsum\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... Monica Smith\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...g>\n
    \n 3 days ago at 7... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>3 days ago at 7:58 pm - 10.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ':', expecting '}' ...s='text-muted'>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: no . floating literal anymore; put 0 before dot ...>3 days ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tINTEGER ...ays ago at 7:58 pm - 10.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... class='ibox float-e-margins'>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    Alpha proj... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...
    Alpha project
    \n
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...a href='#'>Config option 1\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...a href='#'>Config option 2\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - l /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected '<' ... \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...es'>\n \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...s='ibox-content ibox-heading'>\n

    You have m... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...g'>\n

    You have meeting today!

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... class='fa fa-map-marker'>
    \n Meeting is o... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ':', expecting '}' ... Meeting is on 6:00am. Check your schedule to ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...k your schedule to see detail.\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... \n
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected '<' ... \n 6:00... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...'text-navy'>2 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... Meeting\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...ale.\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n

    \n 5,3,9,6,5,9,7,... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected ',', expecting '}' ...ng-chart' data-diameter='40'>5,3,9,6,5,9,7,3,5,2,5,3,9,6,5,9... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...pan>\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...i class='fa fa-file-text'>\n 7:00 am\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...0 am\n
    \n 3 hour ago3 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n Send documents to Mike\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...ong>\n

    \n

    Lorem... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '(' ...

    Lorem Ipsum is simply dummy text of the ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ...

    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n 8:... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...

    \n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected '<' ... \n 11:0... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...text-navy'>21 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...g>Phone with Jeronimo\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...nce.\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ... \n 09:00 pm... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: Invalid octal digit ...d'>\n 09:00 pm\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...0 pm\n
    \n 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected tIDENTIFIER, expecting '}' ... 21 hour ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...all>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n Go to the doctor dr Smith... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...ong>\n

    \n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n

    \n Find s... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...d some issue and go to doctor.\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...

    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected '<' ... \n 12:5... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...text-navy'>48 hour ago\n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...ith Monica and Sandra\n

    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp option - p /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...ke).\n

    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...
    \n
    \n
    \n \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $undefined ...div>\n
    \n
    \n \n \n", -10, false);::Ham... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:244: syntax error, unexpected $end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Started GET "/postino" for 127.0.0.1 at 2015-03-21 12:15:18 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (152.3ms) Completed 500 Internal Server Error in 158ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...=> "image", :src => image_url 'profile.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ')', expecting '}' ...src => image_url 'profile.jpg')}>\n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>5m ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...y 5:60 pm - 12.06.2014\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... \n image\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...g-circle' src='assets/a2.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Mark Johnson\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...e.\n
    \n Today 2:10 pm -... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ...mall class='text-muted'>Today 2:10 pm - 12.06.2014\n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: no . floating literal anymore; put 0 before dot ...t-muted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER ...ted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER, expecting '}' ...ass='img-circle' src='assets/a3.jpg'>\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ... 2 days ago at 8:30am<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2 days ago at 8:30am... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ... image... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... alt='image' class='img-circle' src='assets/a4.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ... class='img-circle' src='assets/a4.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting '}' ...img-circle' src='assets/a4.jpg'>\n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 5h ago5h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...ll class='pull-right text-navy'>5h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... Yesterday 1:21 pm - 1... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... Yesterday 1:21 pm - 11.06.20... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... image... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... alt='image' class='img-circle' src='assets/a5.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... class='img-circle' src='assets/a5.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting '}' ...img-circle' src='assets/a5.jpg'>\n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... Yesterday 5:20 pm - 1... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... Yesterday 5:20 pm - 12.06.20... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n L... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...m Ipsum has been the industry's standard dummy text ever sin... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...dummy text ever since the 1500s.\n Ov... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... Over the years, sometimes by accident, sometimes on purpo... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...times by accident, sometimes on purpose (injected humour and... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...injected humour and the like).\n
    ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...i class='fa fa-thumbs-up'>\n Li... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...\n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ... \n image\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...cle' src='assets/profile.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...s='pull-right'>23h ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - trg unmatched close parenthesis: /strong>\n love\n ", 0, false); haml_temp = succeed "." do _hamlout.push_text(" Kim SmithKim Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 2:30 am - 11.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: no . floating literal anymore; put 0 before dot ...>2 days ago at 2:30 am - 11.06.2014
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tINTEGER ...ays ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tINTEGER, expecting '}' ...ass='img-circle' src='assets/a7.jpg'>\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 46h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 46h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ... 3 days ago at 7:58 pm... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 3 days ago at 7:58 pm - 10.0... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...iv class='ibox float-e-margins'>\n
    \n
    \n
    A... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n
    Alpha pr... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...n
    \n \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:241: syntax error, unexpected keyword_ensure, expecting '}' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:243: syntax error, unexpected keyword_end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...=> "image", :src => image_url 'profile.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ')', expecting '}' ...src => image_url 'profile.jpg')}>\n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>5m ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...y 5:60 pm - 12.06.2014\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... \n image\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...g-circle' src='assets/a2.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Mark Johnson\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...e.\n
    \n Today 2:10 pm -... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ...mall class='text-muted'>Today 2:10 pm - 12.06.2014
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: no . floating literal anymore; put 0 before dot ...t-muted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER ...ted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER, expecting '}' ...ass='img-circle' src='assets/a3.jpg'>\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ... 2 days ago at 8:30am<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2 days ago at 8:30am... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ... image... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... alt='image' class='img-circle' src='assets/a4.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ... class='img-circle' src='assets/a4.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting '}' ...img-circle' src='assets/a4.jpg'>\n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 5h ago5h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:193: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...ll class='pull-right text-navy'>5h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... Yesterday 1:21 pm - 1... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... Yesterday 1:21 pm - 11.06.20... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... image... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... alt='image' class='img-circle' src='assets/a5.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... class='img-circle' src='assets/a5.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting '}' ...img-circle' src='assets/a5.jpg'>\n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... Yesterday 5:20 pm - 1... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... Yesterday 5:20 pm - 12.06.20... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n L... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...m Ipsum has been the industry's standard dummy text ever sin... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ...dummy text ever since the 1500s.\n Ov... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... Over the years, sometimes by accident, sometimes on purpo... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...times by accident, sometimes on purpose (injected humour and... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...injected humour and the like).\n
    ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...i class='fa fa-thumbs-up'>\n Li... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...\n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ... \n image\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...cle' src='assets/profile.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:204: syntax error, unexpected $undefined ...s='pull-right'>23h ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - trg unmatched close parenthesis: /strong>\n love\n ", 0, false); haml_temp = succeed "." do _hamlout.push_text(" Kim SmithKim Smith\n", 0, false);end;_hamlout.bu... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined, expecting '}' ...aml_temp);_hamlout.push_text("\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...("\n
    \n 2 days ago at 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 2:30 am - 11.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 2:30 am - 11.06.2014
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: no . floating literal anymore; put 0 before dot ...>2 days ago at 2:30 am - 11.06.2014
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tINTEGER ...ays ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tINTEGER, expecting '}' ...ass='img-circle' src='assets/a7.jpg'>\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 46h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 46h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ... 3 days ago at 7:58 pm... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 3 days ago at 7:58 pm - 10.0... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...iv class='ibox float-e-margins'>\n
    \n
    \n
    A... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n
    Alpha pr... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ...n
    \n \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:240: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:241: syntax error, unexpected keyword_ensure, expecting '}' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:243: syntax error, unexpected keyword_end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Started GET "/postino" for 127.0.0.1 at 2015-03-21 12:16:07 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (91.5ms) Completed 500 Internal Server Error in 98ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...=> "image", :src => image_url 'profile.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ')', expecting '}' ...src => image_url 'profile.jpg')}>\n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>5m ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...y 5:60 pm - 12.06.2014\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... \n image\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...g-circle' src='assets/a2.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Mark Johnson\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...e.\n
    \n Today 2:10 pm -... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ...mall class='text-muted'>Today 2:10 pm - 12.06.2014
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: no . floating literal anymore; put 0 before dot ...t-muted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER ...ted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER, expecting '}' ...ass='img-circle' src='assets/a3.jpg'>\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... 2 days ago at 8:30am<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2 days ago at 8:30am... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... image... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... alt='image' class='img-circle' src='assets/a4.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... class='img-circle' src='assets/a4.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting '}' ...img-circle' src='assets/a4.jpg'>\n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 5h ago5h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...ll class='pull-right text-navy'>5h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... Yesterday 1:21 pm - 1... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... Yesterday 1:21 pm - 11.06.20... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... image... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... alt='image' class='img-circle' src='assets/a5.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... class='img-circle' src='assets/a5.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting '}' ...img-circle' src='assets/a5.jpg'>\n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... Yesterday 5:20 pm - 1... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... Yesterday 5:20 pm - 12.06.20... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n L... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...m Ipsum has been the industry's standard dummy text ever sin... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...dummy text ever since the 1500s.\n Ov... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... Over the years, sometimes by accident, sometimes on purpo... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...times by accident, sometimes on purpose (injected humour and... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...injected humour and the like).\n
    ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...i class='fa fa-thumbs-up'>\n Li... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...\n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... \n image\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...cle' src='assets/profile.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...s='pull-right'>23h ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... Kim Smith\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...g>\n
    \n 2 days ago at 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 2:30 am - 11.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 2:30 am - 11.06.2014
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: no . floating literal anymore; put 0 before dot ...>2 days ago at 2:30 am - 11.06.2014
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER ...ays ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER, expecting '}' ...ass='img-circle' src='assets/a7.jpg'>\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 46h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 46h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... 3 days ago at 7:58 pm... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 3 days ago at 7:58 pm - 10.0... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...iv class='ibox float-e-margins'>\n
    \n
    \n
    A... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n
    Alpha pr... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...n
    \n \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:168: syntax error, unexpected keyword_ensure, expecting '}' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:170: syntax error, unexpected keyword_end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...=> "image", :src => image_url 'profile.jpg')}>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ')', expecting '}' ...src => image_url 'profile.jpg')}>\n \... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>5m ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...y 5:60 pm - 12.06.2014\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... \n image\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...g-circle' src='assets/a2.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...ss='pull-right'>2h ago\n Mark Johnson\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... Monica Smith\n site.\... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...>\n site.\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...e.\n
    \n Today 2:10 pm -... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER, expecting keyword_do or '{' or '(' ...mall class='text-muted'>Today 2:10 pm - 12.06.2014
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: no . floating literal anymore; put 0 before dot ...t-muted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER ...ted'>Today 2:10 pm - 12.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER, expecting '}' ...ass='img-circle' src='assets/a3.jpg'>\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... 2 days ago at 8:30am<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2 days ago at 8:30am... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... image... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... alt='image' class='img-circle' src='assets/a4.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... class='img-circle' src='assets/a4.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting '}' ...img-circle' src='assets/a4.jpg'>\n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 5h ago5h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...ll class='pull-right text-navy'>5h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... Yesterday 1:21 pm - 1... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... Yesterday 1:21 pm - 11.06.20... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... image... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... alt='image' class='img-circle' src='assets/a5.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... class='img-circle' src='assets/a5.jpg'>\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting '}' ...img-circle' src='assets/a5.jpg'>\n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 2h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... Yesterday 5:20 pm - 1... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... Yesterday 5:20 pm - 12.06.20... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n L... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...m Ipsum has been the industry's standard dummy text ever sin... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...dummy text ever since the 1500s.\n Ov... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ... Over the years, sometimes by accident, sometimes on purpo... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...times by accident, sometimes on purpose (injected humour and... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...injected humour and the like).\n
    ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...i class='fa fa-thumbs-up'>\n Li... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...\n
    \n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...div>\n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...
    \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... \n image\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...cle' src='assets/profile.jpg'>\n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - all /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...s='pull-right'>23h ago\n Monica Smith\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - trg /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ... Kim Smith\n
    \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...g>\n
    \n 2 days ago at 2... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...small class='text-muted'>2 days ago at 2:30 am - 11.06.2014<... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected ':', expecting '}' ...s='text-muted'>2 days ago at 2:30 am - 11.06.2014
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: no . floating literal anymore; put 0 before dot ...>2 days ago at 2:30 am - 11.06.2014
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER ...ays ago at 2:30 am - 11.06.2014\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp options - dv /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected $undefined ...l>\n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: unknown regexp option - a /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tINTEGER, expecting '}' ...ass='img-circle' src='assets/a7.jpg'>\n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n 46h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 46h ago\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... 3 days ago at 7:58 pm... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... 3 days ago at 7:58 pm - 10.0... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...
    \n
    \n
    \n
    \n
    \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...iv class='ibox float-e-margins'>\n
    \n
    \n
    A... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ...
    \n
    Alpha pr... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ...n
    \n \n \n \n \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '(' ... \n \n... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:167: syntax error, unexpected tIDENTIFIER, expecting '}' ... \n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:168: syntax error, unexpected keyword_ensure, expecting '}' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml:170: syntax error, unexpected keyword_end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (40.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (31.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (98.8ms) Started GET "/postino" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (193.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (75.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 414ms (Views: 413.4ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/postino/manage/campain_wizard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/postino/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/postino/manage/campaigns-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/postino/manage/lists-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/postino/subscribers-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/postino/manage/templates-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/postino/dashboard-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/postino/tracks-46c9a194bd0668e67d57241f94473dc8.js?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/assets/postino/application-74897cf7aa10e46d9455aca92f3def85.js?body=1" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (101.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (245.1ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:16:46 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:16:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (115.9ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:16:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.4ms) Started GET "/assets/a2.jpg" for 127.0.0.1 at 2015-03-21 12:16:47 -0300 ActionController::RoutingError (No route matches [GET] "/assets/a2.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.1ms) Started GET "/assets/a3.jpg" for 127.0.0.1 at 2015-03-21 12:16:47 -0300 ActionController::RoutingError (No route matches [GET] "/assets/a3.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (90.5ms) Started GET "/assets/a4.jpg" for 127.0.0.1 at 2015-03-21 12:16:47 -0300 ActionController::RoutingError (No route matches [GET] "/assets/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.0ms) Started GET "/assets/a5.jpg" for 127.0.0.1 at 2015-03-21 12:16:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/a5.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.9ms) Started GET "/assets/profile.jpg" for 127.0.0.1 at 2015-03-21 12:16:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.6ms) Started GET "/assets/a7.jpg" for 127.0.0.1 at 2015-03-21 12:16:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (164.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:16:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.8ms) Started GET "/postino" for 127.0.0.1 at 2015-03-21 12:18:46 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (128.5ms) Completed 500 Internal Server Error in 364ms ActionView::Template::Error (couldn't find file 'inspinia.js' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/javascripts/postino/application.js:20)): 39: / Main css styles 40: = stylesheet_link_tag 'postino/application', media: 'all', 'data-turbolinks-track' => true 41: / Main javascript files 42: = javascript_include_tag 'postino/application', 'data-turbolinks-track' => true 43: = csrf_meta_tags 44: %body 45: / Skin configuration box sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:137:in `block in javascript_include_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `javascript_include_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:42:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365064051320' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (28.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (65.1ms) Started GET "/postino" for 127.0.0.1 at 2015-03-21 12:19:35 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (33.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (144.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 1129ms (Views: 1128.1ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:19:36 -0300 Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:19:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (213.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:19:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (178.4ms) Started GET "/assets/a2.jpg" for 127.0.0.1 at 2015-03-21 12:19:37 -0300 ActionController::RoutingError (No route matches [GET] "/assets/a2.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.8ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:19:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.4ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:19:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (129.9ms) Started GET "/assets/a3.jpg" for 127.0.0.1 at 2015-03-21 12:19:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/a3.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.9ms) Started GET "/assets/a4.jpg" for 127.0.0.1 at 2015-03-21 12:19:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.5ms) Started GET "/assets/a5.jpg" for 127.0.0.1 at 2015-03-21 12:19:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/a5.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.6ms) Started GET "/assets/profile.jpg" for 127.0.0.1 at 2015-03-21 12:19:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (145.8ms) Started GET "/assets/a7.jpg" for 127.0.0.1 at 2015-03-21 12:19:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:19:39 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (141.6ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-21 12:26:53 -0300 ActionController::RoutingError (No route matches [GET] "/postino/campaigns"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.6ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:26:59 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (39.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (81.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 1835ms (Views: 440.3ms | ActiveRecord: 0.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:27:01 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (134.3ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:27:02 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (102.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (195.0ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:27:02 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.4ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:27:02 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:27:02 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (87.7ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:27:51 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (13.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (76.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 413ms (Views: 411.9ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:27:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (117.5ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:27:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (198.1ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:27:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (148.0ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:27:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (131.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:27:52 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (135.9ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:28:25 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (1432.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (42.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (219.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 1969ms (Views: 1968.3ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:28:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (165.5ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:28:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (138.5ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:28:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (129.9ms) Started GET "/images/a3.jpg" for 127.0.0.1 at 2015-03-21 12:28:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/a3.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (135.9ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:28:28 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.8ms) Started GET "/images/a1.jpg" for 127.0.0.1 at 2015-03-21 12:28:28 -0300 ActionController::RoutingError (No route matches [GET] "/images/a1.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (136.4ms) Started GET "/images/a2.jpg" for 127.0.0.1 at 2015-03-21 12:28:28 -0300 ActionController::RoutingError (No route matches [GET] "/images/a2.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (126.9ms) Started GET "/images/a5.jpg" for 127.0.0.1 at 2015-03-21 12:28:28 -0300 ActionController::RoutingError (No route matches [GET] "/images/a5.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (112.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (245.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:28:29 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (122.8ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:28:51 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (37.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (24.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (69.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 394ms (Views: 393.4ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:28:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.8ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:28:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (120.1ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:28:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (116.1ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:28:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (209.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:28:52 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.5ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:29:04 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (51.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (94.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 565ms (Views: 564.2ms | ActiveRecord: 0.4ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:29:05 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (142.1ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:29:05 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (135.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:29:05 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (131.9ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:29:05 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (235.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:29:06 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (138.5ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:29:28 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (40.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (95.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 495ms (Views: 494.1ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:29:29 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (141.3ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:29:29 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (140.1ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:29:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.2ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:29:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (117.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (242.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:29:30 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.6ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:29:41 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (39.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (27.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (70.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 441ms (Views: 440.1ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:29:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (114.7ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:29:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (153.1ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:29:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (130.0ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:29:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (240.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:29:43 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (136.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:29:43 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (135.2ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:31:25 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (40.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (42.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (103.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 559ms (Views: 558.3ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:31:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (153.9ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:31:26 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (120.7ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:31:26 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (142.5ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:31:26 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:31:26 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.4ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 12:31:30 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (639.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (69.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 1019ms (Views: 1018.3ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:31:31 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (94.5ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:31:31 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.4ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:31:31 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (81.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (161.3ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:31:31 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (85.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:31:31 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.1ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:32:23 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (36.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (89.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 461ms (Views: 459.7ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:32:23 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (123.9ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:32:24 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (79.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (168.7ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:32:24 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.5ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:32:24 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:32:24 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.8ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:33:12 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (18.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (24.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (68.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 379ms (Views: 378.0ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:33:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.5ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:33:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (162.3ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:33:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.4ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:33:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:33:13 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.9ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:33:31 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (47.8ms) Completed 500 Internal Server Error in 55ms ActionView::Template::Error (undefined method `manage_campaign_path' for #<#:0x007ffe4b6218e8>): 37: %span.label.label-primary 38: = campaign.state 39: %td.project-title 40: %a{:href => manage_campaign_path(campaign)} 41: = campaign.name 42: %br/ 43: %small= campaign.created_at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml:40:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_index_haml__3678571599676837843_70365081581260' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml:34:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_index_haml__3678571599676837843_70365081581260' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (19.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.8ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 12:33:42 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (34.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (91.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 483ms (Views: 481.7ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (144.0ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (140.9ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:33:43 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (138.4ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:33:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (111.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (248.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:33:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (131.9ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 12:33:45 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/application (2.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (95.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 555ms (Views: 512.4ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (138.1ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.1ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:33:46 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (230.3ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:33:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:33:47 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (123.7ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (1.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (92.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 452ms (Views: 449.6ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (90.4ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:33:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (85.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (164.7ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:33:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.6ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:33:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:33:52 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.8ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 12:34:35 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (427.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (25.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (157.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 822ms (Views: 820.1ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (122.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:34:36 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (134.9ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:34:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.8ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:34:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.6ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 12:34:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (135.3ms) Started GET "/images/a3.jpg" for 127.0.0.1 at 2015-03-21 12:34:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/a3.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (137.4ms) Started GET "/images/a1.jpg" for 127.0.0.1 at 2015-03-21 12:34:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/a1.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.8ms) Started GET "/images/a2.jpg" for 127.0.0.1 at 2015-03-21 12:34:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/a2.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.8ms) Started GET "/images/a5.jpg" for 127.0.0.1 at 2015-03-21 12:34:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/a5.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (129.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:34:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (120.9ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 12:34:51 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (482.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (177.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 923ms (Views: 921.7ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (13.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (167.0ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:34:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (135.9ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:34:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.6ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:34:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (242.7ms) Started GET "/images/a3.jpg" for 127.0.0.1 at 2015-03-21 12:34:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/a3.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (134.7ms) Started GET "/images/a1.jpg" for 127.0.0.1 at 2015-03-21 12:34:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/a1.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (141.1ms) Started GET "/images/a2.jpg" for 127.0.0.1 at 2015-03-21 12:34:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/a2.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (131.2ms) Started GET "/images/a5.jpg" for 127.0.0.1 at 2015-03-21 12:34:54 -0300 ActionController::RoutingError (No route matches [GET] "/images/a5.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (136.3ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 12:34:54 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:34:54 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.3ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 12:36:52 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (73.5ms) Completed 500 Internal Server Error in 82ms ActionView::Template::Error (undefined method `status' for #): 23: %dl.dl-horizontal 24: %dt Status: 25: %dd 26: %span.label.label-primary= @campaign.status 27: .row 28: .col-lg-5 29: %dl.dl-horizontal activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml:26:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_show_haml___693891988250466335_70365074891220' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (28.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (68.7ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 12:37:09 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (207.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (71.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.2ms) Completed 200 OK in 603ms (Views: 601.6ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (115.3ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.1ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:37:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.5ms) Started GET "/images/a3.jpg" for 127.0.0.1 at 2015-03-21 12:37:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/a3.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (17.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (190.6ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:37:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.1ms) Started GET "/images/a2.jpg" for 127.0.0.1 at 2015-03-21 12:37:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/a2.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.2ms) Started GET "/images/a5.jpg" for 127.0.0.1 at 2015-03-21 12:37:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/a5.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.9ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 12:37:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (130.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:37:12 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (126.9ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 12:37:36 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (354.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (247.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 880ms (Views: 877.8ms | ActiveRecord: 0.2ms) Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (136.9ms) Started GET "/images/a3.jpg" for 127.0.0.1 at 2015-03-21 12:37:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/a3.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (136.9ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:37:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:37:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (131.7ms) Started GET "/images/a2.jpg" for 127.0.0.1 at 2015-03-21 12:37:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/a2.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.5ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:37:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (118.3ms) Started GET "/images/a5.jpg" for 127.0.0.1 at 2015-03-21 12:37:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/a5.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.3ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 12:37:39 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (108.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (219.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:37:39 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.7ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (74.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (126.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (80.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 530ms (Views: 528.4ms | ActiveRecord: 0.3ms) Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:38:41 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (154.3ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:38:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.3ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:38:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (233.7ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:38:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (134.9ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 12:38:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (129.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:38:43 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (140.5ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 12:40:31 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (90.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (42.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (230.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 872ms (Views: 809.1ms | ActiveRecord: 2.3ms) Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:32 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:33 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:33 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:40:33 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:40:33 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.5ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:40:33 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.9ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:40:33 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (147.1ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:40:33 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (134.0ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 12:40:33 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (145.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:40:34 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (138.0ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:45:08 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (21.1ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (2.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (1.8ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (203.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (108.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 1373ms (Views: 719.8ms | ActiveRecord: 26.7ms) Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:45:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.9ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:45:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (126.8ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:45:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.4ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:45:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (122.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:45:10 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.2ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:45:12 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (25.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (72.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 417ms (Views: 415.0ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.1ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (87.5ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:45:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:45:14 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (68.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 313ms (Views: 312.0ms | ActiveRecord: 0.4ms) Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (113.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (206.9ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (126.6ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:45:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.4ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:45:26 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:45:26 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.4ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:45:34 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."list_id" = ? [["list_id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (45.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (65.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 407ms (Views: 402.8ms | ActiveRecord: 1.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:45:35 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (86.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (175.1ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:45:35 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.3ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:45:35 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.4ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:45:35 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:45:35 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.5ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:48:10 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (158.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (92.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 563ms (Views: 559.7ms | ActiveRecord: 1.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:48:12 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (129.1ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:48:12 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (207.9ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:48:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.4ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:48:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (135.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:48:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (145.4ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:48:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (103.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (209.1ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:48:14 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (134.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:48:14 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (131.2ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:48:29 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (64.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (26.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (87.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 495ms (Views: 491.7ms | ActiveRecord: 1.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:48:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (119.2ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:48:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (173.0ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:48:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.7ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:48:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (149.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:48:31 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.4ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:49:07 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (82.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (103.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 601ms (Views: 596.4ms | ActiveRecord: 1.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:49:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (193.2ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:49:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.2ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:49:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (136.0ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:49:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (140.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:49:09 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.7ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:52:25 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (53.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (58.5ms) Completed 500 Internal Server Error in 405ms ActionView::Template::Error (undefined local variable or method `manage_lists_path' for #<#:0x007ffe4b233fb0>): 42: %span.nav-label Lists 43: %span.fa.arrow 44: %ul{:class => "nav nav-second-level active"} 45: %li= link_to "View all lists", manage_lists_path 46: %li= link_to "create new list", "" 47: %li= link_to "Dashboard v.3", "" 48: %li= link_to "Dashboard v.4", "" /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:45:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino__navigation_html_haml___1786990904485174668_70365081582520' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:50:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365064051320' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (104.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (151.2ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:53:46 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (52.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (66.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 354ms (Views: 351.0ms | ActiveRecord: 1.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:53:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.8ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:53:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.3ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:53:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.1ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:53:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:53:47 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (203.7ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:55:18 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (54.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (75.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 377ms (Views: 372.7ms | ActiveRecord: 1.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:55:18 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.6ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:55:18 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (93.8ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:55:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.0ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:55:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (144.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:55:19 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (108.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (218.7ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:56:09 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (77.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (47.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (91.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 469ms (Views: 465.0ms | ActiveRecord: 1.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:56:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (12.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (142.6ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:56:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.6ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:56:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.4ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:56:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (114.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:56:10 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (224.4ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:56:24 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (54.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (75.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 384ms (Views: 379.5ms | ActiveRecord: 1.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:56:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.2ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:56:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.2ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:56:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.6ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:56:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:56:26 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (137.3ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:58:05 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (137.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (41.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (71.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 463ms (Views: 458.7ms | ActiveRecord: 1.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:58:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.2ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:58:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.1ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:58:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (136.6ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:58:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:58:06 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.1ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:59:07 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (68.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (46.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (99.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 510ms (Views: 506.1ms | ActiveRecord: 1.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:59:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (256.1ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:59:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.4ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:59:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.4ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:59:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (123.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:59:08 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (118.3ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 12:59:23 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (124.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (71.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 431ms (Views: 426.6ms | ActiveRecord: 1.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 12:59:23 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (108.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (224.0ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 12:59:23 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.4ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 12:59:24 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.8ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 12:59:24 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 12:59:24 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (116.2ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 13:01:23 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (97.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (26.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (83.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 660ms (Views: 656.6ms | ActiveRecord: 1.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:01:24 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (110.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (303.4ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:01:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (129.9ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:01:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.1ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:01:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:01:25 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.3ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 13:03:06 -0300 ActionController::RoutingError (No route matches [GET] "/postino/manage/lists/1"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.0ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 13:04:58 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (11.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (1.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (90.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (73.3ms) Completed 500 Internal Server Error in 586ms ActionView::Template::Error (undefined local variable or method `new_campaign_path' for #<#:0x007ffe4b68eee8>): 32: %span.fa.arrow 33: %ul{:class => "nav nav-second-level"} 34: %li= link_to "View all campaigns", manage_campaigns_path 35: %li= link_to "New campaigns", new_campaign_path 36: 37: %li 38: %a{:href => ""} /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:35:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino__navigation_html_haml___1786990904485174668_70365079101740' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:50:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365064051320' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (24.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.4ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 13:05:17 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (-1062.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (147.8ms) Completed 500 Internal Server Error in -699ms ActionView::Template::Error (undefined local variable or method `manage_new_campaign_path' for #<#:0x007ffe4b3a1f78>): 32: %span.fa.arrow 33: %ul{:class => "nav nav-second-level"} 34: %li= link_to "View all campaigns", manage_campaigns_path 35: %li= link_to "New campaigns", manage_new_campaign_path 36: 37: %li 38: %a{:href => ""} /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml:35:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino__navigation_html_haml___1786990904485174668_70365093856280' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:50:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365064051320' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (22.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (55.1ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 13:05:57 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (57.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (52.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (90.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 489ms (Views: 484.7ms | ActiveRecord: 1.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:05:58 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (153.8ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:05:58 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (143.5ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:05:58 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (145.2ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:05:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:05:59 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (247.0ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 13:06:06 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (49.1ms) Completed 500 Internal Server Error in 107ms ActionView::Template::Error (undefined local variable or method `new_campaign_path' for #<#:0x007ffe4c8f6158>): 15: .ibox-title 16: %h5 All Campaigns 17: .ibox-tools 18: %a.btn.btn-primary.btn-xs{:href => new_campaign_path } 19: Create new Campaigns 20: .ibox-content 21: .row.m-b-sm.m-t-sm /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml:18:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_index_haml__3678571599676837843_70365075807860' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (85.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (122.3ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 13:07:24 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (54.7ms) Completed 500 Internal Server Error in 64ms ActionView::Template::Error (undefined method `manage_preview_campaign_path' for #<#:0x007ffe4a4706f8>): 52: %i.fa.fa-folder 53: setup 54: 55: = link_to manage_preview_campaign_path(campaign), class: "btn btn-white btn-sm" do 56: %i.fa.fa-folder 57: Preview 58: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml:55:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_index_haml__3678571599676837843_70365073817960' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml:34:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_index_haml__3678571599676837843_70365073817960' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (56.9ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 13:08:11 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (38.7ms) Completed 500 Internal Server Error in 125ms ActionView::Template::Error (undefined method `deliver_manage__campaign_path' for #<#:0x007ffe4cd7aa30>): 60: %i.fa.fa-folder 61: Test 62: 63: = link_to deliver_manage__campaign_path(campaign), class: "btn btn-white btn-sm" do 64: %i.fa.fa-folder 65: Send 66: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml:63:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_index_haml__3678571599676837843_70365061180840' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml:34:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_index_haml__3678571599676837843_70365061180840' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (40.6ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 13:08:18 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (36.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (98.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 479ms (Views: 477.6ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:08:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (251.9ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:08:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.6ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:08:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (137.3ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:08:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:08:20 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (138.1ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 13:10:13 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (103.5ms) Completed 500 Internal Server Error in 127ms ActionView::Template::Error (undefined local variable or method `new_template_path' for #<#:0x007ffe4cd06ce8>): 1: = link_to "new template" , new_template_path , class: "pull-right btn btn-default" 2: %h1.page-header Templates 3: .row.placeholders 4: - @templates.each do |template| /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_templates_index_haml__1248030464564595523_70365093568160' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (41.3ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 13:10:38 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.5ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (11.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (88.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 512ms (Views: 510.7ms | ActiveRecord: 0.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:10:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (161.2ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:10:39 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (118.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (228.9ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:10:39 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.8ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:10:39 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (117.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:10:39 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (134.9ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 13:11:27 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (3.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (27.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (69.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 382ms (Views: 381.4ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:11:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (91.8ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:11:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.9ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:11:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (173.3ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:11:28 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:11:28 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.0ms) Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-21 13:11:32 -0300 Processing by Postino::Manage::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (14.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml within layouts/postino/application (19.9ms) Completed 500 Internal Server Error in 28ms ActionView::Template::Error (undefined method `template_path' for #<#:0x007ffe4b683638>): 1: = simple_form_for @template do |f| 2: = f.input :name 3: = f.input :html_content 4: = f.submit "crear" actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_templates__form_haml__4095399248408911778_70365093665280' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml:2:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_templates_edit_haml__425607868872250527_70365081779280' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (19.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.8ms) Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-21 13:12:16 -0300 Processing by Postino::Manage::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (16.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml within layouts/postino/application (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (25.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (87.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 426ms (Views: 423.0ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:12:17 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (147.2ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:12:17 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (119.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (223.7ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:12:17 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (126.6ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:12:17 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:12:17 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (123.9ms) Started GET "/postino/manage/templates/new" for 127.0.0.1 at 2015-03-21 13:12:34 -0300 Processing by Postino::Manage::TemplatesController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (2.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/new.haml within layouts/postino/application (6.1ms) Completed 500 Internal Server Error in 13ms ActionView::Template::Error (No route matches {:action=>"show", :controller=>"postino/manage/templates", :format=>nil, :id=>#} missing required keys: [:id]): 1: = simple_form_for @template, url: manage_template_path(@template) do |f| 2: = f.input :name 3: = f.input :html_content 4: = f.submit "crear" actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_templates__form_haml__4095399248408911778_70365064681720' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/new.haml:2:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_templates_new_haml__2558336573096678056_70365064594600' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (21.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (48.4ms) Started GET "/postino/manage/templates/new" for 127.0.0.1 at 2015-03-21 13:13:02 -0300 Processing by Postino::Manage::TemplatesController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (57.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/new.haml within layouts/postino/application (60.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (43.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (97.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 579ms (Views: 578.1ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (136.6ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (120.5ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:13:03 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.5ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:13:04 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (113.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (232.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:13:04 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (126.9ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (5.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (9.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (103.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (69.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 375ms (Views: 374.0ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:13:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.1ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:13:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.6ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:13:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (96.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (177.0ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:13:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:13:10 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (85.7ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:13:13 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (13.5ms) Completed 500 Internal Server Error in 19ms ActionView::Template::Error (undefined method `campaigns_path' for #<#:0x007ffe4ca8ab68>): 1: %h1.page-header New Campaigns 2: .row.placeholders 3: = simple_form_for @campaign do |f| 4: 5: = f.input :list_id, as: :select , collection: Postino::List.all 6: = f.submit "Create Campaign" actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml:3:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_new_haml___579350139297302102_70365081820980' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.8ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:13:26 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (12.5ms) Completed 500 Internal Server Error in 18ms ActionView::Template::Error (undefined method `campaigns_path' for #<#:0x007ffe4c98e7c8>): 1: %h1.page-header New Campaigns 2: .row.placeholders 3: = simple_form_for @campaign do |f| 4: 5: = f.input :list_id, as: :select , collection: Postino::List.all 6: = f.submit "Create Campaign" actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml:3:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_new_haml___579350139297302102_70365081820980' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (18.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.9ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:13:28 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (19.5ms) Completed 500 Internal Server Error in 28ms ActionView::Template::Error (undefined method `campaigns_path' for #<#:0x007ffe4b3663d8>): 1: %h1.page-header New Campaigns 2: .row.placeholders 3: = simple_form_for @campaign do |f| 4: 5: = f.input :list_id, as: :select , collection: Postino::List.all 6: = f.submit "Create Campaign" actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml:3:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_new_haml___579350139297302102_70365081820980' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (26.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.9ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:13:44 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (12.0ms) Completed 500 Internal Server Error in 18ms ActionView::Template::Error (undefined method `campaigns_path' for #<#:0x007ffe49485f18>): 1: %h1.page-header New Campaigns 2: .row.placeholders 3: = simple_form_for @campaign do |f| 4: 5: = f.input :list_id, as: :select , collection: Postino::List.all 6: = f.submit "Create Campaign" actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml:3:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_new_haml___579350139297302102_70365081820980' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (96.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (121.7ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 13:13:58 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (30.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (90.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 382ms (Views: 381.3ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/postino/style-164326e7c851af0c289eed789a6af566.css?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.5ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.8ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:13:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.5ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:14:00 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (170.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:14:00 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (91.9ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:14:01 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (13.9ms) Completed 500 Internal Server Error in 21ms ActionView::Template::Error (undefined method `campaigns_path' for #<#:0x007ffe4b463150>): 1: %h1.page-header New Campaigns 2: .row.placeholders 3: = simple_form_for @campaign do |f| 4: 5: = f.input :list_id, as: :select , collection: Postino::List.all 6: = f.submit "Create Campaign" actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:434:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml:3:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_new_haml___579350139297302102_70365081820980' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.8ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:15:00 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (3.5ms) Completed 500 Internal Server Error in 12ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml:8: syntax error, unexpected keyword_ensure, expecting $end): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml:8: syntax error, unexpected keyword_ensure, expecting $end actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (19.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (128.4ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:15:08 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (12.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (74.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 334ms (Views: 333.4ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-da40617b34aaecd207f57bcc72be7e18.css?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.5ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:15:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (167.1ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:15:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (138.1ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:15:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (121.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (242.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:15:10 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (131.0ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (13.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (24.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (66.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 375ms (Views: 374.2ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:15:34 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.4ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:15:35 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (93.9ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:15:35 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:15:35 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:15:35 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.0ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:15:49 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (17.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (96.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 461ms (Views: 459.6ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (139.4ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:15:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (115.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (233.2ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:15:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (130.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:15:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.9ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (7.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (26.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (66.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 375ms (Views: 374.4ms | ActiveRecord: 0.2ms) Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/slimscroll/jquery.slimscroll.min-4ce09cdb170298d6c96e450ea33861fc.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/assets/postino/application-06f73ebb9fb1adbfb50b68d932eec5ec.js?body=1" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:16:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.5ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:16:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (93.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (172.5ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:16:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.2ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:16:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:16:09 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.5ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:18:51 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (11.4ms) Completed 500 Internal Server Error in 236ms ActionView::Template::Error (couldn't find file 'metisMenu/jquery.metisMenu.js' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/javascripts/postino/application.js:16)): 39: / Main css styles 40: = stylesheet_link_tag 'postino/application', media: 'all', 'data-turbolinks-track' => true 41: / Main javascript files 42: = javascript_include_tag 'postino/application', 'data-turbolinks-track' => true 43: = csrf_meta_tags 44: %body 45: / Skin configuration box sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:137:in `block in javascript_include_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `javascript_include_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:42:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365064051320' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (21.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.5ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:19:12 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (10.1ms) Completed 500 Internal Server Error in 102ms ActionView::Template::Error (couldn't find file 'slimscroll/jquery.slimscroll.min.js' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/javascripts/postino/application.js:19)): 39: / Main css styles 40: = stylesheet_link_tag 'postino/application', media: 'all', 'data-turbolinks-track' => true 41: / Main javascript files 42: = javascript_include_tag 'postino/application', 'data-turbolinks-track' => true 43: = csrf_meta_tags 44: %body 45: / Skin configuration box sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:137:in `block in javascript_include_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `javascript_include_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:42:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___3776225149618771616_70365064051320' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.1ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:19:35 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (9.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (72.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 423ms (Views: 421.8ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/assets/postino/application-62df22b94fb8a7382e35272a275207be.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (91.3ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (87.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (174.5ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (89.9ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:19:36 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:19:37 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.3ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:19:52 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (15.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (25.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (71.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 516ms (Views: 515.1ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/application-2b521968151d67ac3058d03b653d10be.js?body=1" for 127.0.0.1 at 2015-03-21 13:19:52 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:19:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.6ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:19:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.0ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:19:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.6ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:19:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:19:53 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.8ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:20:00 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (66.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 528ms (Views: 527.5ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 13:20:00 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:20:00 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.2ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:20:01 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (89.9ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:20:01 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.6ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:20:01 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:20:01 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (115.1ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 13:20:08 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (101.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (26.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (69.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 383ms (Views: 381.6ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:20:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.1ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:20:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.9ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:20:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.7ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:20:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:20:09 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.7ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:20:12 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (9.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (66.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.html.erb (0.1ms) Completed 200 OK in 360ms (Views: 359.4ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:20:12 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.2ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:20:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (89.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (168.2ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:20:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.7ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:20:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:20:13 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.6ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:24:13 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (8.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (24.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (169.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (2.3ms) Completed 200 OK in 5519ms (Views: 5517.7ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 13:24:18 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 13:24:18 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:24:18 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.9ms) Started GET "/images/a4.jpg" for 127.0.0.1 at 2015-03-21 13:24:18 -0300 ActionController::RoutingError (No route matches [GET] "/images/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (90.2ms) Started GET "/images/a7.jpg" for 127.0.0.1 at 2015-03-21 13:24:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (90.7ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 13:24:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (198.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:24:19 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (117.4ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 13:25:01 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (11.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (6.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 354ms (Views: 353.1ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 13:25:02 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 13:25:02 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (136.4ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 14:10:10 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (11.0ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (196.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 560ms (Views: 523.9ms | ActiveRecord: 11.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:10:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (215.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:10:11 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (128.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (280.7ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 14:10:29 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 361ms (Views: 354.3ms | ActiveRecord: 0.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:10:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (122.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (277.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:10:30 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (151.5ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 14:10:33 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (43.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 510ms (Views: 488.0ms | ActiveRecord: 0.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:10:33 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (158.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:10:34 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (143.5ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 14:22:34 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (6.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (40.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 459ms (Views: 457.1ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:22:34 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (152.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:22:35 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (146.7ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 14:22:37 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (5.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (9.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 460ms (Views: 459.1ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:22:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (154.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:22:37 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (146.7ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 14:22:40 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (37.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 501ms (Views: 499.5ms | ActiveRecord: 0.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:22:40 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (153.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:22:41 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (151.1ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 14:22:43 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (123.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 467ms (Views: 465.8ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:22:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (150.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:22:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (149.5ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 14:22:47 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (4.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 342ms (Views: 340.9ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:22:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (155.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:22:47 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (277.1ms) Started GET "/postino/manage/templates/new" for 127.0.0.1 at 2015-03-21 14:22:49 -0300 Processing by Postino::Manage::TemplatesController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/new.haml within layouts/postino/application (25.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 364ms (Views: 363.7ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:22:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (152.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:22:50 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (152.2ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 14:23:19 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (15.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 347ms (Views: 345.5ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:23:20 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (149.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:23:20 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (153.6ms) Started POST "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 14:23:32 -0300 Processing by Postino::Manage::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JVmLHf6o1o0NXNLS56oaepGoEc+K5pLP/9f0mUmZ/2VdnO6PlnYbedrxxfYSzNlYJppUK4L3WGpz2pppYnz4yQ==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.1ms) begin transaction SQL (14.5ms) INSERT INTO "postino_campaigns" ("list_id", "created_at", "updated_at") VALUES (?, ?, ?) [["list_id", 1], ["created_at", "2015-03-21 17:23:32.465792"], ["updated_at", "2015-03-21 17:23:32.465792"]]  (1.8ms) commit transaction Completed 500 Internal Server Error in 28ms NoMethodError (undefined method `campaign_wizard_path' for #): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaigns_controller.rb:26:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (112.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (168.4ms) Started POST "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 14:24:35 -0300 Processing by Postino::Manage::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JVmLHf6o1o0NXNLS56oaepGoEc+K5pLP/9f0mUmZ/2VdnO6PlnYbedrxxfYSzNlYJppUK4L3WGpz2pppYnz4yQ==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.2ms) begin transaction SQL (0.7ms) INSERT INTO "postino_campaigns" ("list_id", "created_at", "updated_at") VALUES (?, ?, ?) [["list_id", 1], ["created_at", "2015-03-21 17:24:35.770262"], ["updated_at", "2015-03-21 17:24:35.770262"]]  (6.3ms) commit transaction Redirected to http://localhost:3000/postino/manage/campaigns/9/wizard/setup Completed 302 Found in 76ms (ActiveRecord: 9.0ms) Started GET "/postino/manage/campaigns/9/wizard/setup" for 127.0.0.1 at 2015-03-21 14:24:35 -0300 ActionController::RoutingError (uninitialized constant Postino::Manage::CampaignWizardController): activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (285.1ms) Started GET "/postino/manage/campaigns/9/wizard/setup" for 127.0.0.1 at 2015-03-21 14:25:39 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"9", "id"=>"setup"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 9]] Completed 500 Internal Server Error in 76ms ActionView::MissingTemplate (Missing template postino/manage/campaign_wizard/setup, postino/application/setup with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (26.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (66.2ms) Started POST "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 14:25:45 -0300 Processing by Postino::Manage::CampaignsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JVmLHf6o1o0NXNLS56oaepGoEc+K5pLP/9f0mUmZ/2VdnO6PlnYbedrxxfYSzNlYJppUK4L3WGpz2pppYnz4yQ==", "campaign"=>{"list_id"=>"1"}, "commit"=>"Create Campaign"}  (0.2ms) begin transaction SQL (0.9ms) INSERT INTO "postino_campaigns" ("list_id", "created_at", "updated_at") VALUES (?, ?, ?) [["list_id", 1], ["created_at", "2015-03-21 17:25:45.080730"], ["updated_at", "2015-03-21 17:25:45.080730"]]  (2.4ms) commit transaction Redirected to http://localhost:3000/postino/manage/campaigns/10/wizard/setup Completed 302 Found in 14ms (ActiveRecord: 3.4ms) Started GET "/postino/manage/campaigns/10/wizard/setup" for 127.0.0.1 at 2015-03-21 14:25:45 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Completed 500 Internal Server Error in 7ms ActionView::MissingTemplate (Missing template postino/manage/campaign_wizard/setup, postino/application/setup with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (26.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (64.7ms) Started GET "/postino/manage/campaigns/10/wizard/setup" for 127.0.0.1 at 2015-03-21 14:26:40 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (14.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (7.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (755.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 1094ms (Views: 1091.6ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:41 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:26:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (157.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:26:42 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (120.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (263.9ms) Started GET "/postino/manage/campaigns/10/wizard/template" for 127.0.0.1 at 2015-03-21 14:26:47 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (10.6ms) Postino::Template Load (0.5ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (64.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 417ms (Views: 413.3ms | ActiveRecord: 1.4ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (146.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:26:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (154.7ms) Started GET "/postino/manage/campaigns/10/wizard/design" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"design"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (9.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (34.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 503ms (Views: 500.6ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:50 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:51 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:51 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:51 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:51 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:51 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:26:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (159.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:26:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (281.4ms) Started GET "/postino/manage/campaigns/10/wizard/confirm" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"confirm"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (11.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (28.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 369ms (Views: 366.9ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:53 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:54 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:54 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:54 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:54 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:54 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:54 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:54 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:26:54 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (148.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:26:54 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (151.8ms) Started GET "/postino/manage/campaigns/10/wizard/design" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"design"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (8.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (141.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.3ms) Completed 200 OK in 494ms (Views: 490.9ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:26:58 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (278.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:26:59 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (156.3ms) Started GET "/postino/manage/campaigns/10/wizard/template" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"template"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (10.7ms) Postino::Template Load (0.6ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (34.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (40.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 495ms (Views: 490.1ms | ActiveRecord: 1.1ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:27:00 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (147.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:27:01 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (146.9ms) Started GET "/postino/manage/campaigns/10/wizard/setup" for 127.0.0.1 at 2015-03-21 14:27:01 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"setup"} Postino::Campaign Load (0.8ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (10.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (245.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 635ms (Views: 631.3ms | ActiveRecord: 0.8ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (152.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:27:02 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (159.2ms) Started GET "/postino/manage/campaigns/10/wizard/list" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"list"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (11.4ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (89.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 567ms (Views: 563.6ms | ActiveRecord: 1.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:03 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (141.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (141.2ms) Started GET "/postino/manage/campaigns/10/wizard/setup" for 127.0.0.1 at 2015-03-21 14:27:04 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (10.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (243.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 599ms (Views: 596.8ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:27:05 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (152.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:27:06 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (162.0ms) Started PATCH "/postino/manage/campaigns/10/wizard/setup" for 127.0.0.1 at 2015-03-21 14:29:00 -0300 Processing by Postino::Manage::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"VPIbqe846wVJS8BCgTYtDSy8lFkzlEVM6J3fZ7nJooEsN347h+Ym8Z7m12Z0UO4vm47RvTuFj+lkkLGXkiylLQ==", "campaign"=>{"name"=>"otra campaña", "subject"=>"oijoij", "from_name"=>"", "from_email"=>"", "reply_email"=>"", "query_string"=>"", "scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"3", "scheduled_at(3i)"=>"21", "scheduled_at(4i)"=>"17", "scheduled_at(5i)"=>"27", "timezone"=>"(GMT-10:00) Hawaii", "created_at(1i)"=>"2015", "created_at(2i)"=>"3", "created_at(3i)"=>"21", "created_at(4i)"=>"17", "created_at(5i)"=>"25", "updated_at(1i)"=>"2015", "updated_at(2i)"=>"3", "updated_at(3i)"=>"21", "updated_at(4i)"=>"17", "updated_at(5i)"=>"25"}, "commit"=>"Update Campaign", "campaign_id"=>"10", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]]  (0.1ms) begin transaction  (0.1ms) rollback transaction  (0.1ms) begin transaction  (0.1ms) rollback transaction Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (10.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (2.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (235.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 607ms (Views: 579.8ms | ActiveRecord: 0.8ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (136.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (274.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:29:01 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (166.0ms) Started PATCH "/postino/manage/campaigns/10/wizard/setup" for 127.0.0.1 at 2015-03-21 14:29:13 -0300 Processing by Postino::Manage::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"xHc3I7Xuqf5z4aCDsIxiH/YrDPGdmR47xgL+uLmmWTS8slKx3TBkCqRMt6dF6qE9QRlJFZWI1J5KD5BIkkNemA==", "campaign"=>{"name"=>"otra campaña", "subject"=>"oijoij", "from_name"=>"oijoij", "from_email"=>"oijoij@oijoij.cl", "reply_email"=>"", "query_string"=>"", "scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"3", "scheduled_at(3i)"=>"21", "scheduled_at(4i)"=>"17", "scheduled_at(5i)"=>"27", "timezone"=>"(GMT-10:00) Hawaii", "created_at(1i)"=>"2015", "created_at(2i)"=>"3", "created_at(3i)"=>"21", "created_at(4i)"=>"17", "created_at(5i)"=>"25", "updated_at(1i)"=>"2015", "updated_at(2i)"=>"3", "updated_at(3i)"=>"21", "updated_at(4i)"=>"17", "updated_at(5i)"=>"25"}, "commit"=>"Update Campaign", "campaign_id"=>"10", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]]  (0.1ms) begin transaction SQL (1.0ms) UPDATE "postino_campaigns" SET "name" = ?, "subject" = ?, "from_name" = ?, "from_email" = ?, "reply_email" = ?, "query_string" = ?, "timezone" = ?, "scheduled_at" = ?, "created_at" = ?, "updated_at" = ? WHERE "postino_campaigns"."id" = ? [["name", "otra campaña"], ["subject", "oijoij"], ["from_name", "oijoij"], ["from_email", "oijoij@oijoij.cl"], ["reply_email", ""], ["query_string", ""], ["timezone", "(GMT-10:00) Hawaii"], ["scheduled_at", "2015-03-21 17:27:00.000000"], ["created_at", "2015-03-21 17:25:00.000000"], ["updated_at", "2015-03-21 17:25:00.000000"], ["id", 10]]  (6.0ms) commit transaction  (0.3ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3000/postino/manage/campaigns/10/wizard/template Completed 302 Found in 33ms (ActiveRecord: 7.9ms) Started GET "/postino/manage/campaigns/10/wizard/template" for 127.0.0.1 at 2015-03-21 14:29:13 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (9.7ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (32.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (44.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 515ms (Views: 512.9ms | ActiveRecord: 0.6ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:29:14 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (151.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:29:15 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (149.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:29:15 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (160.9ms) Started GET "/postino/manage/campaigns/10/wizard/design" for 127.0.0.1 at 2015-03-21 14:29:22 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (9.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (2.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (35.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 378ms (Views: 376.5ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (161.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:29:23 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (157.2ms) Started GET "/postino/manage/campaigns/10/wizard/list" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"list"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (12.2ms) Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (37.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (41.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 502ms (Views: 497.9ms | ActiveRecord: 0.7ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:29:26 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (150.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:29:27 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (154.6ms) Started GET "/postino/manage/campaigns/10/wizard/setup" for 127.0.0.1 at 2015-03-21 14:29:28 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"10", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 10]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (9.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (226.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 566ms (Views: 563.2ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:29:29 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (148.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:29:30 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (157.4ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 14:29:46 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (9.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 357ms (Views: 354.8ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (146.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:29:47 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (157.6ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (7.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (12.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (40.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 477ms (Views: 472.1ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:50 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:51 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:51 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:51 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:51 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:29:51 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:29:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (151.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:29:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (150.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 14:34:22 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (10.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 461ms (Views: 459.4ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (145.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:34:23 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (284.4ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 14:34:26 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (4.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 347ms (Views: 346.2ms | ActiveRecord: 0.3ms) Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:26 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:26 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:26 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:26 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:26 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:26 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:26 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (150.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:34:27 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (154.0ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (52.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 395ms (Views: 394.0ms | ActiveRecord: 0.5ms) Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:29 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:30 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:30 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:30 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:30 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:30 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:30 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 14:34:30 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 14:34:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (152.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 14:34:30 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (153.4ms) Started GET "/postino/campaigns/1/" for 127.0.0.1 at 2015-03-21 14:35:06 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 65ms ActionView::MissingTemplate (Missing template layouts/empty with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:86:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:93:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `block in find_layout' actionview (4.2.0) lib/action_view/lookup_context.rb:242:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `find_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (28.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (184.1ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 14:36:34 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 26ms ActionView::MissingTemplate (Missing template layouts/empty with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:86:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:93:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `block in find_layout' actionview (4.2.0) lib/action_view/lookup_context.rb:242:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `find_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (30.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (73.7ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 14:37:14 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.6ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 588ms ActionView::MissingTemplate (Missing template layouts/empty with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:86:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:93:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `block in find_layout' actionview (4.2.0) lib/action_view/lookup_context.rb:242:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `find_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (28.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (59.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (233.2ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 14:37:33 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.6ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 193ms ActionView::MissingTemplate (Missing template layouts/empty with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:86:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:93:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `block in find_layout' actionview (4.2.0) lib/action_view/lookup_context.rb:242:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `find_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (31.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (173.9ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 14:42:43 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 22ms ActionView::MissingTemplate (Missing template layouts/empty with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:86:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:93:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `block in find_layout' actionview (4.2.0) lib/action_view/lookup_context.rb:242:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `find_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (106.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (142.8ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:01:38 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (7.9ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 48ms ActionView::MissingTemplate (Missing template layouts/empty with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:86:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:93:in `resolve_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `block in find_layout' actionview (4.2.0) lib/action_view/lookup_context.rb:242:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `find_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (29.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (86.9ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:15:40 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (110.6ms) Completed 500 Internal Server Error in 260ms ActionView::Template::Error (Asset filtered out and will not be served: add `Rails.application.config.assets.precompile += %w( postino/campaigns.css )` to `config/initializers/assets.rb` and restart your server): 5: %meta{:content => "width=device-width, initial-scale=1.0", :name => "viewport"}/ 6: %title Postino 7: / Include style per-controller - vendor plugins 8: = stylesheet_link_tag params[:controller] if ::Rails.application.assets.find_asset("#{params[:controller]}.css") 9: / Main css styles 10: = stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true 11: / Main javascript files sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:193:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/empty.html.haml:8:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_empty_html_haml___2589949114453233111_70101493266620' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (108.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (158.5ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:16:22 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (0.6ms) Completed 200 OK in 80ms (Views: 78.0ms | ActiveRecord: 0.5ms) Started GET "/postino/campaigns/1/lists" for 127.0.0.1 at 2015-03-21 15:20:59 -0300 ActionController::RoutingError (No route matches [GET] "/postino/campaigns/1/lists"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (167.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (484.7ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:21:02 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (0.4ms) Completed 200 OK in 61ms (Views: 58.9ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:21:20 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (0.5ms) Completed 200 OK in 62ms (Views: 60.5ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:21:22 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.7ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (0.3ms) Completed 200 OK in 159ms (Views: 153.8ms | ActiveRecord: 0.7ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-21 15:21:27 -0300 ActionController::RoutingError (No route matches [GET] "/postino/campaigns"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (139.8ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:21:31 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (0.4ms) Completed 200 OK in 64ms (Views: 61.9ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:21:51 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (10.7ms) Completed 500 Internal Server Error in 19ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...lock"}, nil, :href => url_for :controller => 'pages', :actio... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected ',', expecting '}' ...url_for :controller => 'pages', :action => 'register')}>Crea... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected ')', expecting '}' ...'pages', :action => 'register')}>Create an account\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: unknown regexp options - fr /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected $undefined ...te an account\n \n

    \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '(' ...\n \n

    \n Inspini... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected $undefined ... \n

    \n Inspinia we app... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...m-t'>\n Inspinia we app framework base on Bootst... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:24: syntax error, unexpected keyword_ensure /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:26: syntax error, unexpected keyword_end, expecting '}'): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected tSYMBEG, expecting keyword_do or '{' or '(' ...lock"}, nil, :href => url_for :controller => 'pages', :actio... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected ',', expecting '}' ...url_for :controller => 'pages', :action => 'register')}>Crea... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected ')', expecting '}' ...'pages', :action => 'register')}>Create an account\n ... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: unknown regexp options - fr /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected $undefined ...te an account\n \n

    \n <... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '(' ...\n \n

    \n Inspini... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected $undefined ... \n

    \n Inspinia we app... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:23: syntax error, unexpected tIDENTIFIER, expecting keyword_do or '{' or '(' ...m-t'>\n Inspinia we app framework base on Bootst... ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:24: syntax error, unexpected keyword_ensure /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:26: syntax error, unexpected keyword_end, expecting '}' actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' :10:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (32.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (11.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (78.8ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:22:09 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (12.1ms) Completed 200 OK in 166ms (Views: 164.0ms | ActiveRecord: 0.3ms) Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-03-21 15:22:10 -0300 Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-03-21 15:22:10 -0300 Started GET "/postino/" for 127.0.0.1 at 2015-03-21 15:23:18 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (144.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (59.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (9.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (3.1ms) Completed 200 OK in 1106ms (Views: 1105.1ms | ActiveRecord: 0.0ms) Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 15:23:19 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 15:23:19 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 15:23:19 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 15:23:19 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 15:23:19 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 15:23:19 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 15:23:19 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 15:23:19 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 15:23:19 -0300 Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 15:23:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (151.8ms) Started GET "/postino/assets/a2.jpg" for 127.0.0.1 at 2015-03-21 15:23:20 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/a2.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (239.0ms) Started GET "/postino/assets/a3.jpg" for 127.0.0.1 at 2015-03-21 15:23:20 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/a3.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (155.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 15:23:20 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (154.0ms) Started GET "/postino/assets/a5.jpg" for 127.0.0.1 at 2015-03-21 15:23:20 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/a5.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (158.5ms) Started GET "/postino/assets/a4.jpg" for 127.0.0.1 at 2015-03-21 15:23:20 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (160.1ms) Started GET "/postino/assets/profile.jpg" for 127.0.0.1 at 2015-03-21 15:23:21 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (158.7ms) Started GET "/postino/assets/a7.jpg" for 127.0.0.1 at 2015-03-21 15:23:21 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (156.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 15:23:21 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (98.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (249.1ms) Started GET "/postino/campaigns" for 127.0.0.1 at 2015-03-21 15:23:24 -0300 ActionController::RoutingError (No route matches [GET] "/postino/campaigns"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (139.5ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:23:29 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (0.4ms) Completed 200 OK in 62ms (Views: 59.2ms | ActiveRecord: 0.3ms) Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-03-21 15:23:29 -0300 Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-03-21 15:23:29 -0300 Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:24:53 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (0.4ms) Completed 200 OK in 142ms (Views: 140.3ms | ActiveRecord: 0.3ms) Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-03-21 15:24:53 -0300 Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-03-21 15:24:53 -0300 Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:26:14 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (0.5ms) Completed 200 OK in 313ms (Views: 310.0ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 15:26:15 -0300 Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:28:20 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (15.0ms) Completed 500 Internal Server Error in 23ms ActionView::Template::Error (undefined method `name' for nil:NilClass): 11: %p 12: = @campaign.try(:tagline) 13: 14: %p Hola #{@subscriber.name} 15: 16: %form.m-t{:action => "#", :role => "form"} 17: .form-group /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:14:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_show_haml___1234666551925412559_70101506855380' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (30.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (74.0ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (11.0ms) Completed 200 OK in 428ms (Views: 425.6ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:30 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:31 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:31 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:31 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:31 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:31 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:31 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 15:28:31 -0300 Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (1.4ms) Completed 200 OK in 284ms (Views: 281.6ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:40 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:41 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:41 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:41 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:41 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:41 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:41 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 15:32:41 -0300 Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:32:52 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (12.9ms) Completed 200 OK in 298ms (Views: 296.2ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:34:24 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (9.6ms) Completed 200 OK in 418ms (Views: 416.3ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:39:08 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (0.6ms) Completed 200 OK in 442ms (Views: 285.8ms | ActiveRecord: 1.9ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:39:14 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (2.3ms) Completed 200 OK in 382ms (Views: 381.7ms | ActiveRecord: 0.0ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:40:22 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (13.7ms) Completed 500 Internal Server Error in 21ms ActionView::Template::Error (undefined method `name' for nil:NilClass): 3: %div 4: %h1.logo-name 5: + 6: %h3= @campaign.name 7: %p 8: = @campaign.try(:tagline) 9: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml:6:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_subscribe_html_haml__71172152867070985_70101493716600' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (27.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (66.9ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:41:35 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (0.7ms) Completed 200 OK in 479ms (Views: 409.4ms | ActiveRecord: 2.0ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:45:10 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (433.3ms) Completed 500 Internal Server Error in 950ms ActionView::Template::Error (First argument in form cannot contain nil or be empty): 11: 12: Subscribe to our newsletter! We include fresh content, articles from our community and events we attend. 13: 14: = simple_form_for(@subscriber, :url => "", html: {class: 'm-t', role: "form" }, :defaults => { :input_html => { :class => "form-control" } }) do |f| 15: 16: .form-group 17: = f.input :email, :required => false, :autofocus => true, :label=> false, :placeholder=> "email" actionview (4.2.0) lib/action_view/helpers/form_helper.rb:432:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml:14:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_subscribe_html_haml__71172152867070985_70101517089720' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (29.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (68.6ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:45:22 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (153.0ms) Completed 500 Internal Server Error in 315ms ActionView::Template::Error (undefined method `first_name' for #): 17: = f.input :email, :required => false, :autofocus => true, :label=> false, :placeholder=> "email" 18: 19: .form-group 20: = f.input :first_name, :required => false 21: 22: .form-group 23: = f.input :last_name, :required => false activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:28:in `public_send' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:28:in `value' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:37:in `value_before_type_cast' actionview (4.2.0) lib/action_view/helpers/tags/text_field.rb:13:in `block in render' actionview (4.2.0) lib/action_view/helpers/tags/text_field.rb:13:in `fetch' actionview (4.2.0) lib/action_view/helpers/tags/text_field.rb:13:in `render' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:787:in `text_field' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1322:in `text_field' simple_form (3.1.0) lib/simple_form/inputs/string_input.rb:14:in `input' simple_form (3.1.0) lib/simple_form/wrappers/leaf.rb:19:in `call' simple_form (3.1.0) lib/simple_form/wrappers/leaf.rb:19:in `render' simple_form (3.1.0) lib/simple_form/wrappers/many.rb:28:in `block in render' simple_form (3.1.0) lib/simple_form/wrappers/many.rb:26:in `each' simple_form (3.1.0) lib/simple_form/wrappers/many.rb:26:in `render' simple_form (3.1.0) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.1.0) lib/simple_form/form_builder.rb:115:in `input' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml:20:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_subscribe_html_haml__71172152867070985_70101517089720' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml:14:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_subscribe_html_haml__71172152867070985_70101517089720' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (38.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (12.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (86.4ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:45:31 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (31.7ms) Completed 200 OK in 447ms (Views: 428.8ms | ActiveRecord: 0.4ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:46:07 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (37.4ms) Completed 200 OK in 451ms (Views: 442.7ms | ActiveRecord: 0.5ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:46:30 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (34.7ms) Completed 200 OK in 442ms (Views: 433.5ms | ActiveRecord: 0.5ms) Started POST "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:46:32 -0300 ActionController::RoutingError (No route matches [POST] "/postino/campaigns/1/subscribe"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (94.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (259.7ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:46:58 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (30.1ms) Completed 200 OK in 457ms (Views: 442.9ms | ActiveRecord: 0.5ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:47:29 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (29.5ms) Completed 200 OK in 455ms (Views: 447.0ms | ActiveRecord: 0.5ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:47:43 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (29.5ms) Completed 200 OK in 360ms (Views: 351.2ms | ActiveRecord: 0.8ms) Started GET "/postino/campaigns/1/subscribe" for 127.0.0.1 at 2015-03-21 15:47:55 -0300 Processing by Postino::CampaignsController#subscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/subscribe.html.haml within layouts/postino/empty (123.6ms) Completed 200 OK in 423ms (Views: 416.5ms | ActiveRecord: 0.4ms) Started GET "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 15:49:33 -0300 AbstractController::ActionNotFound (The action 'index' could not be found for Postino::SubscribersController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.9ms) Started GET "/postino/campaigns/1/subscribers/new" for 127.0.0.1 at 2015-03-21 15:49:38 -0300 Processing by Postino::SubscribersController#new as HTML Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 112ms ActionView::MissingTemplate (Missing template postino/subscribers/new, postino/application/new with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (21.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (57.6ms) Started GET "/postino/campaigns/1/subscribers/new" for 127.0.0.1 at 2015-03-21 15:49:59 -0300 Processing by Postino::SubscribersController#new as HTML Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml within layouts/postino/empty (12.5ms) Completed 500 Internal Server Error in 24ms ActionView::Template::Error (First argument in form cannot contain nil or be empty): 11: 12: Subscribe to our newsletter! We include fresh content, articles from our community and events we attend. 13: 14: = simple_form_for(@subscriber, :url => "", html: {class: 'm-t', role: "form" }, :defaults => { :input_html => { :class => "form-control" } }) do |f| 15: 16: .form-group 17: = f.input :email, :required => false, :autofocus => true, :label=> false, :placeholder=> "email" actionview (4.2.0) lib/action_view/helpers/form_helper.rb:432:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml:14:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_subscribers_new_html_haml__2432805828144267256_70101498460180' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (30.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (71.8ms) Started GET "/postino/campaigns/1/subscribers/new" for 127.0.0.1 at 2015-03-21 15:50:25 -0300 Processing by Postino::SubscribersController#new as HTML Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml within layouts/postino/empty (24.8ms) Completed 200 OK in 682ms (Views: 499.1ms | ActiveRecord: 3.7ms) Started GET "/postino/campaigns/1/subscribers/new" for 127.0.0.1 at 2015-03-21 15:50:53 -0300 Processing by Postino::SubscribersController#new as HTML Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml within layouts/postino/empty (15.7ms) Completed 500 Internal Server Error in 29ms ActionView::Template::Error (No route matches {:action=>"show", :campaign_id=>#

    ", query_string: "", scheduled_at: "2015-03-19 04:54:00", timezone: "(GMT-10:00) Hawaii", state: nil, recipients_count: nil, sent: nil, opens_count: nil, clicks_count: nil, parent_id: nil, created_at: "2015-03-18 05:18:00", updated_at: "2015-03-19 04:57:52", list_id: 1, template_id: 1, name: "una campaña">, :controller=>"postino/subscribers", :format=>nil, :id=>nil} missing required keys: [:id]): 11: 12: Subscribe to our newsletter! We include fresh content, articles from our community and events we attend. 13: 14: = simple_form_for(@subscriber, :url => campaign_subscriber_path(@campaign), html: {class: 'm-t', role: "form" }, :defaults => { :input_html => { :class => "form-control" } }) do |f| 15: 16: .form-group 17: = f.input :email, :required => false, :autofocus => true, :label=> false, :placeholder=> "email" actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml:14:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_subscribers_new_html_haml__2432805828144267256_70101492861220' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (31.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (11.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (76.0ms) Started GET "/postino/campaigns/1/subscribers/new" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Processing by Postino::SubscribersController#new as HTML Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml within layouts/postino/empty (27.1ms) Completed 200 OK in 439ms (Views: 430.5ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 15:51:02 -0300 Started POST "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 15:51:05 -0300 Processing by Postino::SubscribersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+mHa9MLTzdw6qfv5VgcITcud+dlgJCKzfzr4uSPoW4SCpL9mqg0AKO0E7N2jYctvfK+8PWg16BbzN5ZJCA1cKA==", "subscriber"=>{"email"=>"", "name"=>"", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 10ms ActionView::MissingTemplate (Missing template postino/subscribers/create, postino/application/create with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (26.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (65.7ms) Started POST "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 15:52:10 -0300 Processing by Postino::SubscribersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+mHa9MLTzdw6qfv5VgcITcud+dlgJCKzfzr4uSPoW4SCpL9mqg0AKO0E7N2jYctvfK+8PWg16BbzN5ZJCA1cKA==", "subscriber"=>{"email"=>"", "name"=>"", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1"} Postino::Campaign Load (0.7ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) begin transaction SQL (15.1ms) INSERT INTO "postino_subscribers" ("list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["list_id", 1], ["state", "passive"], ["created_at", "2015-03-21 18:52:11.333514"], ["updated_at", "2015-03-21 18:52:11.333514"]]  (2.8ms) commit transaction Completed 500 Internal Server Error in 204ms ActionView::MissingTemplate (Missing template postino/subscribers/create, postino/application/create with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (25.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (65.3ms) Started GET "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 15:53:28 -0300 AbstractController::ActionNotFound (The action 'index' could not be found for Postino::SubscribersController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.9ms) Started POST "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 15:53:33 -0300 Processing by Postino::SubscribersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+mHa9MLTzdw6qfv5VgcITcud+dlgJCKzfzr4uSPoW4SCpL9mqg0AKO0E7N2jYctvfK+8PWg16BbzN5ZJCA1cKA==", "subscriber"=>{"email"=>"", "name"=>"", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "name", "last_name", "list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", ""], ["name", ""], ["last_name", ""], ["list_id", 1], ["state", "passive"], ["created_at", "2015-03-21 18:53:34.103571"], ["updated_at", "2015-03-21 18:53:34.103571"]]  (6.1ms) commit transaction Completed 500 Internal Server Error in 162ms NoMethodError (undefined method `errors' for nil:NilClass): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:24:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (22.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.7ms) Started GET "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 15:53:44 -0300 AbstractController::ActionNotFound (The action 'index' could not be found for Postino::SubscribersController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (1.4ms) Started POST "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 15:53:48 -0300 Processing by Postino::SubscribersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"+mHa9MLTzdw6qfv5VgcITcud+dlgJCKzfzr4uSPoW4SCpL9mqg0AKO0E7N2jYctvfK+8PWg16BbzN5ZJCA1cKA==", "subscriber"=>{"email"=>"", "name"=>"", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "name", "last_name", "list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", ""], ["name", ""], ["last_name", ""], ["list_id", 1], ["state", "passive"], ["created_at", "2015-03-21 18:53:56.108207"], ["updated_at", "2015-03-21 18:53:56.108207"]]  (2.6ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "name", "last_name", "list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", ""], ["name", ""], ["last_name", ""], ["list_id", 1], ["state", "passive"], ["created_at", "2015-03-21 18:54:18.012976"], ["updated_at", "2015-03-21 18:54:18.012976"]]  (5.8ms) commit transaction Redirected to http://localhost:3000/ Completed 302 Found in 29579ms (ActiveRecord: 13.9ms) Started GET "/" for 127.0.0.1 at 2015-03-21 15:54:18 -0300 Processing by Rails::WelcomeController#index as HTML Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (2.2ms) Completed 200 OK in 27ms (Views: 26.2ms | ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2015-03-21 15:54:43 -0300 Processing by Rails::WelcomeController#index as HTML Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (0.1ms) Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2015-03-21 15:54:44 -0300 Processing by Rails::WelcomeController#index as HTML Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (0.1ms) Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:54:54 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (0.6ms) Completed 200 OK in 385ms (Views: 383.1ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 15:54:55 -0300 Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:55:21 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (5.8ms) Completed 200 OK in 304ms (Views: 301.4ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:55:38 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (5.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (32.2ms) Completed 200 OK in 486ms (Views: 483.6ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:55:52 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (13.1ms) Completed 200 OK in 455ms (Views: 453.4ms | ActiveRecord: 0.3ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:57:02 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (36.3ms) Completed 500 Internal Server Error in 45ms ActionView::Template::Error (undefined method `new_campaign_subcribers_path' for #<#:0x007f8390027860>): 10: = render "shared/flashes" 11: 12: %ul 13: %li= link_to "subscribe", new_campaign_subcribers_path(@campaign) 14: %li= link_to "unsubscribe", campaign_subcriber_path(@campaign) 15: -#%li forward 16: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:13:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_show_haml___1234666551925412559_70101516774160' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (30.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (73.2ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:57:14 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (34.2ms) Completed 500 Internal Server Error in 42ms ActionView::Template::Error (undefined method `new_campaign_subcribers_path' for #<#:0x007f838d88f050>): 10: = render "shared/flashes" 11: 12: %ul 13: %li= link_to "subscribe", new_campaign_subcribers_path(@campaign) 14: %li= link_to "unsubscribe", campaign_subcribers_path(@campaign) 15: -#%li forward 16: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:13:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_show_haml___1234666551925412559_70101492674580' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (33.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (79.0ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:57:20 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (32.7ms) Completed 500 Internal Server Error in 41ms ActionView::Template::Error (undefined method `new_campaign_subcribers_path' for #<#:0x007f838c36b7c8>): 10: = render "shared/flashes" 11: 12: %ul 13: %li= link_to "subscribe", new_campaign_subcribers_path(@campaign) 14: -#%li= link_to "unsubscribe", campaign_subcribers_path(@campaign) 15: -#%li forward 16: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:13:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_show_haml___1234666551925412559_70101493768200' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (29.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (69.8ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:57:27 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (38.5ms) Completed 500 Internal Server Error in 47ms ActionView::Template::Error (undefined method `new_campaign_subcriber_path' for #<#:0x007f838c7bf158>): 10: = render "shared/flashes" 11: 12: %ul 13: %li= link_to "subscribe", new_campaign_subcriber_path(@campaign) 14: -#%li= link_to "unsubscribe", campaign_subcribers_path(@campaign) 15: -#%li forward 16: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:13:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_show_haml___1234666551925412559_70101497521260' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (125.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (165.6ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:57:47 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (34.6ms) Completed 500 Internal Server Error in 42ms ActionView::Template::Error (undefined method `new_campaign_subcribers_path' for #<#:0x007f83901bba50>): 10: = render "shared/flashes" 11: 12: %ul 13: %li= link_to "subscribe", new_campaign_subcribers_path(@campaign) 14: -#%li= link_to "unsubscribe", campaign_subcribers_path(@campaign) 15: -#%li forward 16: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml:13:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_campaigns_show_haml___1234666551925412559_70101517606080' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (132.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (175.9ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:58:50 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (11.9ms) Completed 200 OK in 322ms (Views: 319.4ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1/subscribers/new" for 127.0.0.1 at 2015-03-21 15:58:56 -0300 Processing by Postino::SubscribersController#new as HTML Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml within layouts/postino/empty (18.9ms) Completed 200 OK in 420ms (Views: 412.0ms | ActiveRecord: 0.5ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:59:31 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (12.9ms) Completed 200 OK in 491ms (Views: 489.2ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 15:59:43 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (11.7ms) Completed 200 OK in 318ms (Views: 316.3ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 15:59:44 -0300 Started GET "/postino/campaigns/1/subscribers/new" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Processing by Postino::SubscribersController#new as HTML Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml within layouts/postino/empty (17.6ms) Completed 200 OK in 404ms (Views: 395.6ms | ActiveRecord: 0.7ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:32 -0300 Started GET "/postino/campaigns/1/unsubscribe" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Processing by Postino::CampaignsController#unsubscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/unsubscribe.html.haml within layouts/postino/empty (2.7ms) Completed 200 OK in 397ms (Views: 395.5ms | ActiveRecord: 0.2ms) Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:50 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:51 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:51 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:51 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:51 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:51 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:51 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:51 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:51 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:15:51 -0300 Started GET "/postino/campaigns/1/unsubscribe" for 127.0.0.1 at 2015-03-21 16:20:28 -0300 Processing by Postino::CampaignsController#unsubscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 151ms ActionView::MissingTemplate (Missing template postino/subscribers/edit with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:14:in `unsubscribe' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (25.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (64.3ms) Started GET "/postino/campaigns/1/unsubscribe" for 127.0.0.1 at 2015-03-21 16:20:45 -0300 Processing by Postino::CampaignsController#unsubscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml within layouts/postino/empty (10.8ms) Completed 500 Internal Server Error in 85ms ActionView::Template::Error (First argument in form cannot contain nil or be empty): 9: 10: %p Unsusbscribe now 11: 12: = simple_form_for(@subscriber, :url => campaign_subscribers_path(@campaign), html: {class: 'm-t', role: "form" }, :defaults => { :input_html => { :class => "form-control" }, method: :delete }) do |f| 13: 14: = @subscriber.email 15: actionview (4.2.0) lib/action_view/helpers/form_helper.rb:432:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml:12:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_subscribers_delete_haml___215857281534359041_70101517133660' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/campaigns_controller.rb:14:in `unsubscribe' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (32.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (75.6ms) Started GET "/postino/campaigns/1/subscribers/delete" for 127.0.0.1 at 2015-03-21 16:21:00 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"delete"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 101ms ActionView::MissingTemplate (Missing template postino/subscribers/show, postino/application/show with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (27.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (66.8ms) Started GET "/postino/campaigns/1/subscribers/1/delete" for 127.0.0.1 at 2015-03-21 16:21:17 -0300 Processing by Postino::SubscribersController#delete as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml within layouts/postino/empty (5.6ms) Completed 500 Internal Server Error in 16ms ActionView::Template::Error (First argument in form cannot contain nil or be empty): 9: 10: %p Unsusbscribe now 11: 12: = simple_form_for(@subscriber, :url => campaign_subscribers_path(@campaign), html: {class: 'm-t', role: "form" }, :defaults => { :input_html => { :class => "form-control" }, method: :delete }) do |f| 13: 14: = @subscriber.email 15: actionview (4.2.0) lib/action_view/helpers/form_helper.rb:432:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml:12:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_subscribers_delete_haml___215857281534359041_70101517133660' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (30.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (73.2ms) Started GET "/postino/campaigns/1/subscribers/1/delete" for 127.0.0.1 at 2015-03-21 16:22:15 -0300 Processing by Postino::SubscribersController#delete as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.7ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml within layouts/postino/empty (109.5ms) Completed 200 OK in 596ms (Views: 424.7ms | ActiveRecord: 4.0ms) Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:16 -0300 Started GET "/postino/campaigns/1/subscribers/1/delete" for 127.0.0.1 at 2015-03-21 16:22:39 -0300 Processing by Postino::SubscribersController#delete as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml within layouts/postino/empty (110.3ms) Completed 200 OK in 400ms (Views: 391.0ms | ActiveRecord: 0.7ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:22:39 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:22:39 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:22:39 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:39 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:39 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:39 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:22:40 -0300 Started PATCH "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 16:24:04 -0300 ActionController::RoutingError (No route matches [PATCH] "/postino/campaigns/1/subscribers"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (157.9ms) Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:47 -0300 Started PATCH "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 16:24:49 -0300 ActionController::RoutingError (No route matches [PATCH] "/postino/campaigns/1/subscribers"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (147.3ms) Started GET "/postino/campaigns/1/subscribers/1/delete" for 127.0.0.1 at 2015-03-21 16:24:58 -0300 Processing by Postino::SubscribersController#delete as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml within layouts/postino/empty (5.5ms) Completed 200 OK in 535ms (Views: 299.2ms | ActiveRecord: 3.9ms) Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:24:59 -0300 Started GET "/postino/campaigns/1/subscribers/1/delete" for 127.0.0.1 at 2015-03-21 16:37:03 -0300 Processing by Postino::SubscribersController#delete as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml within layouts/postino/empty (119.7ms) Completed 200 OK in 441ms (Views: 432.0ms | ActiveRecord: 0.7ms) Started PATCH "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 16:37:09 -0300 ActionController::RoutingError (No route matches [PATCH] "/postino/campaigns/1/subscribers"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (147.9ms) Started GET "/postino/campaigns/1/subscribers/1/delete" for 127.0.0.1 at 2015-03-21 16:37:23 -0300 Processing by Postino::SubscribersController#delete as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml within layouts/postino/empty (10.6ms) Completed 200 OK in 406ms (Views: 396.3ms | ActiveRecord: 0.8ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:37:24 -0300 Started DELETE "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 16:37:33 -0300 ActionController::RoutingError (No route matches [DELETE] "/postino/campaigns/1/subscribers"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (141.7ms) Started GET "/postino/campaigns/1/subscribers/1/delete" for 127.0.0.1 at 2015-03-21 16:38:08 -0300 Processing by Postino::SubscribersController#delete as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml within layouts/postino/empty (120.2ms) Completed 200 OK in 457ms (Views: 448.6ms | ActiveRecord: 0.8ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:38:08 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:38:08 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:08 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:08 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:08 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:09 -0300 Started GET "/postino/campaigns/1/subscribers/1/delete" for 127.0.0.1 at 2015-03-21 16:38:20 -0300 Processing by Postino::SubscribersController#delete as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/delete.haml within layouts/postino/empty (10.9ms) Completed 200 OK in 320ms (Views: 311.4ms | ActiveRecord: 0.7ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:38:21 -0300 Started DELETE "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:38:37 -0300 Processing by Postino::SubscribersController#destroy as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"a6Eej3TeVWAQv7tp6u+VabKWXPa2iD+loosYqR/1j/ETZHsdHACYlMcSrE0fiVZLBaQZEr6Z9QAuhnZZNBCIXQ==", "commit"=>"Unsubscribe now", "campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Completed 500 Internal Server Error in 10ms NoMethodError (undefined method `unsusbscribe!' for #): activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:43:in `destroy' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (24.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (67.5ms) Started DELETE "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:38:58 -0300 Processing by Postino::SubscribersController#destroy as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"a6Eej3TeVWAQv7tp6u+VabKWXPa2iD+loosYqR/1j/ETZHsdHACYlMcSrE0fiVZLBaQZEr6Z9QAuhnZZNBCIXQ==", "commit"=>"Unsubscribe now", "campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]]  (0.2ms) begin transaction SQL (0.5ms) UPDATE "postino_subscribers" SET "state" = ?, "updated_at" = ? WHERE "postino_subscribers"."id" = ? [["state", "unsubscribed"], ["updated_at", "2015-03-21 19:38:59.155236"], ["id", 1]]  (5.8ms) commit transaction Redirected to http://localhost:3000/ Completed 302 Found in 294ms (ActiveRecord: 10.7ms) Started GET "/" for 127.0.0.1 at 2015-03-21 16:38:59 -0300 Processing by Rails::WelcomeController#index as HTML Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (0.1ms) Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:39:14 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:39:14 -0300 Started DELETE "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:39:16 -0300 Processing by Postino::SubscribersController#destroy as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"a6Eej3TeVWAQv7tp6u+VabKWXPa2iD+loosYqR/1j/ETZHsdHACYlMcSrE0fiVZLBaQZEr6Z9QAuhnZZNBCIXQ==", "commit"=>"Unsubscribe now", "campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]]  (0.2ms) begin transaction  (0.3ms) rollback transaction Completed 500 Internal Server Error in 179ms AASM::InvalidTransition (Event 'unsuscribe' cannot transition from 'unsubscribed'): aasm (4.1.0) lib/aasm/aasm.rb:132:in `aasm_failed' aasm (4.1.0) lib/aasm/aasm.rb:81:in `aasm_fire_event' aasm (4.1.0) lib/aasm/persistence/active_record_persistence.rb:175:in `block in aasm_fire_event' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction' aasm (4.1.0) lib/aasm/persistence/active_record_persistence.rb:175:in `aasm_fire_event' aasm (4.1.0) lib/aasm/base.rb:81:in `block in event' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:43:in `destroy' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (32.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (79.6ms) Started DELETE "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:39:41 -0300 SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:46: syntax error, unexpected keyword_rescue, expecting keyword_end): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:46: syntax error, unexpected keyword_rescue, expecting keyword_end activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get' activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (19.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.3ms) Started DELETE "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:40:03 -0300 Processing by Postino::SubscribersController#destroy as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"a6Eej3TeVWAQv7tp6u+VabKWXPa2iD+loosYqR/1j/ETZHsdHACYlMcSrE0fiVZLBaQZEr6Z9QAuhnZZNBCIXQ==", "commit"=>"Unsubscribe now", "campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]]  (0.2ms) begin transaction  (0.1ms) rollback transaction Redirected to http://localhost:3000/postino/ Completed 302 Found in 162ms (ActiveRecord: 4.4ms) Started GET "/postino/" for 127.0.0.1 at 2015-03-21 16:40:04 -0300 Processing by Postino::DashboardController#show as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/dashboard/show.haml within layouts/postino/application (37.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (41.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.3ms) Completed 200 OK in 511ms (Views: 510.8ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 Started GET "/postino/assets/a2.jpg" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/a2.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (169.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 16:40:05 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (160.8ms) Started GET "/images/profile.jpg" for 127.0.0.1 at 2015-03-21 16:40:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (160.4ms) Started GET "/postino/assets/a4.jpg" for 127.0.0.1 at 2015-03-21 16:40:06 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/a4.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (161.6ms) Started GET "/postino/assets/a3.jpg" for 127.0.0.1 at 2015-03-21 16:40:06 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/a3.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (160.6ms) Started GET "/postino/assets/a5.jpg" for 127.0.0.1 at 2015-03-21 16:40:06 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/a5.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (163.6ms) Started GET "/postino/assets/profile.jpg" for 127.0.0.1 at 2015-03-21 16:40:07 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/profile.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (113.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (276.0ms) Started GET "/assets/fontawesome-webfont-e1e9796e37de923cfba919958e1e7fb0.woff?v=4.3.0" for 127.0.0.1 at 2015-03-21 16:40:07 -0300 Started GET "/postino/assets/a7.jpg" for 127.0.0.1 at 2015-03-21 16:40:07 -0300 ActionController::RoutingError (No route matches [GET] "/postino/assets/a7.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (165.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 16:40:07 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (161.5ms) Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:56 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:57 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:57 -0300 Started DELETE "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:40:58 -0300 Processing by Postino::SubscribersController#destroy as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"a6Eej3TeVWAQv7tp6u+VabKWXPa2iD+loosYqR/1j/ETZHsdHACYlMcSrE0fiVZLBaQZEr6Z9QAuhnZZNBCIXQ==", "commit"=>"Unsubscribe now", "campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]]  (0.2ms) begin transaction  (0.1ms) rollback transaction Redirected to http://localhost:3000/postino/campaigns/1 Completed 302 Found in 286ms (ActiveRecord: 4.5ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 16:40:58 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (5.9ms) Completed 200 OK in 352ms (Views: 349.8ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:40:59 -0300 Started GET "/postino/campaigns/1/subscribers/new" for 127.0.0.1 at 2015-03-21 16:41:07 -0300 Processing by Postino::SubscribersController#new as HTML Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml within layouts/postino/empty (122.5ms) Completed 200 OK in 427ms (Views: 418.1ms | ActiveRecord: 0.6ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:41:08 -0300 Started POST "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 16:41:16 -0300 Processing by Postino::SubscribersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"90FCDqpfUUxwQya6g4GOAGa4vv1gVMmD/UVCmk7d+P6PhCecwoGcuKfuMZ52500i0Yr7GWhFAyZxSCxqZTj/Ug==", "subscriber"=>{"email"=>"aaa@aaa.cl", "name"=>"aaa", "last_name"=>"aaaa"}, "commit"=>"Sign in", "campaign_id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction SQL (0.8ms) INSERT INTO "postino_subscribers" ("email", "name", "last_name", "list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "aaa@aaa.cl"], ["name", "aaa"], ["last_name", "aaaa"], ["list_id", 1], ["state", "passive"], ["created_at", "2015-03-21 19:41:16.549855"], ["updated_at", "2015-03-21 19:41:16.549855"]]  (1.8ms) commit transaction Completed 500 Internal Server Error in 25ms NoMethodError (undefined method `errors' for nil:NilClass): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:26:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.0ms) Started POST "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 16:41:33 -0300 Processing by Postino::SubscribersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"90FCDqpfUUxwQya6g4GOAGa4vv1gVMmD/UVCmk7d+P6PhCecwoGcuKfuMZ52500i0Yr7GWhFAyZxSCxqZTj/Ug==", "subscriber"=>{"email"=>"aaa@aaa.cl", "name"=>"aaa", "last_name"=>"aaaa"}, "commit"=>"Sign in", "campaign_id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "name", "last_name", "list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "aaa@aaa.cl"], ["name", "aaa"], ["last_name", "aaaa"], ["list_id", 1], ["state", "passive"], ["created_at", "2015-03-21 19:41:45.307071"], ["updated_at", "2015-03-21 19:41:45.307071"]]  (2.4ms) commit transaction  (0.2ms) begin transaction SQL (0.6ms) INSERT INTO "postino_subscribers" ("email", "name", "last_name", "list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "aaa@aaa.cl"], ["name", "aaa"], ["last_name", "aaaa"], ["list_id", 1], ["state", "passive"], ["created_at", "2015-03-21 19:42:06.356989"], ["updated_at", "2015-03-21 19:42:06.356989"]]  (6.3ms) commit transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "postino_subscribers" ("email", "name", "last_name", "list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "aaa@aaa.cl"], ["name", "aaa"], ["last_name", "aaaa"], ["list_id", 1], ["state", "passive"], ["created_at", "2015-03-21 19:42:14.009321"], ["updated_at", "2015-03-21 19:42:14.009321"]]  (6.0ms) commit transaction  (0.2ms) begin transaction SQL (0.5ms) INSERT INTO "postino_subscribers" ("email", "name", "last_name", "list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "aaa@aaa.cl"], ["name", "aaa"], ["last_name", "aaaa"], ["list_id", 1], ["state", "passive"], ["created_at", "2015-03-21 19:42:15.862025"], ["updated_at", "2015-03-21 19:42:15.862025"]]  (6.2ms) commit transaction Completed 500 Internal Server Error in 41720ms NoMethodError (undefined method `errors' for nil:NilClass): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:27:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.9ms) Started GET "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 16:42:49 -0300 AbstractController::ActionNotFound (The action 'index' could not be found for Postino::SubscribersController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (28.7ms) Started GET "/postino/campaigns/1/subscribers/1/" for 127.0.0.1 at 2015-03-21 16:42:56 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Completed 500 Internal Server Error in 833ms ActionView::MissingTemplate (Missing template postino/subscribers/show, postino/application/show with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (26.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (71.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (213.3ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:43:02 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Completed 500 Internal Server Error in 17ms ActionView::MissingTemplate (Missing template postino/subscribers/show, postino/application/show with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (34.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (80.6ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:43:14 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Completed 500 Internal Server Error in 240ms ActionView::MissingTemplate (Missing template postino/subscribers/edit, postino/application/edit with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/benchmark.rb:295:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (28.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (177.2ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:43:46 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (479.8ms) Completed 200 OK in 1311ms (Views: 1303.3ms | ActiveRecord: 0.8ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:43:47 -0300 Started PATCH "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 16:43:53 -0300 ActionController::RoutingError (No route matches [PATCH] "/postino/campaigns/1/subscribers"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (11.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (298.1ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:44:07 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (26.9ms) Completed 200 OK in 463ms (Views: 451.0ms | ActiveRecord: 0.8ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:08 -0300 Started PATCH "/postino/campaigns/1/subscribers.1" for 127.0.0.1 at 2015-03-21 16:44:10 -0300 ActionController::RoutingError (No route matches [PATCH] "/postino/campaigns/1/subscribers.1"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (150.1ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:44:17 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (33.7ms) Completed 200 OK in 508ms (Views: 499.2ms | ActiveRecord: 0.8ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:44:18 -0300 Started PATCH "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:44:20 -0300 AbstractController::ActionNotFound (The action 'update' could not be found for Postino::SubscribersController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (1.0ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:45:10 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.6ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (18.2ms) Completed 200 OK in 635ms (Views: 404.0ms | ActiveRecord: 4.0ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:45:11 -0300 Started PATCH "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:45:12 -0300 AbstractController::ActionNotFound (The action 'update' could not be found for Postino::SubscribersController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (1.2ms) Started PATCH "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:45:25 -0300 Processing by Postino::SubscribersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"w5wPLQCQq9tennbZHGrKaY4FCPXHzPJVtZbfvFvZY7y7WWq/aE5mL4kzYf3pDAlLOTdNEc/dOPA5m7FMcDxkEA==", "subscriber"=>{"email"=>"miguelmichelson@gmail.com", "name"=>"Miguel", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (1.6ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (68.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Completed 500 Internal Server Error in 10272ms NoMethodError (undefined method `update_attributes' for #): activerecord (4.2.0) lib/active_record/relation/delegation.rb:136:in `method_missing' activerecord (4.2.0) lib/active_record/relation/delegation.rb:99:in `method_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:25:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (66.6ms) Started PATCH "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:46:01 -0300 Processing by Postino::SubscribersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"w5wPLQCQq9tennbZHGrKaY4FCPXHzPJVtZbfvFvZY7y7WWq/aE5mL4kzYf3pDAlLOTdNEc/dOPA5m7FMcDxkEA==", "subscriber"=>{"email"=>"miguelmichelson@gmail.com", "name"=>"Miguel", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (2.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]]  (0.2ms) begin transaction SQL (1.7ms) UPDATE "postino_subscribers" SET "last_name" = ?, "updated_at" = ? WHERE "postino_subscribers"."id" = ? [["last_name", ""], ["updated_at", "2015-03-21 19:46:01.921286"], ["id", 1]]  (164.2ms) commit transaction Completed 500 Internal Server Error in 622ms NoMethodError (undefined method `suscribed?' for #): activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:29:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.4ms) Started PATCH "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:46:35 -0300 Processing by Postino::SubscribersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"w5wPLQCQq9tennbZHGrKaY4FCPXHzPJVtZbfvFvZY7y7WWq/aE5mL4kzYf3pDAlLOTdNEc/dOPA5m7FMcDxkEA==", "subscriber"=>{"email"=>"miguelmichelson@gmail.com", "name"=>"Miguel", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (1.1ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]]  (0.2ms) begin transaction  (0.1ms) commit transaction  (0.1ms) begin transaction SQL (0.8ms) UPDATE "postino_subscribers" SET "state" = ?, "updated_at" = ? WHERE "postino_subscribers"."id" = ? [["state", "subscribed"], ["updated_at", "2015-03-21 19:46:35.869292"], ["id", 1]]  (5.7ms) commit transaction Redirected to http://localhost:3000/ Completed 302 Found in 163ms (ActiveRecord: 11.3ms) Started GET "/" for 127.0.0.1 at 2015-03-21 16:46:35 -0300 Processing by Rails::WelcomeController#index as HTML Rendered /Users/michelsonmartinez/.rvm/gems/ruby-1.9.3-p327/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (1.7ms) Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:46:54 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (104.5ms) Completed 200 OK in 540ms (Views: 395.8ms | ActiveRecord: 3.8ms) Started PATCH "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:46:57 -0300 Processing by Postino::SubscribersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"fXHp+cmyzVNw4Ou9ooxKlLUkO2GPNEaSmRUHz1AOBAEFtIxroWwAp6dN/JlX6om2AhZ+hYcljDcVGGk/e+sDrQ==", "subscriber"=>{"email"=>"miguelmichelson@gmail.com", "name"=>"Miguel", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]]  (0.1ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3000/postino/campaigns/1 Completed 302 Found in 40ms (ActiveRecord: 0.9ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 16:46:57 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (5.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (16.6ms) Completed 200 OK in 484ms (Views: 481.0ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:46:58 -0300 Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 16:55:39 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (44.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (78.8ms) Completed 200 OK in 1272ms (Views: 919.4ms | ActiveRecord: 9.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 16:55:41 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:55:42 -0300 Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 16:59:15 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."id" = ? LIMIT 1 [["list_id", 1], ["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (533.0ms) Completed 200 OK in 1293ms (Views: 894.8ms | ActiveRecord: 3.4ms) Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:16 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:17 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:17 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:17 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 16:59:17 -0300 Started PATCH "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 17:44:27 -0300 Processing by Postino::SubscribersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"iDt3fXBd+lcer0999e6tlPt70s4pmj8fffNX3n+HEp3w/hLvGIM3o8kCWFkAiG62TEmXKiGL9brx/jkuVGIVMQ==", "subscriber"=>{"email"=>"miguelmichelson@gmail.com", "name"=>"Miguel", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 417ms NameError (uninitialized constant Postino::SubscribersController::Base32): /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:66:in `find_subscriber' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:25:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (26.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (91.4ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 17:44:50 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (3.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", ""]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (234.0ms) Completed 200 OK in 1188ms (Views: 900.7ms | ActiveRecord: 6.6ms) Started GET "/postino/campaigns/1/subscribers/oijoij" for 127.0.0.1 at 2015-03-21 17:45:15 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"oijoij"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (3.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", "J"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (5.8ms) Completed 500 Internal Server Error in 47ms ActionView::Template::Error (No route matches {:action=>"show", :campaign_id=>#

    ", query_string: "", scheduled_at: "2015-03-19 04:54:00", timezone: "(GMT-10:00) Hawaii", state: nil, recipients_count: nil, sent: nil, opens_count: nil, clicks_count: nil, parent_id: nil, created_at: "2015-03-18 05:18:00", updated_at: "2015-03-19 04:57:52", list_id: 1, template_id: 1, name: "una campaña">, :controller=>"postino/subscribers", :format=>nil, :id=>nil} missing required keys: [:id]): 11: 12: Update your subscription settings 13: 14: = simple_form_for(@subscriber, :url => campaign_subscriber_path(@campaign, @subscriber), html: {class: 'm-t', role: "form" }, :defaults => { :input_html => { :class => "form-control" } }) do |f| 15: 16: .form-group 17: = f.input :email, :required => false, :autofocus => true, :label=> false, :placeholder=> "email" actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml:14:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_subscribers_edit_haml___2247180234275351773_2157590300' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:13:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (58.3ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 17:46:42 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (3.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", ""]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (17.3ms) Completed 200 OK in 248ms (Views: 238.6ms | ActiveRecord: 3.4ms) Started GET "/postino/campaigns/1/subscribers/2" for 127.0.0.1 at 2015-03-21 17:46:53 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"2"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (3.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", ""]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (21.5ms) Completed 200 OK in 282ms (Views: 269.1ms | ActiveRecord: 4.0ms) Started PATCH "/postino/campaigns/1/subscribers/2060" for 127.0.0.1 at 2015-03-21 17:47:30 -0300 Processing by Postino::SubscribersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"TD3x/s+Z4CIUlvUhVBUYyJGVWzyWeQWRR6ZfS+Jx0x00+JRsp0ct1sM74gWhc9vqJqce2J5ozzTLqzG7yZTUsQ==", "subscriber"=>{"email"=>"", "name"=>"Alejzza", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1", "id"=>"2060"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 29ms Encoding::UndefinedConversionError ("\xF7" from ASCII-8BIT to UTF-8): activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:56:in `encode' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:56:in `type_cast_for_database' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/quoting.rb:28:in `type_cast' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:294:in `block in exec_query' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `map' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:336:in `select' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.2.0) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.2.0) lib/active_record/relation.rb:638:in `exec_queries' activerecord (4.2.0) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.2.0) lib/active_record/relation.rb:514:in `load' activerecord (4.2.0) lib/active_record/relation.rb:243:in `to_a' activerecord (4.2.0) lib/active_record/relation/finder_methods.rb:487:in `find_take' activerecord (4.2.0) lib/active_record/relation/finder_methods.rb:105:in `take' activerecord (4.2.0) lib/active_record/relation/finder_methods.rb:84:in `find_by' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:66:in `find_subscriber' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:25:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (56.6ms) Started GET "/postino/campaigns/1/subscribers/2" for 127.0.0.1 at 2015-03-21 17:47:40 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"2"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (2.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", ""]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (13.4ms) Completed 200 OK in 238ms (Views: 230.8ms | ActiveRecord: 2.3ms) Started PATCH "/postino/campaigns/1/subscribers/2060" for 127.0.0.1 at 2015-03-21 17:48:14 -0300 Processing by Postino::SubscribersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7JH6jwHpHngsaCMAVpi4i4zTQUDw2r0iIKVUQqeqOLWUVJ8daTfTjPvFNCSj/nupO+EEpPjLd4esqDqyjE8/GQ==", "subscriber"=>{"email"=>"", "name"=>"Alejzza", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1", "id"=>"2060"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 112ms ArgumentError (Unknown validator: 'PrescenseValidator'): activemodel (4.2.0) lib/active_model/validations/validates.rb:120:in `rescue in block in validates' activemodel (4.2.0) lib/active_model/validations/validates.rb:117:in `block in validates' activemodel (4.2.0) lib/active_model/validations/validates.rb:113:in `each' activemodel (4.2.0) lib/active_model/validations/validates.rb:113:in `validates' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/subscriber.rb:10:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/subscriber.rb:4:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/subscriber.rb:3:in `' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.0) lib/active_support/dependencies.rb:526:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:304:in `safe_constantize' activesupport (4.2.0) lib/active_support/dependencies.rb:572:in `safe_get' activesupport (4.2.0) lib/active_support/dependencies.rb:603:in `safe_constantize' activerecord (4.2.0) lib/active_record/inheritance.rb:154:in `block in compute_type' activerecord (4.2.0) lib/active_record/inheritance.rb:153:in `each' activerecord (4.2.0) lib/active_record/inheritance.rb:153:in `compute_type' activerecord (4.2.0) lib/active_record/reflection.rb:271:in `compute_class' activerecord (4.2.0) lib/active_record/reflection.rb:267:in `klass' activerecord (4.2.0) lib/active_record/reflection.rb:505:in `automatic_inverse_of' activerecord (4.2.0) lib/active_record/reflection.rb:494:in `block in inverse_name' activerecord (4.2.0) lib/active_record/reflection.rb:490:in `fetch' activerecord (4.2.0) lib/active_record/reflection.rb:490:in `inverse_name' activerecord (4.2.0) lib/active_record/reflection.rb:387:in `has_inverse?' activerecord (4.2.0) lib/active_record/reflection.rb:336:in `check_validity_of_inverse!' activerecord (4.2.0) lib/active_record/reflection.rb:331:in `check_validity!' activerecord (4.2.0) lib/active_record/associations/association.rb:25:in `initialize' activerecord (4.2.0) lib/active_record/associations.rb:161:in `new' activerecord (4.2.0) lib/active_record/associations.rb:161:in `association' activerecord (4.2.0) lib/active_record/associations/builder/association.rb:115:in `subscribers' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:66:in `find_subscriber' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:25:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.7ms) Started PATCH "/postino/campaigns/1/subscribers/2060" for 127.0.0.1 at 2015-03-21 17:48:30 -0300 Processing by Postino::SubscribersController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7JH6jwHpHngsaCMAVpi4i4zTQUDw2r0iIKVUQqeqOLWUVJ8daTfTjPvFNCSj/nupO+EEpPjLd4esqDqyjE8/GQ==", "subscriber"=>{"email"=>"", "name"=>"Alejzza", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1", "id"=>"2060"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Completed 500 Internal Server Error in 88ms Encoding::UndefinedConversionError ("\xF7" from ASCII-8BIT to UTF-8): activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:56:in `encode' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:56:in `type_cast_for_database' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/quoting.rb:28:in `type_cast' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:294:in `block in exec_query' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `map' activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:336:in `select' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all' activerecord (4.2.0) lib/active_record/querying.rb:39:in `find_by_sql' activerecord (4.2.0) lib/active_record/relation.rb:638:in `exec_queries' activerecord (4.2.0) lib/active_record/association_relation.rb:19:in `exec_queries' activerecord (4.2.0) lib/active_record/relation.rb:514:in `load' activerecord (4.2.0) lib/active_record/relation.rb:243:in `to_a' activerecord (4.2.0) lib/active_record/relation/finder_methods.rb:487:in `find_take' activerecord (4.2.0) lib/active_record/relation/finder_methods.rb:105:in `take' activerecord (4.2.0) lib/active_record/relation/finder_methods.rb:84:in `find_by' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:66:in `find_subscriber' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/subscribers_controller.rb:25:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (14.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.3ms) Started GET "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 17:48:37 -0300 AbstractController::ActionNotFound (The action 'index' could not be found for Postino::SubscribersController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (0.8ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 17:48:40 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.6ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (58.9ms) Completed 200 OK in 285ms (Views: 282.2ms | ActiveRecord: 0.6ms) Started GET "/postino/campaigns/1/subscribers/new" for 127.0.0.1 at 2015-03-21 17:48:43 -0300 Processing by Postino::SubscribersController#new as HTML Parameters: {"campaign_id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml within layouts/postino/empty (18.5ms) Completed 200 OK in 248ms (Views: 235.2ms | ActiveRecord: 0.6ms) Started POST "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 17:48:52 -0300 Processing by Postino::SubscribersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"HfeeD4vfte9CQMCNZpelDDhKBuxXWT8/mietBnO3EAxlMvud4wF4G5Xt16mT8WYuj3hDCF9I9ZoWKsP2WFIXoA==", "subscriber"=>{"email"=>"mi@mgk.cl", "name"=>"", "last_name"=>""}, "commit"=>"Sign in", "campaign_id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction  (0.1ms) commit transaction Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/new.html.haml within layouts/postino/empty (29.9ms) Completed 200 OK in 256ms (Views: 245.9ms | ActiveRecord: 0.7ms) Started POST "/postino/campaigns/1/subscribers" for 127.0.0.1 at 2015-03-21 17:48:55 -0300 Processing by Postino::SubscribersController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"yaJIqVv1boVfmVyQWFmmMcyqht4Z4+xuwOtOb1iBf4qxZy07MyujcYg0S7StP2UTe5jDOhHyJstM5iCfc2R4Jg==", "subscriber"=>{"email"=>"mi@mgk.cl", "name"=>"oijoij", "last_name"=>"oijoij"}, "commit"=>"Sign in", "campaign_id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction SQL (11.8ms) INSERT INTO "postino_subscribers" ("email", "name", "last_name", "list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "mi@mgk.cl"], ["name", "oijoij"], ["last_name", "oijoij"], ["list_id", 1], ["state", "passive"], ["created_at", "2015-03-21 20:48:55.986119"], ["updated_at", "2015-03-21 20:48:55.986119"]]  (3.3ms) commit transaction Redirected to http://localhost:3000/postino/campaigns/1 Completed 302 Found in 29ms (ActiveRecord: 15.8ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 17:48:56 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (3.3ms) Completed 200 OK in 217ms (Views: 216.2ms | ActiveRecord: 0.2ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 17:49:30 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (3.6ms) Completed 200 OK in 231ms (Views: 229.3ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 17:49:36 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (70.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (47.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (5.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (2.4ms) Completed 200 OK in 393ms (Views: 391.6ms | ActiveRecord: 0.2ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 17:49:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (16.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (142.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 17:49:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (126.1ms) Started GET "/assets/fontawesome-webfont-e1e9796e37de923cfba919958e1e7fb0.woff?v=4.3.0" for 127.0.0.1 at 2015-03-21 17:49:37 -0300 Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 17:49:37 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.7ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 17:52:11 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (12.0ms) Completed 500 Internal Server Error in 19ms ActionView::Template::Error (The line was indented 2 levels deeper than the previous line.): 199: Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical 200: - @campaign.metrics.each do |m| 201: %tr 202: %td 203: %span.label.label-primary 204: %i.fa.fa-check 205: Sent /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml:202 haml (4.0.6) lib/haml/parser.rb:128:in `parse' haml (4.0.6) lib/haml/engine.rb:66:in `initialize' haml (4.0.6) lib/haml/template/plugin.rb:25:in `new' haml (4.0.6) lib/haml/template/plugin.rb:25:in `compile' haml (4.0.6) lib/haml/template/plugin.rb:30:in `call' actionview (4.2.0) lib/action_view/template.rb:270:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.0) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (19.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (47.3ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 17:52:21 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Metric Load (0.4ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (75.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 344ms (Views: 342.0ms | ActiveRecord: 1.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 17:52:21 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (117.5ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 17:52:21 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 17:52:21 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.6ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 17:53:32 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (104.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 417ms (Views: 415.4ms | ActiveRecord: 1.1ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 17:53:33 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 17:53:33 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 17:53:33 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (116.2ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 17:54:39 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (85.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 390ms (Views: 387.8ms | ActiveRecord: 1.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 17:54:40 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.8ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 17:54:40 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 17:54:40 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (116.1ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 17:54:50 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (99.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 431ms (Views: 428.9ms | ActiveRecord: 1.1ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 17:54:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 17:54:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (126.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 17:54:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (117.3ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 17:55:15 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] Postino::Metric Load (0.6ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (83.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 382ms (Views: 379.7ms | ActiveRecord: 1.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 17:55:16 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.9ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 17:55:16 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (17.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (118.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 17:55:16 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.1ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 18:01:31 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]]  (90.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (340.1ms) Completed 500 Internal Server Error in 415ms ActionView::Template::Error (undefined method `metrics' for #): 51: %dt Completed: 52: %dd 53: .progress.progress-striped.active.m-b-sm 54: .progress-bar{:style => "width: #{@campaign.delivery_progress}%;"} 55: %small 56: Deliveries completed in 57: %strong "#{@campaign.delivery_progress}%" activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/campaign.rb:27:in `delivery_progress' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml:54:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_show_haml___4403847933741157732_2172484560' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (57.7ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 18:01:49 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]]  (1.1ms) SELECT COUNT(*) FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? [["id", 1]] Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (104.8ms) Completed 500 Internal Server Error in 148ms ActionView::Template::Error (undefined method `to_f' for #): 51: %dt Completed: 52: %dd 53: .progress.progress-striped.active.m-b-sm 54: .progress-bar{:style => "width: #{@campaign.delivery_progress}%;"} 55: %small 56: Deliveries completed in 57: %strong "#{@campaign.delivery_progress}%" activerecord (4.2.0) lib/active_record/relation/delegation.rb:136:in `method_missing' activerecord (4.2.0) lib/active_record/relation/delegation.rb:99:in `method_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/campaign.rb:27:in `delivery_progress' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml:54:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaigns_show_haml___4403847933741157732_2172484560' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (41.5ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 18:02:01 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]]  (1.5ms) SELECT COUNT(*) FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? [["id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" INNER JOIN "postino_lists" ON "postino_subscribers"."list_id" = "postino_lists"."id" WHERE "postino_lists"."id" = ? [["id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (118.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 438ms (Views: 395.9ms | ActiveRecord: 6.6ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:02 -0300 Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 18:02:03 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (122.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:02:03 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (114.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:02:03 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.7ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 18:02:50 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (1.0ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (144.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 486ms (Views: 443.8ms | ActiveRecord: 5.6ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:02:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.6ms) Started GET "/postino/manage/campaigns/1/edit" for 127.0.0.1 at 2015-03-21 18:04:02 -0300 AbstractController::ActionNotFound (The action 'edit' could not be found for Postino::Manage::CampaignsController): actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (1.1ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 18:04:06 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.2ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (80.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 340ms (Views: 337.0ms | ActiveRecord: 1.6ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.1ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:04:07 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.1ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.8ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (104.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 478ms (Views: 475.0ms | ActiveRecord: 2.3ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:11 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:12 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:12 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:12 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:12 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:12 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:05:12 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:05:12 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (131.9ms) Started GET "/images/zender_logo.png" for 127.0.0.1 at 2015-03-21 18:05:12 -0300 ActionController::RoutingError (No route matches [GET] "/images/zender_logo.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (123.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:05:12 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (166.3ms) ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePostinoSettings (20150321205815)  (0.2ms) begin transaction  (0.8ms) CREATE TABLE "postino_settings" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "config" text, "campaign_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)   (0.1ms) select sqlite_version(*)  (0.3ms) CREATE INDEX "index_postino_settings_on_campaign_id" ON "postino_settings" ("campaign_id") SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150321205815"]]  (2.3ms) commit transaction Migrating to AddDescriptionToCampaign (20150321210329)  (0.1ms) begin transaction  (0.4ms) ALTER TABLE "campaigns" ADD "description" text SQLite3::SQLException: no such table: campaigns: ALTER TABLE "campaigns" ADD "description" text  (0.1ms) rollback transaction ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to AddDescriptionToCampaign (20150321210329)  (0.3ms) begin transaction  (1.2ms) ALTER TABLE "postino_campaigns" ADD "description" text  (0.5ms) ALTER TABLE "postino_campaigns" ADD "logo" strings SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150321210329"]]  (1.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (34.8ms) SELECT sql FROM sqlite_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_attachments_on_campaign_id' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_campaign_templates_on_template_id' AND type='index'  (0.5ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_metrics_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_metrics_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_metrics_on_trackable_type_and_trackable_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_metrics_on_trackable_type_and_trackable_id' AND type='index'  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_postino_settings_on_campaign_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_settings_on_campaign_id' AND type='index'   (0.2ms) SELECT sql FROM sqlite_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_postino_subscribers_on_list_id' AND type='index' Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 18:06:37 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.5ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.5ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (153.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (43.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 675ms (Views: 573.2ms | ActiveRecord: 4.7ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (134.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:06:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.3ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 18:07:40 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.2ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (28.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (55.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 340ms (Views: 337.6ms | ActiveRecord: 1.6ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:07:41 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (117.1ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:07:43 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (13.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (6.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (613.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 942ms (Views: 940.7ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:07:44 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:07:44 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:44 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:44 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:44 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:44 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:44 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:07:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:07:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (186.4ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 18:07:49 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.1ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (53.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 320ms (Views: 318.0ms | ActiveRecord: 1.0ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:07:49 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:07:49 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:07:49 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:07:49 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.9ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:07:52 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (4.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (91.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 346ms (Views: 344.2ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:07:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:07:53 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.6ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:08:05 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (8.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (117.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 393ms (Views: 391.6ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:08:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (116.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:08:06 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (115.0ms) Started PATCH "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:08:29 -0300 Processing by Postino::Manage::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"SjPzHXzvknRLAO86v102rf0gjrTrhznY+Qu14bxXeFgy9paPFDFfgJyt+B5KO/WPShLLUOOW8311BtsRl7J/9A==", "campaign"=>{"name"=>"una campaña", "subject"=>"censo", "from_name"=>"miguel", "from_email"=>"miguelmichelson@gmail.com", "reply_email"=>"miguelmichelson@gmail.com", "query_string"=>"", "scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"3", "scheduled_at(3i)"=>"19", "scheduled_at(4i)"=>"04", "scheduled_at(5i)"=>"54", "timezone"=>"(GMT-10:00) Hawaii", "description"=>"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt aperiam a molestiae maxime labore eaque praesentium quibusdam nobis nihil distinctio. Cumque optio vero accusantium, numquam iusto tenetur aliquam delectus facilis?", "created_at(1i)"=>"2015", "created_at(2i)"=>"3", "created_at(3i)"=>"18", "created_at(4i)"=>"05", "created_at(5i)"=>"18", "updated_at(1i)"=>"2015", "updated_at(2i)"=>"3", "updated_at(3i)"=>"19", "updated_at(4i)"=>"04", "updated_at(5i)"=>"57"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) begin transaction SQL (0.5ms) UPDATE "postino_campaigns" SET "description" = ?, "updated_at" = ? WHERE "postino_campaigns"."id" = ? [["description", "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt aperiam a molestiae maxime labore eaque praesentium quibusdam nobis nihil distinctio. Cumque optio vero accusantium, numquam iusto tenetur aliquam delectus facilis?"], ["updated_at", "2015-03-19 04:57:00.000000"], ["id", 1]]  (2.2ms) commit transaction  (0.2ms) begin transaction  (0.3ms) commit transaction Redirected to http://localhost:3000/postino/manage/campaigns/1/wizard/template Completed 302 Found in 19ms (ActiveRecord: 3.5ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-21 18:08:29 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.2ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (59.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (26.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 303ms (Views: 299.5ms | ActiveRecord: 0.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:08:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:08:30 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.0ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (8.0ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (26.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 318ms (Views: 316.5ms | ActiveRecord: 0.6ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:08:37 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.8ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 18:08:39 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.1ms) Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (31.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 315ms (Views: 313.1ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:08:40 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.3ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:08:41 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (87.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (27.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 352ms (Views: 349.8ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:08:42 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (132.6ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (65.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 312ms (Views: 311.0ms | ActiveRecord: 0.2ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:08:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:09:00 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.5ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (31.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 325ms (Views: 323.3ms | ActiveRecord: 0.2ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:09:01 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (14.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (119.4ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.1ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (32.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 291ms (Views: 288.8ms | ActiveRecord: 0.8ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:31 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:32 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:32 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:32 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:32 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:09:32 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:09:32 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.0ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:09:37 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (74.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 345ms (Views: 343.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:09:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.8ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (74.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 355ms (Views: 353.2ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:10:36 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.9ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (80.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 372ms (Views: 370.7ms | ActiveRecord: 0.2ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:10:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.1ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (80.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 352ms (Views: 350.6ms | ActiveRecord: 0.2ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (130.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:10:59 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.5ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (8.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (81.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.3ms) Completed 200 OK in 365ms (Views: 363.4ms | ActiveRecord: 0.2ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:11:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:11:07 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.5ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (81.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 369ms (Views: 368.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:11:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:11:31 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.8ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:11:43 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (82.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 365ms (Views: 363.8ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:11:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (17.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.7ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (83.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 369ms (Views: 367.3ms | ActiveRecord: 0.2ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:53 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:54 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:54 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:54 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:54 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:54 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:11:54 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:11:54 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (114.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:11:54 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.0ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.9ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (47.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 295ms (Views: 293.1ms | ActiveRecord: 0.5ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:12:03 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.3ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (82.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.4ms) Completed 200 OK in 388ms (Views: 386.4ms | ActiveRecord: 0.2ms) Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:12:58 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.5ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (72.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 365ms (Views: 363.2ms | ActiveRecord: 0.2ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:14:43 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (173.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:14:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (18.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.8ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 18:14:47 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.1ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (34.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 292ms (Views: 290.2ms | ActiveRecord: 0.9ms) Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:47 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:47 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:47 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:14:47 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:14:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:14:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.0ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-21 18:14:48 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.4ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (29.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 327ms (Views: 324.9ms | ActiveRecord: 0.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:14:49 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (118.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:14:49 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.7ms) Started GET "/postino/manage/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-21 18:14:50 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (6.5ms) Completed 500 Internal Server Error in 14ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:16: syntax error, unexpected ')' ));}\n #{ ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:18: syntax error, unexpected '}', expecting keyword_end ));}\n #{ ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:20: syntax error, unexpected '}', expecting keyword_end ));}\n #{ ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:23: syntax error, unexpected '}', expecting keyword_end ));}\n
    \n
    \n\n
    \n
    \n", -3, false);::Haml... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:23: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:23: syntax error, unexpected end-of-input, expecting keyword_end): /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:16: syntax error, unexpected ')' ));}\n #{ ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:18: syntax error, unexpected '}', expecting keyword_end ));}\n #{ ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:20: syntax error, unexpected '}', expecting keyword_end ));}\n #{ ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:23: syntax error, unexpected '}', expecting keyword_end ));}\n
    \n
    \n\n
    \n
    \n", -3, false);::Haml... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:23: unterminated regexp meets end of file /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:23: syntax error, unexpected end-of-input, expecting keyword_end actionview (4.2.0) lib/action_view/template.rb:296:in `module_eval' actionview (4.2.0) lib/action_view/template.rb:296:in `compile' actionview (4.2.0) lib/action_view/template.rb:245:in `block (2 levels) in compile!' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:244:in `block in compile!' actionview (4.2.0) lib/action_view/template.rb:232:in `synchronize' actionview (4.2.0) lib/action_view/template.rb:232:in `compile!' actionview (4.2.0) lib/action_view/template.rb:144:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.8ms) Started GET "/postino/manage/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (28.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (47.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 303ms (Views: 301.4ms | ActiveRecord: 0.2ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:36 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:15:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (112.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:15:37 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.6ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 18:15:39 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (24.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 307ms (Views: 305.1ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:15:40 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (90.1ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (16.4ms) Completed 200 OK in 261ms (Views: 259.6ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:37 -0300 Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 18:18:41 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (17.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (28.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 293ms (Views: 291.9ms | ActiveRecord: 0.2ms) Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:18:42 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.9ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 18:19:43 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.7ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (30.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 370ms (Views: 367.3ms | ActiveRecord: 0.7ms) Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:19:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (119.1ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 18:20:04 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (10.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 305ms (Views: 304.1ms | ActiveRecord: 0.2ms) Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:20:04 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:20:04 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:20:04 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:20:04 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:20:04 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:20:04 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:20:04 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:20:04 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:20:04 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (116.5ms) Started GET "/postino/campaigns/1" for 127.0.0.1 at 2015-03-21 18:21:18 -0300 Processing by Postino::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/shared/_flashes.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/show.haml within layouts/postino/empty (4.6ms) Completed 200 OK in 274ms (Views: 272.8ms | ActiveRecord: 0.2ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 18:21:19 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (9.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 348ms (Views: 346.9ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:21:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:21:20 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (130.5ms) Started GET "/postino/manage/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-21 18:21:24 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 293ms (Views: 291.8ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:21:24 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:21:24 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.3ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-21 18:21:26 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.8ms) Postino::Template Load (0.7ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (25.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 309ms (Views: 306.2ms | ActiveRecord: 1.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:21:26 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:21:27 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (119.0ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-21 18:21:32 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (10.8ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (27.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 314ms (Views: 312.6ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:21:32 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:21:32 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (139.8ms) Started GET "/postino/manage/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-21 18:23:19 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (9.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (24.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 334ms (Views: 331.1ms | ActiveRecord: 0.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:23:21 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (116.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:23:21 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (115.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:23:21 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (116.2ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 18:23:26 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.6ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (29.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 304ms (Views: 302.0ms | ActiveRecord: 0.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:23:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:23:27 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 18:23:29 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 301ms (Views: 299.4ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:23:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:23:30 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (117.7ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 18:23:35 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (5.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 264ms (Views: 263.0ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:23:35 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:23:35 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.9ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 18:23:37 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (153.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 440ms (Views: 433.1ms | ActiveRecord: 1.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:23:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:23:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.1ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 18:23:50 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (59.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 332ms (Views: 327.5ms | ActiveRecord: 1.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:23:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:23:50 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (122.4ms) Started GET "/postino/manage/lists/2" for 127.0.0.1 at 2015-03-21 18:23:57 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (5.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 262ms (Views: 259.1ms | ActiveRecord: 0.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:23:57 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:23:58 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.0ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:24:00 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (39.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (43.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.3ms) Completed 200 OK in 337ms (Views: 336.2ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:24:01 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:24:01 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.3ms) Started PATCH "/postino/manage/lists/2" for 127.0.0.1 at 2015-03-21 18:24:07 -0300 Processing by Postino::Manage::ListsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"xH8usVRlXYwynBjA2+KEQln0ETd9DsbXdsHxHgCHZ2y8uksjPLuQeOUxD+QuhEdg7sZU03UfDHL6zJ/uK2JgwA==", "list"=>{"name"=>"test"}, "commit"=>"crear", "id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 4ms ArgumentError (When assigning attributes, you must pass a hash as an argument.): activerecord (4.2.0) lib/active_record/attribute_assignment.rb:25:in `assign_attributes' activerecord (4.2.0) lib/active_record/persistence.rb:249:in `block in update' activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.0) lib/active_record/persistence.rb:248:in `update' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/lists_controller.rb:25:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (37.6ms) Started PATCH "/postino/manage/lists/2" for 127.0.0.1 at 2015-03-21 18:24:38 -0300 Processing by Postino::Manage::ListsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"xH8usVRlXYwynBjA2+KEQln0ETd9DsbXdsHxHgCHZ2y8uksjPLuQeOUxD+QuhEdg7sZU03UfDHL6zJ/uK2JgwA==", "list"=>{"name"=>"test"}, "commit"=>"crear", "id"=>"2"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) begin transaction SQL (0.5ms) UPDATE "postino_lists" SET "name" = ?, "updated_at" = ? WHERE "postino_lists"."id" = ? [["name", "test"], ["updated_at", "2015-03-21 21:24:38.920550"], ["id", 2]]  (76.0ms) commit transaction Redirected to http://localhost:3000/postino/manage/lists Completed 302 Found in 101ms (ActiveRecord: 78.4ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (5.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 301ms (Views: 300.0ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:24:39 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (79.4ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:24:42 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (1.1ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (3.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (5.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 258ms (Views: 255.7ms | ActiveRecord: 1.1ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:24:43 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.4ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (2.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (8.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.4ms) Completed 200 OK in 345ms (Views: 343.2ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:23 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:24 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:24 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:24 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:24 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:24 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:24 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:24 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:25:24 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:25:24 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (114.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:25:24 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.0ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:26:24 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (153.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (155.9ms) Completed 500 Internal Server Error in 164ms ActionView::Template::Error (undefined method `name' for #): 1: = form_for ["manage", @list] do |f| 2: = f.text_field :name 3: = f.fields_for :subscribers do |f| 4: = f.name 5: = f.last_name 6: = f.email 7: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:4:in `block (2 levels) in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml__474855597938868795_2157944660' haml (4.0.6) lib/haml/helpers.rb:368:in `call' haml (4.0.6) lib/haml/helpers.rb:368:in `block in capture_haml' haml (4.0.6) lib/haml/helpers.rb:608:in `with_haml_buffer' haml (4.0.6) lib/haml/helpers.rb:364:in `capture_haml' haml (4.0.6) lib/haml/helpers/xss_mods.rb:61:in `capture_haml_with_haml_xss' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:45:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:714:in `fields_for' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1598:in `fields_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:3:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml__474855597938868795_2157944660' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml__474855597938868795_2157944660' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml:12:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists_edit_haml__776739187095594317_2269268200' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (19.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (51.3ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:29:07 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (114.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (116.7ms) Completed 500 Internal Server Error in 121ms ActionView::Template::Error (undefined method `name' for #): 1: = form_for ["manage", @list] do |f| 2: = f.text_field :name 3: = f.fields_for :subscribers do |f| 4: = f.name 5: = f.last_name 6: = f.email 7: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:4:in `block (2 levels) in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml__474855597938868795_2157944660' haml (4.0.6) lib/haml/helpers.rb:368:in `call' haml (4.0.6) lib/haml/helpers.rb:368:in `block in capture_haml' haml (4.0.6) lib/haml/helpers.rb:608:in `with_haml_buffer' haml (4.0.6) lib/haml/helpers.rb:364:in `capture_haml' haml (4.0.6) lib/haml/helpers/xss_mods.rb:61:in `capture_haml_with_haml_xss' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:45:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:714:in `fields_for' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1598:in `fields_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:3:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml__474855597938868795_2157944660' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml__474855597938868795_2157944660' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml:12:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists_edit_haml__776739187095594317_2269268200' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.1ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:31:02 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (272.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (275.2ms) Completed 500 Internal Server Error in 302ms ActionView::Template::Error (undefined method `link_to_add_association' for #<#:0x00000107e77608>): 6: = f.email 7: 8: 9: = link_to_add_association 'Agregar', f, :subscribers 10: = f.semantic_fields_for :subscribers do |u| 11: = render "subcribers_fields", :f => u 12: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:9:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml__474855597938868795_2213816920' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml__474855597938868795_2213816920' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml:12:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists_edit_haml__776739187095594317_2269268200' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.1ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:32:44 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (41.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (44.0ms) Completed 500 Internal Server Error in 50ms ActionView::Template::Error (undefined method `link_to_add_association' for #<#:0x00000108c73770>): 6: = f.email 7: 8: 9: = link_to_add_association 'Agregar', f, :subscribers 10: = f.semantic_fields_for :subscribers do |u| 11: = render "subcribers_fields", :f => u 12: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:9:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml__474855597938868795_2213816920' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml__474855597938868795_2213816920' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml:12:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists_edit_haml__776739187095594317_2269268200' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.0ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:33:13 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (107.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (442.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (460.6ms) Completed 500 Internal Server Error in 623ms ActionView::Template::Error (undefined method `semantic_fields_for' for #): 7: 8: 9: = link_to_add_association 'Agregar', f, :subscribers 10: = f.semantic_fields_for :subscribers do |u| 11: = render "subcribers_fields", :f => u 12: 13: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:10:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml___1715157537147688273_2214626060' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml___1715157537147688273_2214626060' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml:12:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists_edit_haml___2537989908863802398_2202061540' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (34.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (65.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (136.8ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:33:23 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (33.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (35.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (43.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (5.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (2.8ms) Completed 200 OK in 602ms (Views: 601.0ms | ActiveRecord: 0.4ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/assets/postino/application-9c4c38a0eed72b9816431cd4aa3bf507.js?body=1" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (19.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (159.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:33:24 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.5ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:33:45 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (37.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (39.4ms) Completed 500 Internal Server Error in 161ms ActionView::Template::Error (couldn't find file 'coccon' (in /Users/michelsonmartinez/Documents/ruby/postino/app/assets/javascripts/postino/application.js:20)): 39: / Main css styles 40: = stylesheet_link_tag 'postino/application', media: 'all', 'data-turbolinks-track' => true 41: / Main javascript files 42: = javascript_include_tag 'postino/application', 'data-turbolinks-track' => true 43: = csrf_meta_tags 44: %body 45: / Skin configuration box sprockets (2.12.3) lib/sprockets/context.rb:106:in `resolve' sprockets (2.12.3) lib/sprockets/context.rb:146:in `require_asset' sprockets (2.12.3) lib/sprockets/directive_processor.rb:217:in `process_require_directive' sprockets (2.12.3) lib/sprockets/directive_processor.rb:167:in `block in process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `each' sprockets (2.12.3) lib/sprockets/directive_processor.rb:165:in `process_directives' sprockets (2.12.3) lib/sprockets/directive_processor.rb:99:in `evaluate' tilt (1.4.1) lib/tilt/template.rb:103:in `render' sprockets (2.12.3) lib/sprockets/context.rb:197:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:37:in `init_with' sprockets (2.12.3) lib/sprockets/asset.rb:24:in `from_hash' sprockets (2.12.3) lib/sprockets/caching.rb:54:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:137:in `block in javascript_include_tag' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `map' sprockets-rails (2.2.4) lib/sprockets/rails/helper.rb:136:in `javascript_include_tag' /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/application.html.haml:42:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_layouts_postino_application_html_haml___2384688348036686858_2202124060' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (18.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.3ms) Started GET "/postino/manage/lists/2/edit" for 127.0.0.1 at 2015-03-21 18:34:00 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (35.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (38.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 541ms (Views: 539.9ms | ActiveRecord: 0.4ms) Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:34:01 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (13.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (158.9ms) Started PATCH "/postino/manage/lists/2" for 127.0.0.1 at 2015-03-21 18:34:08 -0300 Processing by Postino::Manage::ListsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Z1Gs52RJrD5UW/coGPIH4HVrR+QGT/VqAGndm7UVa88flMl1DJdhyoP24AztlMTCwlkCAA5eP8+MZLNrnvBsYw==", "list"=>{"name"=>"test"}, "commit"=>"crear", "id"=>"2"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 2]]  (0.1ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3000/postino/manage/lists Completed 302 Found in 5ms (ActiveRecord: 0.4ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 18:34:08 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0 Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (31.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 316ms (Views: 315.2ms | ActiveRecord: 0.3ms) Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:09 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:09 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 18:34:09 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:34:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:34:09 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.7ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 18:35:04 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (0.8ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (29.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 327ms (Views: 324.9ms | ActiveRecord: 1.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:35:05 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:35:05 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (115.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 18:35:16 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (0.8ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (28.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 340ms (Views: 337.6ms | ActiveRecord: 1.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:35:17 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:35:17 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (114.5ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 18:35:24 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (0.7ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (30.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (27.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 328ms (Views: 325.8ms | ActiveRecord: 1.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:35:24 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:35:24 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.0ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:35:38 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (61.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (65.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 348ms (Views: 347.7ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:35:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:35:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.1ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:36:56 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (39.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (41.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (46.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 363ms (Views: 362.8ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:36:57 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:36:57 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:36:57 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.9ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:37:04 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (37.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (40.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (42.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 335ms (Views: 334.5ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:37:04 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:37:05 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:37:05 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.5ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:37:25 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (35.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (37.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 345ms (Views: 344.5ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:37:26 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:37:26 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:37:26 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.8ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:37:43 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (36.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (39.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 324ms (Views: 324.0ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:37:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:37:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:37:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (117.0ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:37:53 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (35.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (37.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 341ms (Views: 340.1ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:37:54 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:37:54 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:37:54 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (112.0ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:38:18 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (31.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (34.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 328ms (Views: 327.0ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:38:18 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:38:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:38:19 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.1ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:39:47 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (28.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (43.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (46.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 350ms (Views: 349.6ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:39:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:39:48 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:39:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.2ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:40:43 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (37.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (39.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 346ms (Views: 345.1ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:40:43 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:40:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (114.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:40:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (120.4ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:40:58 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (29.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (39.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (41.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 331ms (Views: 330.1ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:40:58 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:40:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:40:59 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.6ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:41:16 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (28.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (36.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (39.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 306ms (Views: 305.6ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:41:16 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:41:17 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:41:17 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.6ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 18:41:30 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (35.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (38.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 328ms (Views: 327.8ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:41:31 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:41:31 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:41:31 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.0ms) Started POST "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 18:47:21 -0300 Processing by Postino::Manage::ListsController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Vzx1LTBjaDhz25VMQQgslP5hpH8RFTEwF6vKXF6empQv+RC/WL2lzKR2gmi0bu+2SVPhmxkE+5WbpqSsdXudOA==", "list"=>{"name"=>"opopok", "subscribers_attributes"=>{"1426974092776"=>{"email"=>"miguelmich@gmail.cl", "name"=>"oijoij", "last_name"=>"oijoij", "_destroy"=>"false"}, "1426974094009"=>{"email"=>"miguelmich@gmail.cl", "name"=>"oijoij", "last_name"=>"oijoij", "_destroy"=>"false"}, "1426974095131"=>{"email"=>"miguelmich@gmail.cl", "name"=>"oijoij", "last_name"=>"oijoij", "_destroy"=>"false"}}}, "commit"=>"crear"} Unpermitted parameter: subscribers_attributes  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "postino_lists" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "opopok"], ["created_at", "2015-03-21 21:47:21.076837"], ["updated_at", "2015-03-21 21:47:21.076837"]]  (5.9ms) commit transaction Redirected to http://localhost:3000/postino/manage/lists Completed 302 Found in 13ms (ActiveRecord: 6.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 18:47:21 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (15.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 292ms (Views: 290.7ms | ActiveRecord: 1.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:47:21 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (112.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:47:21 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:47:22 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.5ms) Started GET "/postino/manage/lists/3/edit" for 127.0.0.1 at 2015-03-21 18:47:26 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"3"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (34.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (37.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (51.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 340ms (Views: 338.9ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:47:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:47:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:47:27 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.9ms) Started GET "/postino/manage/lists/3/edit" for 127.0.0.1 at 2015-03-21 18:47:59 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"3"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.4ms) Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (33.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (35.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (27.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 310ms (Views: 309.2ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:48:00 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:48:00 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:48:00 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.5ms) Started GET "/postino/manage/lists/3/edit" for 127.0.0.1 at 2015-03-21 18:49:17 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"3"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (33.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (40.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 351ms (Views: 349.5ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:49:18 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (13.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (119.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:49:18 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (120.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:49:18 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.4ms) Started GET "/postino/manage/lists/3/edit" for 127.0.0.1 at 2015-03-21 18:51:28 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"3"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Postino::Subscriber Load (0.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (32.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (27.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (71.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 372ms (Views: 370.8ms | ActiveRecord: 0.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:51:28 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:51:29 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:51:29 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.9ms) Started GET "/postino/manage/lists/3/edit" for 127.0.0.1 at 2015-03-21 18:51:43 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"3"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (37.3ms) Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (50.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (57.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 338ms (Views: 336.2ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:51:43 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:51:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:51:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.7ms) Started GET "/postino/manage/lists/3/edit" for 127.0.0.1 at 2015-03-21 18:52:47 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"3"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (35.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (43.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 308ms (Views: 306.3ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:52:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (17.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (122.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:52:48 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:52:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.0ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 18:53:06 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (15.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (13.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 300ms (Views: 297.9ms | ActiveRecord: 1.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:53:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:53:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:53:07 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.4ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 18:53:09 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Postino::Subscriber Load (37.5ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (1635.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (1638.0ms) Completed 500 Internal Server Error in 1645ms ActionView::Template::Error (Missing partial postino/manage/lists/_subcribers_fields, postino/application/_subcribers_fields with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): 10: = link_to_add_association 'Add Subscriber', f, :subscribers, class: "btn btn-mini btn-default" 11: 12: = f.simple_fields_for :subscribers do |u| 13: = render "subcribers_fields", :f => u 14: 15: 16: actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:13:in `block (2 levels) in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml___1715157537147688273_2205101040' haml (4.0.6) lib/haml/helpers.rb:368:in `call' haml (4.0.6) lib/haml/helpers.rb:368:in `block in capture_haml' haml (4.0.6) lib/haml/helpers.rb:608:in `with_haml_buffer' haml (4.0.6) lib/haml/helpers.rb:364:in `capture_haml' haml (4.0.6) lib/haml/helpers/xss_mods.rb:61:in `capture_haml_with_haml_xss' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:45:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1924:in `block in fields_for_nested_model' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:714:in `fields_for' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1923:in `fields_for_nested_model' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1909:in `block in fields_for_with_nested_attributes' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1907:in `fields_for_with_nested_attributes' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1581:in `fields_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/builder.rb:27:in `simple_fields_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:12:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml___1715157537147688273_2205101040' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml___1715157537147688273_2205101040' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml:23:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists_edit_haml___2537989908863802398_2204794680' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (19.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.5ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 18:53:40 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Postino::Subscriber Load (26.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (1630.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (1632.7ms) Completed 500 Internal Server Error in 1639ms ActionView::Template::Error (Missing partial postino/manage/lists/_subcriber_fields, postino/application/_subcriber_fields with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): 10: = link_to_add_association 'Add Subscriber', f, :subscribers, class: "btn btn-mini btn-default" 11: 12: = f.simple_fields_for :subscribers do |u| 13: = render "subcriber_fields", :f => u 14: 15: 16: = f.submit "crear", class: "btn btn-primary" actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:13:in `block (2 levels) in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml___1715157537147688273_2255966360' haml (4.0.6) lib/haml/helpers.rb:368:in `call' haml (4.0.6) lib/haml/helpers.rb:368:in `block in capture_haml' haml (4.0.6) lib/haml/helpers.rb:608:in `with_haml_buffer' haml (4.0.6) lib/haml/helpers.rb:364:in `capture_haml' haml (4.0.6) lib/haml/helpers/xss_mods.rb:61:in `capture_haml_with_haml_xss' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:45:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1924:in `block in fields_for_nested_model' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:714:in `fields_for' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1923:in `fields_for_nested_model' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1909:in `block in fields_for_with_nested_attributes' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1907:in `fields_for_with_nested_attributes' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1581:in `fields_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/builder.rb:27:in `simple_fields_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:12:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml___1715157537147688273_2255966360' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml:1:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists__form_haml___1715157537147688273_2255966360' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:310:in `block in render' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:309:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/renderer/renderer.rb:21:in `render' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:32:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml:23:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists_edit_haml___2537989908863802398_2204794680' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (24.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (55.4ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 18:54:07 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.3ms) Postino::Subscriber Load (25.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (47.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (31.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (33.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (34.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (34.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (32.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (31.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (36.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (16.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (34.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (29.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (33.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (34.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (16.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (16.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (30.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (31.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (32.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (36.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (41.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (29.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (16.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (16.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (16.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (16.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (36.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (33.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (32.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (34.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (36.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (34.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (45.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (29.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (31.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (28.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (32.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (32.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (39.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (34.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (40.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (41.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (30.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (44.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (36.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (34.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (37.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (33.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (16.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (16.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (31.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (32.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (36.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (34.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (17.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (35.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (39.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (32.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (30.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (38.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (37.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (42.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (30.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (28.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (38.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (28.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (22.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (3.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (6.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (2.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (2.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (48480.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (48567.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (25.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 48887ms (Views: 48860.9ms | ActiveRecord: 25.3ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 18:54:56 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.8ms) Postino::Subscriber Load (23.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (2.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (2.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (10797.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (10807.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (46.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 11110ms (Views: 11085.6ms | ActiveRecord: 23.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:55:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:55:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.8ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 18:55:34 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (98.5ms) Postino::Subscriber Load (25.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (3.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (10370.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (10404.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (5.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (2.7ms) Completed 200 OK in 11190ms (Views: 11027.3ms | ActiveRecord: 30.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:55:46 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (29.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (129.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 18:55:46 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (89.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 18:55:46 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.9ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 19:08:14 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.3ms) Postino::Subscriber Load (22.4ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (3.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (2.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (10659.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (10669.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 10963ms (Views: 10938.6ms | ActiveRecord: 22.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:08:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:08:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:08:26 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.3ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 19:08:58 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (23.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (34.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (37.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 337ms (Views: 335.2ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:08:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:08:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:08:59 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.3ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 19:09:40 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (20.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (29.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (31.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 293ms (Views: 291.7ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:09:41 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:09:41 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.5ms) Started PATCH "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 19:09:52 -0300 Processing by Postino::Manage::ListsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"dtAWmVsutADVRpR4OK40FD+HPjdCpbJGb2zB2iZsUMQOFXMLM/B59ALrg1zNyPc2iLV700q0eOPjYa8qDYlXaA==", "list"=>{"name"=>"joij", "subscribers_attributes"=>{"1426975783202"=>{"email"=>"oij@oijo.ck", "name"=>"oijoij", "last_name"=>"oioij", "_destroy"=>"false"}}}, "commit"=>"crear", "id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Unpermitted parameter: subscribers_attributes  (0.1ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3000/postino/manage/lists Completed 302 Found in 6ms (ActiveRecord: 0.5ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:09:53 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (51.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 350ms (Views: 347.6ms | ActiveRecord: 1.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:09:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (94.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:09:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:09:53 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.9ms) Started GET "/postino/manage/lists/3/edit" for 127.0.0.1 at 2015-03-21 19:09:59 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"3"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (25.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (35.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (37.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 315ms (Views: 313.8ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:09:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:10:00 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:10:00 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.7ms) Started GET "/postino/manage/lists/3/edit" for 127.0.0.1 at 2015-03-21 19:10:28 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"3"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (73.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (75.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 372ms (Views: 353.0ms | ActiveRecord: 1.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:10:29 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:10:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:10:30 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.7ms) Started PATCH "/postino/manage/lists/3" for 127.0.0.1 at 2015-03-21 19:10:44 -0300 Processing by Postino::Manage::ListsController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"Qa5947Nk8ji1OpnRVxhuOnP+ARaENuzfOjCdzaLOxIg5axhx27o/zGKXjvWifq0YxMxE8ownJnq2PfM9iSvDJA==", "list"=>{"name"=>"opopok", "subscribers_attributes"=>{"1426975831314"=>{"email"=>"mim@iim.cl", "name"=>"oioij", "last_name"=>"oijoij", "_destroy"=>"false"}}}, "commit"=>"crear", "id"=>"3"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 3]]  (0.1ms) begin transaction SQL (31.7ms) INSERT INTO "postino_subscribers" ("email", "name", "last_name", "list_id", "state", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["email", "mim@iim.cl"], ["name", "oioij"], ["last_name", "oijoij"], ["list_id", 3], ["state", "passive"], ["created_at", "2015-03-21 22:10:44.917032"], ["updated_at", "2015-03-21 22:10:44.917032"]]  (3.1ms) commit transaction Redirected to http://localhost:3000/postino/manage/lists Completed 302 Found in 47ms (ActiveRecord: 35.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:10:44 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (0.7ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (12.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 273ms (Views: 271.1ms | ActiveRecord: 1.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:10:45 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:10:45 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:10:45 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (112.3ms) Started GET "/postino/manage/lists/3/edit" for 127.0.0.1 at 2015-03-21 19:10:48 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"3"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (34.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (36.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 344ms (Views: 342.9ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:10:49 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:10:49 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:10:49 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.4ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:11:08 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (14.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 279ms (Views: 277.1ms | ActiveRecord: 1.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:11:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:11:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:11:08 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.5ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:12:44 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.8ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (0.9ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (49.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 382ms (Views: 372.5ms | ActiveRecord: 3.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:12:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:12:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:13:08 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.8ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (2.7ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (78.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 411ms (Views: 387.7ms | ActiveRecord: 6.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:13:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:13:09 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.6ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:13:34 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.8ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (3.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (66.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 361ms (Views: 347.6ms | ActiveRecord: 6.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:13:35 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:13:35 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.9ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:13:54 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (1.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (3.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.7ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (99.1ms) Completed 500 Internal Server Error in 116ms ActionView::Template::Error (wrong number of arguments (1 for 0)): 41: %br/ 42: %small= list.created_at 43: %td.project-completion 44: %small Completion with: #{list.subscription_progress}% 45: .progress.progress-mini 46: .progress-bar{:style => "width: #{list.subscription_progress}%;"} 47: /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/list.rb:10:in `to_f' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/list.rb:10:in `subscription_progress' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml:44:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists_index_haml__9938623955629285_2165796220' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' activerecord (4.2.0) lib/active_record/relation/delegation.rb:46:in `each' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml:33:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_lists_index_haml__9938623955629285_2165796220' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (43.1ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:14:06 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.8ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (3.3ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (66.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 364ms (Views: 348.8ms | ActiveRecord: 6.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:14:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (114.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:14:07 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.9ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:14:34 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (17.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 334ms (Views: 312.8ms | ActiveRecord: 0.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:14:34 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:14:34 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.8ms) Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-21 19:14:39 -0300 Processing by Postino::Manage::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (15.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml within layouts/postino/application (36.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (27.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 350ms (Views: 347.8ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:14:39 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:14:39 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.5ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:15:08 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (3.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (25.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 281ms (Views: 280.5ms | ActiveRecord: 0.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:15:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:15:09 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.6ms) Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-21 19:15:12 -0300 Processing by Postino::Manage::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (14.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml within layouts/postino/application (16.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 296ms (Views: 294.0ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:15:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:15:13 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.9ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 19:15:50 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (76.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 387ms (Views: 374.0ms | ActiveRecord: 0.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:15:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:15:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.4ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 19:16:38 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns"  (0.7ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (87.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (36.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 380ms (Views: 376.7ms | ActiveRecord: 3.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:16:39 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:16:39 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.7ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 19:16:49 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns"  (0.4ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (92.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.3ms) Completed 200 OK in 403ms (Views: 400.0ms | ActiveRecord: 3.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:16:49 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:16:50 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.8ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 19:24:22 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.6ms) SELECT "postino_campaigns".* FROM "postino_campaigns"  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (71.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 336ms (Views: 332.9ms | ActiveRecord: 3.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:24:22 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (146.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:24:23 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (91.8ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:24:26 -0300 Processing by Postino::Manage::ListsController#index as HTML Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (2.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]]  (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (30.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 322ms (Views: 317.6ms | ActiveRecord: 3.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:24:26 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:24:26 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.3ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 19:24:30 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.5ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (0.7ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (113.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (27.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 382ms (Views: 376.2ms | ActiveRecord: 1.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:24:31 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:24:31 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.9ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 19:26:36 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (4.0ms) Postino::Subscriber Load (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (70.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 367ms (Views: 364.1ms | ActiveRecord: 1.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:26:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:26:37 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.5ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 19:26:56 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (6.0ms) Postino::Subscriber Load (1.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (67.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 351ms (Views: 347.4ms | ActiveRecord: 1.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:26:56 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:26:56 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.1ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:26:59 -0300 Processing by Postino::Manage::ListsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (0.7ms) Postino::List Load (0.7ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (2.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.4ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (48.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 336ms (Views: 331.0ms | ActiveRecord: 4.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:27:00 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:27:00 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.2ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 19:27:01 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (27.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (36.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (47.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 325ms (Views: 323.3ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:27:02 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:27:02 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.5ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:27:04 -0300 Processing by Postino::Manage::ListsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (0.7ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (2.7ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (32.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 332ms (Views: 326.5ms | ActiveRecord: 4.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:27:05 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:27:05 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.9ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 19:27:08 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (24.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (44.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (54.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 329ms (Views: 328.1ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:27:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:27:08 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.2ms) Started GET "/postino/manage/lists/new" for 127.0.0.1 at 2015-03-21 19:27:28 -0300 Processing by Postino::Manage::ListsController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (29.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/new.haml within layouts/postino/application (38.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 323ms (Views: 322.5ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:27:29 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:27:29 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.7ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:27:30 -0300 Processing by Postino::Manage::ListsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (0.9ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (2.3ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.3ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (36.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (27.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 307ms (Views: 302.3ms | ActiveRecord: 4.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:27:31 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:27:31 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.7ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 19:27:34 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (26.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (35.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (41.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 354ms (Views: 352.0ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:27:34 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:27:34 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.1ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 19:27:44 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns"  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (71.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 339ms (Views: 335.9ms | ActiveRecord: 2.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:27:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:27:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.6ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 19:27:54 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.4ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (102.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 399ms (Views: 395.4ms | ActiveRecord: 2.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:27:55 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:27:55 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:27:55 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.2ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 19:28:36 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.4ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (59.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 356ms (Views: 353.2ms | ActiveRecord: 1.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:28:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:28:37 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.3ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 19:28:43 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.2ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (80.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 385ms (Views: 382.3ms | ActiveRecord: 1.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:28:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:28:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.9ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 19:28:54 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.6ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (57.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 369ms (Views: 366.0ms | ActiveRecord: 2.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:28:55 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:28:55 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (122.7ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 19:29:39 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.2ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.2ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (52.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 357ms (Views: 354.6ms | ActiveRecord: 1.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:29:40 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:29:40 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.7ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 19:29:44 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns"  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (79.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 382ms (Views: 378.4ms | ActiveRecord: 3.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:29:45 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:29:45 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.8ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:29:55 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (3.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 273ms (Views: 272.0ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:29:56 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:29:56 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.4ms) Started GET "/postino/manage/templates/new" for 127.0.0.1 at 2015-03-21 19:29:59 -0300 Processing by Postino::Manage::TemplatesController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (12.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/new.haml within layouts/postino/application (17.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 285ms (Views: 284.6ms | ActiveRecord: 0.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:29:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:29:59 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (93.7ms) Started POST "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:30:34 -0300 Processing by Postino::Manage::TemplatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0m6/H7ovcVn3Lo93ZqjHYM8eoA6rqNmIAIVjoGBTw5Sqq9qN0vG8rSCDmFOTzgRCeCzl6qO5Ey2MiA1QS7bEOA==", "template"=>{"name"=>"", "html_content"=>""}, "commit"=>"crear"} Completed 500 Internal Server Error in 5ms ArgumentError (Unknown key: :presence. Valid keys are: :on, :if, :unless, :prepend. Perhaps you meant to call `validates` instead of `validate`?): activemodel (4.2.0) lib/active_model/validations.rb:153:in `block in validate' activemodel (4.2.0) lib/active_model/validations.rb:151:in `each_key' activemodel (4.2.0) lib/active_model/validations.rb:151:in `validate' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/template.rb:4:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/template.rb:2:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/template.rb:1:in `' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/templates_controller.rb:32:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (44.5ms) Started POST "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Processing by Postino::Manage::TemplatesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"0m6/H7ovcVn3Lo93ZqjHYM8eoA6rqNmIAIVjoGBTw5Sqq9qN0vG8rSCDmFOTzgRCeCzl6qO5Ey2MiA1QS7bEOA==", "template"=>{"name"=>"", "html_content"=>""}, "commit"=>"crear"}  (0.1ms) begin transaction  (0.1ms) rollback transaction Redirected to http://localhost:3000/postino/manage/templates Completed 302 Found in 22ms (ActiveRecord: 1.4ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (2.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 297ms (Views: 296.3ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:43 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:44 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:44 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:44 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:44 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:44 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:44 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:30:44 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (11.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:30:44 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.4ms) Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Processing by Postino::Manage::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (16.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml within layouts/postino/application (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 294ms (Views: 291.9ms | ActiveRecord: 0.4ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:30:46 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.5ms) Started PATCH "/postino/manage/templates/1" for 127.0.0.1 at 2015-03-21 19:30:47 -0300 Processing by Postino::Manage::TemplatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"JYDrlX0OIWwgGR5i3R5VvWaNYzBQNYDsPBLQhTS1GDddRY4HFdDsmPe0CUYoeJaf0b8m1FgkSkmwH751H1Afmw==", "template"=>{"name"=>"default", "html_content"=>"

    "}, "commit"=>"crear", "id"=>"1"} Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction  (0.2ms) commit transaction Redirected to http://localhost:3000/postino/manage/templates Completed 302 Found in 6ms (ActiveRecord: 0.5ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:30:47 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (2.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 327ms (Views: 325.9ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:30:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.7ms) Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-21 19:31:20 -0300 Processing by Postino::Manage::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (16.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml within layouts/postino/application (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (56.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 368ms (Views: 351.2ms | ActiveRecord: 1.7ms) Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Processing by Postino::Manage::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (15.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml within layouts/postino/application (18.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 314ms (Views: 312.4ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:31:21 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:31:22 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.4ms) Started PATCH "/postino/manage/templates/1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Processing by Postino::Manage::TemplatesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"bKxgF75/KLz4UdH8tHM1++9ClKpjnqoQQCyAUWfF2S0UaQWF1qHlSC/8xthBFfbZWHDRTmuPYLXMIe6hTCDegQ==", "template"=>{"name"=>"default", "html_content"=>"

    "}, "commit"=>"crear", "id"=>"1"} Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3000/postino/manage/templates Completed 302 Found in 5ms (ActiveRecord: 0.4ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (2.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 306ms (Views: 305.0ms | ActiveRecord: 0.3ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:31:23 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:31:24 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.3ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:33:18 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (3.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 282ms (Views: 281.2ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:33:19 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.4ms) Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Processing by Postino::Manage::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (3.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (13.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml within layouts/postino/application (23.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 311ms (Views: 309.5ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:21 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:33:22 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.0ms) Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Processing by Postino::Manage::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (19.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml within layouts/postino/application (24.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 318ms (Views: 316.3ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:33:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.8ms) Started GET "/postino/manage/templates/1/edit" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Processing by Postino::Manage::TemplatesController#edit as HTML Parameters: {"id"=>"1"} Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" WHERE "postino_templates"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (6.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (16.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/edit.haml within layouts/postino/application (27.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 323ms (Views: 321.9ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:34:25 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.3ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (3.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 282ms (Views: 281.6ms | ActiveRecord: 0.3ms) Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:34:29 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (91.6ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (0.6ms) Postino::Template Load (0.6ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (13.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 302ms (Views: 301.5ms | ActiveRecord: 0.6ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:35:27 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.3ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:35:48 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (0.7ms) Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (12.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 319ms (Views: 318.4ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:35:49 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.5ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (0.6ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (14.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 314ms (Views: 313.7ms | ActiveRecord: 0.3ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:36:04 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.3ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:36:13 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (0.7ms) Postino::Template Load (0.5ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (16.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 317ms (Views: 316.1ms | ActiveRecord: 0.5ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:36:14 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.1ms) Started GET "/postino/manage/templates/new" for 127.0.0.1 at 2015-03-21 19:36:18 -0300 Processing by Postino::Manage::TemplatesController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (16.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/new.haml within layouts/postino/application (25.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 324ms (Views: 323.2ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:36:19 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.0ms) Started GET "/postino/manage/templates/new" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Processing by Postino::Manage::TemplatesController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (1.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (19.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/new.haml within layouts/postino/application (28.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 303ms (Views: 302.9ms | ActiveRecord: 0.0ms) Started GET "/assets/postino/application-e82a5623cd50227432d3aec2cf9c24bb.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/font-awesome-f1f64beee85cc8d3badf3f4a4c68cc61.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:50 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:36:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:36:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.3ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Processing by Postino::Manage::ListsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (1.1ms) Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (2.8ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (65.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 357ms (Views: 340.7ms | ActiveRecord: 5.6ms) Started GET "/assets/postino/style-b56971d56d6d6dcd629c765bd32cbf9a.css?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:36:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:37:00 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.2ms) Started GET "/postino/manage/lists/1/edit" for 127.0.0.1 at 2015-03-21 19:37:02 -0300 Processing by Postino::Manage::ListsController#edit as HTML Parameters: {"id"=>"1"} Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_subscriber_fields.haml (21.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_form.haml (38.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/edit.haml within layouts/postino/application (44.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 344ms (Views: 341.9ms | ActiveRecord: 0.6ms) Started GET "/assets/jquery/jquery-2.1.1-0b54df12895f3f00c27963f5125c15d9.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:37:03 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.8ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (0.6ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (5.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 278ms (Views: 277.7ms | ActiveRecord: 0.3ms) Started GET "/assets/bootstrap/affix-86647d01ace516e05ddf78d2b6e85e20.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/alert-2a2796d28d7833f423ee421a3ad297bb.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/button-6b326d9b5034209f30109e77c264a190.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/collapse-624b0c6035c65b5be6ae581d8dc4e196.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/carousel-31dbb9c732fc2da02b8d5a97d9ae0047.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/dropdown-ce1bbc536745c41510513f7274f9897c.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:06 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:07 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:07 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:07 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:37:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:37:07 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.1ms) Started GET "/postino/manage/templates/new" for 127.0.0.1 at 2015-03-21 19:37:08 -0300 Processing by Postino::Manage::TemplatesController#new as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_form.haml (16.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/new.haml within layouts/postino/application (21.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 325ms (Views: 324.5ms | ActiveRecord: 0.0ms) Started GET "/assets/bootstrap/scrollspy-3892c697f57b7e7b9d5993044235a210.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:08 -0300 Started GET "/assets/bootstrap/tab-6f45b70c6440bd0222c171dd7a926b5d.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:08 -0300 Started GET "/assets/bootstrap/transition-264673896da1e31c3b865db964cd6592.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:08 -0300 Started GET "/assets/bootstrap-sprockets-830839b3b00123a30d090955aa74da5c.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 Started GET "/assets/bootstrap/tooltip-718496fb53635605964fb77613425c8d.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 Started GET "/assets/bootstrap/popover-3dcfaa462d273d183ef52064ce120a5b.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 Started GET "/assets/metisMenu/jquery.metisMenu-202233ea6ed736a789fa996c0af0004d.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:37:09 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.0ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 19:37:11 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns"  (0.4ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]]  (0.4ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (96.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (51.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 428ms (Views: 413.4ms | ActiveRecord: 3.7ms) Started GET "/assets/pace/pace.min-a63da55cdf6cdb058609de8fb43552f3.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:11 -0300 Started GET "/assets/peity/jquery.peity.min-724ca2508f804c1fe718989e74e745df.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:11 -0300 Started GET "/assets/postino/inspinia-0ef4f30b7a494792b57639f9db209540.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:11 -0300 Started GET "/assets/postino/application-527a940bcf47130bd9ce2dca88e8869b.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:11 -0300 Started GET "/assets/cocoon-50668a911ac69114e0706ea5dc068e8c.js?body=1" for 127.0.0.1 at 2015-03-21 19:37:11 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:37:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:37:11 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.1ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 19:37:13 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (32.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 320ms (Views: 319.3ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:37:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:37:13 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.7ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 19:39:25 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (10.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 320ms (Views: 319.4ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:39:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:39:26 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.3ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 19:39:47 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (18.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 307ms (Views: 306.5ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:39:47 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:39:47 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.6ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 19:39:56 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns"  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]]  (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]]  (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (73.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 364ms (Views: 361.1ms | ActiveRecord: 2.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:39:56 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:39:56 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.1ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 19:39:57 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (42.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.3ms) Completed 200 OK in 317ms (Views: 312.4ms | ActiveRecord: 2.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:39:58 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:39:58 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.0ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 19:40:01 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (3.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (9.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (5.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (641.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 934ms (Views: 932.5ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:40:02 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:40:03 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:40:03 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.5ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 19:40:17 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (5.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (85.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 394ms (Views: 392.7ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:40:18 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:40:18 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.1ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 19:40:48 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (86.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 440ms (Views: 438.8ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:40:48 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:40:49 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.8ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-21 19:40:51 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.5ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (32.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.4ms) Completed 200 OK in 340ms (Views: 338.3ms | ActiveRecord: 0.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:40:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:40:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.0ms) Started GET "/postino/manage/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-21 19:40:55 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (37.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 321ms (Views: 319.5ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:40:56 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:40:56 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.2ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 19:40:58 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (69.6ms) Completed 500 Internal Server Error in 78ms ActionView::Template::Error (undefined local variable or method `f' for #<#:0x00000102b0e1d8>): 23: %li view reports 24: %li 25: 26: = f.submit 27: 28: 29: = render partial: "wizard_nav" /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml:26:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_confirm_haml___4549549111666710_2166765820' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (41.0ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 19:41:15 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (31.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 323ms (Views: 321.7ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:41:16 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (123.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:41:16 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.6ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 19:43:24 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (4.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (55.0ms) Completed 500 Internal Server Error in 62ms ActionView::Template::Error (undefined method `manage_campaign_test_path' for #<#:0x00000106eba5a8>): 19: %ul 20: %li= link_to "preview", preview_manage_campaign_path(@campaign) 21: %li 22: = link_to manage_campaign_test_path(@campaign), class: "btn btn-w-m btn-white" 23: %li 24: = link_to "send", manage_campaign_send_path(@campaign), class: "btn btn-w-m btn-white" 25: %li /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml:22:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_confirm_haml___4549549111666710_2205497400' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml:15:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_confirm_haml___4549549111666710_2205497400' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (17.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.4ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 19:43:59 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (4.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (65.9ms) Completed 500 Internal Server Error in 72ms ActionView::Template::Error (undefined method `send_manage_campaign_path' for #<#:0x0000010abe54f0>): 21: %li 22: = link_to test_manage_campaign_path(@campaign), class: "btn btn-w-m btn-white" 23: %li 24: = link_to "send", send_manage_campaign_path(@campaign), class: "btn btn-w-m btn-white" 25: %li 26: = link_to " view reports", "#", class: "btn btn-w-m btn-white" 27: /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml:24:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_confirm_haml___4549549111666710_2171302340' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml:15:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_confirm_haml___4549549111666710_2171302340' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (18.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.3ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 19:44:11 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (25.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 332ms (Views: 330.7ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:44:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:44:11 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.0ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 19:44:31 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (25.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 315ms (Views: 313.4ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:44:31 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (112.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:44:31 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.4ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 19:44:56 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (29.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.4ms) Completed 200 OK in 343ms (Views: 341.1ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:44:56 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:44:56 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.6ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 19:45:14 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (22.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 320ms (Views: 318.3ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:45:14 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:45:14 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.7ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 19:45:30 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (22.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 314ms (Views: 312.6ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:45:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:45:30 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.0ms) Started GET "/postino/manage/campaigns/1/wizard/confirm" for 127.0.0.1 at 2015-03-21 19:45:40 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"confirm"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/confirm.haml within layouts/postino/application (24.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 342ms (Views: 340.6ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:45:40 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (112.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:45:40 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.2ms) Started GET "/postino/manage/campaigns/1/preview" for 127.0.0.1 at 2015-03-21 19:46:25 -0300 Processing by Postino::Manage::CampaignsController#preview as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/preview.haml within layouts/postino/application (4.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 281ms (Views: 279.6ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:46:25 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:46:26 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:46:26 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (128.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:46:32 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:46:32 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:46:32 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.3ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 19:46:36 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.1ms) Postino::List Load (0.7ms) SELECT "postino_lists".* FROM "postino_lists" Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (40.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.3ms) Completed 200 OK in 334ms (Views: 331.6ms | ActiveRecord: 1.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:46:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:46:37 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:46:37 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.1ms) Started PATCH "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 19:46:41 -0300 Processing by Postino::Manage::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"7OYhs0NpOKKOUNx6EVe05n/14rwI5D0fk8AsVcwt1RSUI0QhK7f1Vln9y17kMXfEyMenWAD197ofzUKl58jSuA==", "campaign"=>{"name"=>"una campaña", "list"=>"3"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction  (0.1ms) rollback transaction Completed 500 Internal Server Error in 6ms NameError (uninitialized constant List): activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' activesupport (4.2.0) lib/active_support/core_ext/string/inflections.rb:66:in `constantize' activerecord (4.2.0) lib/active_record/associations/association.rb:214:in `raise_on_type_mismatch!' activerecord (4.2.0) lib/active_record/associations/belongs_to_association.rb:12:in `replace' activerecord (4.2.0) lib/active_record/associations/singular_association.rb:17:in `writer' activerecord (4.2.0) lib/active_record/associations/builder/association.rb:123:in `list=' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:54:in `public_send' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:54:in `_assign_attribute' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:41:in `block in assign_attributes' actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:183:in `each_pair' actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:183:in `each_pair' activerecord (4.2.0) lib/active_record/attribute_assignment.rb:35:in `assign_attributes' activerecord (4.2.0) lib/active_record/persistence.rb:249:in `block in update' activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction' activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status' activerecord (4.2.0) lib/active_record/persistence.rb:248:in `update' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:17:in `update' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.5ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 19:47:05 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.8ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (41.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 342ms (Views: 339.6ms | ActiveRecord: 0.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:47:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:47:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (32.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (138.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:47:06 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (12.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (120.6ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 19:47:06 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.5ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (29.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (45.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 334ms (Views: 331.9ms | ActiveRecord: 0.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:47:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:47:07 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.1ms) Started PATCH "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 19:47:10 -0300 Processing by Postino::Manage::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"ePmUiE3k3cpk15FgwT3qbO7eZHDFt1wPn+L/lQmeS6YAPPEaJToQPrN6hkQ0WylOWewhlM2mlqoT75FlIntMCg==", "campaign"=>{"name"=>"una campaña", "list_id"=>"1"}, "commit"=>"Update Campaign", "campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.1ms) begin transaction  (0.4ms) commit transaction  (0.2ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3000/postino/manage/campaigns/1/wizard/setup Completed 302 Found in 10ms (ActiveRecord: 1.1ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 19:47:10 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (68.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 400ms (Views: 398.8ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:47:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:47:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:47:11 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.4ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 19:47:51 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.0ms) Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (30.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 315ms (Views: 312.6ms | ActiveRecord: 0.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:47:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (25.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (129.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:47:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.0ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 19:47:53 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (71.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 364ms (Views: 362.2ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 19:47:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 19:47:54 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (94.0ms) Started GET "/postino/campaigns/1/unsubscribe" for 127.0.0.1 at 2015-03-21 21:31:09 -0300 Processing by Postino::CampaignsController#unsubscribe as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/campaigns/unsubscribe.html.haml within layouts/postino/empty (1.8ms) Completed 200 OK in 395ms (Views: 323.0ms | ActiveRecord: 1.8ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 21:31:25 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.4ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (2.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", ""]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (18.4ms) Completed 200 OK in 327ms (Views: 267.2ms | ActiveRecord: 4.2ms) Started GET "/postino/manage/campaigns/1/wizard/list" for 127.0.0.1 at 2015-03-21 22:08:42 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"list"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (8.2ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/list.haml within layouts/postino/application (46.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 399ms (Views: 316.6ms | ActiveRecord: 24.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 22:08:43 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (159.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 22:08:43 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.9ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 22:08:44 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (77.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 404ms (Views: 402.7ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 22:08:45 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 22:08:45 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.9ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 22:13:25 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Completed 500 Internal Server Error in 15ms NameError (uninitialized constant Postino::Campaign::CampaignLogoUploader): /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/campaign.rb:25:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/campaign.rb:2:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/models/postino/campaign.rb:1:in `' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:11:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (41.4ms) Started GET "/postino/campaigns/1/subscribers/1" for 127.0.0.1 at 2015-03-21 23:23:49 -0300 Processing by Postino::SubscribersController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"1"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Postino::Subscriber Load (2.8ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."email" = ? LIMIT 1 [["list_id", 1], ["email", ""]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/subscribers/edit.haml within layouts/postino/empty (305.2ms) Completed 200 OK in 1356ms (Views: 866.0ms | ActiveRecord: 20.0ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:23:51 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (3.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (10.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (4.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (514.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (57.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (6.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (1.9ms) Completed 200 OK in 849ms (Views: 847.5ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:23:52 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (10.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (19.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (187.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:23:52 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.5ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 23:23:58 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns"  (0.5ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (98.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 393ms (Views: 389.3ms | ActiveRecord: 3.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:23:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:23:59 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.2ms) Started GET "/postino/manage/campaigns/new" for 127.0.0.1 at 2015-03-21 23:24:03 -0300 Processing by Postino::Manage::CampaignsController#new as HTML Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/new.haml within layouts/postino/application (50.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 332ms (Views: 330.6ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:24:03 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:24:04 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.8ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 23:24:11 -0300 Processing by Postino::Manage::ListsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (3.0ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (2.8ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]]  (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (54.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (28.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 341ms (Views: 335.1ms | ActiveRecord: 4.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:24:11 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:24:11 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.3ms) Started GET "/postino/manage/lists/1" for 127.0.0.1 at 2015-03-21 23:24:13 -0300 Processing by Postino::Manage::ListsController#show as HTML Parameters: {"id"=>"1"} Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (0.9ms) Postino::Subscriber Load (0.9ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? LIMIT 50 OFFSET 0 [["list_id", 1]]  (0.6ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/show.haml within layouts/postino/application (138.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 452ms (Views: 446.8ms | ActiveRecord: 1.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:24:14 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:24:14 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.1ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 23:24:19 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (4.4ms) Postino::Template Load (0.4ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (44.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 330ms (Views: 323.0ms | ActiveRecord: 1.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:24:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:24:20 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (109.2ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 23:24:45 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns"  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]]  (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (75.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 344ms (Views: 341.0ms | ActiveRecord: 2.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:24:46 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:24:46 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.4ms) Started GET "/postino/manage/lists" for 127.0.0.1 at 2015-03-21 23:24:48 -0300 Processing by Postino::Manage::ListsController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/_menu.haml (0.6ms) Postino::List Load (0.3ms) SELECT "postino_lists".* FROM "postino_lists" LIMIT 50 OFFSET 0  (2.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]]  (0.5ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 1], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 1]]  (0.3ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 2], ["state", "subscribed"]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 2]]  (0.2ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? AND "postino_subscribers"."state" = ? [["list_id", 3], ["state", "subscribed"]]  (0.1ms) SELECT COUNT(*) FROM "postino_subscribers" WHERE "postino_subscribers"."list_id" = ? [["list_id", 3]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/lists/index.haml within layouts/postino/application (33.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (51.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 334ms (Views: 329.1ms | ActiveRecord: 3.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:24:48 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:24:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.6ms) Started GET "/postino/manage/templates" for 127.0.0.1 at 2015-03-21 23:24:50 -0300 Processing by Postino::Manage::TemplatesController#index as HTML Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/_menu.haml (0.6ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/templates/index.haml within layouts/postino/application (6.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 287ms (Views: 286.0ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:24:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:24:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (94.5ms) Started GET "/postino/manage/campaigns" for 127.0.0.1 at 2015-03-21 23:24:56 -0300 Processing by Postino::Manage::CampaignsController#index as HTML Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns"  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 2], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 3], ["action", "deliver"]]  (0.3ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 4], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 5], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]] CACHE (0.1ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 6], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 7], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 8], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 9], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 10], ["action", "deliver"]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/index.haml within layouts/postino/application (71.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 358ms (Views: 354.4ms | ActiveRecord: 2.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:24:56 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:24:57 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.7ms) Started GET "/postino/manage/campaigns/1" for 127.0.0.1 at 2015-03-21 23:25:00 -0300 Processing by Postino::Manage::CampaignsController#show as HTML Parameters: {"id"=>"1"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]]  (0.2ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "click"]] Postino::List Load (0.2ms) SELECT "postino_lists".* FROM "postino_lists" WHERE "postino_lists"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] CACHE (0.0ms) SELECT COUNT(*) FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? AND "postino_metrics"."action" = ? [["campaign_id", 1], ["action", "deliver"]] Postino::Metric Load (0.3ms) SELECT "postino_metrics".* FROM "postino_metrics" WHERE "postino_metrics"."campaign_id" = ? [["campaign_id", 1]] Postino::Subscriber Load (0.3ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.1ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] CACHE (0.0ms) SELECT "postino_subscribers".* FROM "postino_subscribers" WHERE "postino_subscribers"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaigns/show.haml within layouts/postino/application (104.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 397ms (Views: 393.7ms | ActiveRecord: 2.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:25:01 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (110.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:25:01 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.0ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:25:09 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (90.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (32.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 399ms (Views: 397.4ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:25:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (117.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:25:10 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.0ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:33:12 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (3.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (20.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (4.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (608.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (41.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (5.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (1.9ms) Completed 200 OK in 1300ms (Views: 1152.5ms | ActiveRecord: 4.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:33:13 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (29.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (142.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:33:14 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.0ms) Started PATCH "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:42:18 -0300 Processing by Postino::Manage::CampaignWizardController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"89SLcX39K/rgfp0u5iT23IvdVHyUNoCS9PBj/it7jniLEe7jFSPmDjfTigoTQjX+PO8RmJwnSjd4/Q0OAJ6J1A==", "campaign"=>{"name"=>"una campaña", "subject"=>"censo", "logo"=>#, @original_filename="logo-black_menu.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"campaign[logo]\"; filename=\"logo-black_menu.png\"\r\nContent-Type: image/png\r\n">, "from_name"=>"miguel", "from_email"=>"miguelmichelson@gmail.com", "reply_email"=>"miguelmichelson@gmail.com", "query_string"=>"", "scheduled_at(1i)"=>"2015", "scheduled_at(2i)"=>"3", "scheduled_at(3i)"=>"19", "scheduled_at(4i)"=>"04", "scheduled_at(5i)"=>"54", "timezone"=>"(GMT-10:00) Hawaii", "description"=>"Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt aperiam a molestiae maxime labore eaque praesentium quibusdam nobis nihil distinctio. Cumque optio vero accusantium, numquam iusto tenetur aliquam delectus facilis?"}, "commit"=>"Setup!", "campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]]  (0.4ms) begin transaction Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] SQL (0.7ms) UPDATE "postino_campaigns" SET "logo" = ?, "updated_at" = ? WHERE "postino_campaigns"."id" = ? [["logo", "logo-black_menu.png"], ["updated_at", "2015-03-22 02:42:18.028334"], ["id", 1]]  (19.7ms) commit transaction  (0.1ms) begin transaction  (0.1ms) commit transaction Redirected to http://localhost:3000/postino/manage/campaigns/1/wizard/template Completed 302 Found in 1698ms (ActiveRecord: 21.5ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-21 23:42:19 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (4.3ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (138.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (27.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 614ms (Views: 611.7ms | ActiveRecord: 0.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:42:20 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (124.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:42:21 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.1ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:43:02 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (78.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 355ms (Views: 353.0ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:43:02 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:43:02 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.3ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:43:50 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (4.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (92.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 410ms (Views: 408.8ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:43:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:43:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.6ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-21 23:47:18 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.4ms) Postino::Template Load (0.2ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (24.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 299ms (Views: 297.2ms | ActiveRecord: 0.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:47:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:47:19 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:47:19 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (114.8ms) Started GET "/postino/manage/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-21 23:47:22 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (4.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (27.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 326ms (Views: 324.7ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:47:22 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:47:23 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:47:23 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.7ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:47:26 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (77.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (43.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 378ms (Views: 376.3ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:47:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:47:27 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.3ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:47:27 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.3ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:48:09 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (104.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 437ms (Views: 435.4ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:48:09 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.4ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:48:10 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:48:10 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.0ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:48:37 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (101.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 388ms (Views: 386.5ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:48:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:48:38 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (11.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (16.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (117.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:48:38 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.3ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:53:55 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (127.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (45.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 506ms (Views: 504.7ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:53:56 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (136.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:53:57 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.1ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:54:22 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (94.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (34.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 411ms (Views: 410.0ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:54:22 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:54:23 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:54:23 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.0ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-21 23:56:06 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (84.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (44.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 463ms (Views: 462.0ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:56:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-21 23:56:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (120.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-21 23:56:07 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (122.5ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:08:46 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (3.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (97.6ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__304376568529982230_2195619700 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (4.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (702.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (39.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (6.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (1.9ms) Completed 200 OK in 1593ms (Views: 1352.7ms | ActiveRecord: 16.6ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:08:49 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (20.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (127.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:08:49 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.0ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:23:14 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (2.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (86.0ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:42) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (5.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (681.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (38.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (5.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (1.9ms) Completed 200 OK in 1566ms (Views: 1328.2ms | ActiveRecord: 16.7ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:23:17 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (25.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (157.8ms) Started GET "/assets/bootstrap/glyphicons-halflings-regular-4c18eb6f51df3274f7d02dcd79043b73.woff" for 127.0.0.1 at 2015-03-22 00:23:17 -0300 Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:23:17 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.7ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:26:58 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (4.4ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:42) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (72.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (24.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 513ms (Views: 512.2ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/application-44c05393397fe021f4ebb41711735e51.css?body=1" for 127.0.0.1 at 2015-03-22 00:26:58 -0300 Started GET "/assets/datapicker/datepicker3-b2a31bc60861c9719321e49da58e2c56.css?body=1" for 127.0.0.1 at 2015-03-22 00:26:58 -0300 Started GET "/assets/datapicker/bootstrap-datepicker-fa5589607f53d4992f200928ba181e1e.js?body=1" for 127.0.0.1 at 2015-03-22 00:26:58 -0300 Started GET "/assets/postino/application-e542f3e30d472c29b70cf121584fd151.js?body=1" for 127.0.0.1 at 2015-03-22 00:26:58 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:26:59 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (90.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:26:59 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.2ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:30:49 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (7.7ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (58.0ms) Completed 500 Internal Server Error in 111ms SyntaxError (/Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:4: syntax error, unexpected '<'
    ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:4: syntax error, unexpected tIDENTIFIER, expecting keyword_end
    ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:5: syntax error, unexpected '<' ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:9: syntax error, unexpected '<' ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:10: syntax error, unexpected tINTEGER, expecting keyword_end ...ass="form-control" value="03/04/2014"> ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:10: syntax error, unexpected tSTRING_BEG, expecting keyword_end ...orm-control" value="03/04/2014"> ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:36: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '(' "".html_safe ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:36: syntax error, unexpected '<' "".html_safe ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:36: unterminated regexp meets end of file): /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:4: syntax error, unexpected '<'
    ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:4: syntax error, unexpected tIDENTIFIER, expecting keyword_end
    ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:5: syntax error, unexpected '<' ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:9: syntax error, unexpected '<' ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:10: syntax error, unexpected tINTEGER, expecting keyword_end ...ass="form-control" value="03/04/2014"> ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:10: syntax error, unexpected tSTRING_BEG, expecting keyword_end ...orm-control" value="03/04/2014"> ... ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:36: syntax error, unexpected keyword_class, expecting keyword_do or '{' or '(' "".html_safe ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:36: syntax error, unexpected '<' "".html_safe ^ /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:36: unterminated regexp meets end of file activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load' activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in' activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file' activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load' activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant' activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing' simple_form (3.1.0) lib/simple_form/form_builder.rb:620:in `const_get' simple_form (3.1.0) lib/simple_form/form_builder.rb:620:in `attempt_mapping' simple_form (3.1.0) lib/simple_form/form_builder.rb:571:in `find_mapping' simple_form (3.1.0) lib/simple_form/form_builder.rb:502:in `find_input' simple_form (3.1.0) lib/simple_form/form_builder.rb:112:in `input' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:42:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:16:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (19.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (50.5ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:31:02 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.6ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:42) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (78.0ms) Completed 500 Internal Server Error in 126ms ActionView::Template::Error (undefined local variable or method `icon_remove' for #): 39: = f.input :query_string 40: 41: .col-lg-6 42: = f.input :scheduled_at, as: :date_time_picker 43: 44: .col-lg-6 45: = f.input :timezone, as: :select , collection: ActiveSupport::TimeZone.us_zones, default: "Pacific Time (US & Canada)" /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:21:in `block in span_calendar' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/tag_helper.rb:106:in `content_tag' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:69:in `content_tag_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:20:in `span_calendar' /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:7:in `block (2 levels) in input' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/tag_helper.rb:106:in `content_tag' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:69:in `content_tag_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:6:in `block in input' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/tag_helper.rb:106:in `content_tag' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:69:in `content_tag_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/inputs/date_time_picker_input.rb:5:in `input' simple_form (3.1.0) lib/simple_form/wrappers/leaf.rb:17:in `call' simple_form (3.1.0) lib/simple_form/wrappers/leaf.rb:17:in `render' simple_form (3.1.0) lib/simple_form/wrappers/many.rb:28:in `block in render' simple_form (3.1.0) lib/simple_form/wrappers/many.rb:26:in `each' simple_form (3.1.0) lib/simple_form/wrappers/many.rb:26:in `render' simple_form (3.1.0) lib/simple_form/wrappers/root.rb:15:in `render' simple_form (3.1.0) lib/simple_form/form_builder.rb:115:in `input' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:42:in `block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `call' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block (2 levels) in form_for_with_haml' haml (4.0.6) lib/haml/helpers.rb:278:in `with_tabs' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:137:in `block in form_for_with_haml' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:5:in `with_output_buffer_with_haml_xss' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:52:in `capture_with_haml' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:139:in `form_for_with_haml' haml (4.0.6) lib/haml/helpers/action_view_xss_mods.rb:28:in `form_for_with_haml_xss' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:26:in `block in simple_form_for' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:45:in `with_simple_form_field_error_proc' simple_form (3.1.0) lib/simple_form/action_view_extensions/form_helper.rb:25:in `simple_form_for' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:16:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (19.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (46.5ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:31:13 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.1ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:42) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (79.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 449ms (Views: 404.0ms | ActiveRecord: 1.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:31:14 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:31:15 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (94.6ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:33:34 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.9ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__3397114647458169387_2198843060 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:42) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (69.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 474ms (Views: 472.0ms | ActiveRecord: 0.2ms) Started GET "/assets/postino/inspinia-063e774e7c597db6270515315d5da431.js?body=1" for 127.0.0.1 at 2015-03-22 00:33:35 -0300 Started GET "/assets/postino/application-392c41b6863e029685517eaf1b956b8d.js?body=1" for 127.0.0.1 at 2015-03-22 00:33:35 -0300 Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:33:35 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:33:36 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.6ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:37:06 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.4ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (2.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (20.0ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__65545109430597571_2199013640 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml__65545109430597571_2199013640 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:42) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (4.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (487.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (37.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (5.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (2.0ms) Completed 200 OK in 1134ms (Views: 1003.1ms | ActiveRecord: 4.0ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:37:08 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (121.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:37:08 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.4ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:39:03 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.5ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (3.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (20.3ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2169325540 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2169325540 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:42) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (4.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (488.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (41.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (5.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (2.4ms) Completed 200 OK in 1239ms (Views: 1098.2ms | ActiveRecord: 3.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:39:04 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (120.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:39:04 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.6ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:39:29 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.9ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2192763880 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2192763880 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:41) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (81.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 375ms (Views: 373.6ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:39:30 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.7ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:39:30 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.5ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:39:49 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.1ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2189864600 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2189864600 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:41) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (87.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (33.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 390ms (Views: 388.8ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:39:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (93.9ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:39:51 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (14.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.8ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:39:51 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.6ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:40:19 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.8ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2189864600 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2189864600 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:41) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (68.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (42.7ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 372ms (Views: 370.3ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:40:20 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.1ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:40:20 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.4ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:40:20 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (97.8ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:41:01 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.9ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2189864600 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:25) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2189864600 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:41) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (71.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 372ms (Views: 370.4ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:41:02 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:41:02 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:41:02 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.7ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:42:06 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (4.9ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2167307280 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:24) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2167307280 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:39) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (85.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (31.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 390ms (Views: 388.6ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:42:06 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:42:07 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.9ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:42:07 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.9ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:42:21 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.8ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2204367280 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:24) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2204367280 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:39) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.6ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (84.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (42.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 399ms (Views: 397.6ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:42:22 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:42:23 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.5ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:42:23 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.5ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-22 00:43:42 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.6ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (52.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (27.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 345ms (Views: 342.9ms | ActiveRecord: 0.8ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:43:43 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:43:43 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (93.2ms) Started GET "/postino/manage/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-22 00:43:44 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (32.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 338ms (Views: 336.6ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:43:45 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:43:45 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.7ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-22 00:43:48 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.0ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (24.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (30.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 323ms (Views: 321.1ms | ActiveRecord: 0.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:43:48 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.2ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:43:48 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (7.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (99.6ms) Started GET "/postino/manage/campaigns/1/wizard/setup" for 127.0.0.1 at 2015-03-22 00:43:49 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"setup"} Postino::Campaign Load (0.3ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.8ms) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2204367280 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:24) DEPRECATION WARNING: input method now accepts a `wrapper_options` argument. The method definition without the argument is deprecated and will be removed in the next Simple Form version. Change your code from: def input to def input(wrapper_options) See https://github.com/plataformatec/simple_form/pull/997 for more information. (called from block in ___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_setup_haml___1700735006629202235_2204367280 at /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml:39) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/setup.haml within layouts/postino/application (97.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (35.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.2ms) Completed 200 OK in 411ms (Views: 409.0ms | ActiveRecord: 0.3ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:43:50 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (103.1ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:43:50 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (100.4ms) Started GET "/postino/manage/campaigns/1/wizard/template" for 127.0.0.1 at 2015-03-22 00:43:52 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"template"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (5.4ms) Postino::Template Load (0.3ms) SELECT "postino_templates".* FROM "postino_templates" Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (0.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/template.haml within layouts/postino/application (26.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (29.0ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 319ms (Views: 316.8ms | ActiveRecord: 0.5ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:43:53 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (115.6ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:43:53 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.4ms) Started GET "/postino/manage/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-22 00:43:59 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_steps.haml (6.4ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_wizard_nav.haml (1.1ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (25.8ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_navigation.html.haml (43.9ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_topnavbar.html.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/layouts/postino/_footer.haml (0.1ms) Completed 200 OK in 320ms (Views: 319.0ms | ActiveRecord: 0.2ms) Started GET "/images/profile_small.jpg" for 127.0.0.1 at 2015-03-22 00:44:00 -0300 ActionController::RoutingError (No route matches [GET] "/images/profile_small.jpg"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (8.4ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.0ms) Started GET "/assets/postino/patterns/header-profile.png" for 127.0.0.1 at 2015-03-22 00:44:00 -0300 ActionController::RoutingError (No route matches [GET] "/assets/postino/patterns/header-profile.png"): actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (94.3ms) Started GET "/postino/manage/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-22 00:50:29 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.2ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (50.7ms) Completed 500 Internal Server Error in 59ms ActionView::Template::Error (Missing partial postino/manage/campaign_wizard/_teplate_editor, postino/application/_teplate_editor with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in: * "/Users/michelsonmartinez/Documents/ruby/postino/spec/dummy/app/views" * "/Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/kaminari-0.16.3/app/views" * "/Users/michelsonmartinez/Documents/ruby/postino/app/views" ): 13: .ibox-content 14: 15: 16: = render "teplate_editor" 17: 18: = render partial: "wizard_steps" 19: actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml' haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml' haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml' /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml:16:in `___sers_michelsonmartinez__ocuments_ruby_postino_app_views_postino_manage_campaign_wizard_design_haml__2437488738320191456_2212063720' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:29:in `render_step' wicked (1.1.1) lib/wicked/controller/concerns/render_redirect.rb:11:in `render_wizard' /Users/michelsonmartinez/Documents/ruby/postino/app/controllers/postino/manage/campaign_wizard_controller.rb:12:in `show' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/michelsonmartinez/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.5ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms) Rendered /Users/michelsonmartinez/.rvm/gems/ruby-2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.5ms) Started GET "/postino/manage/campaigns/1/wizard/design" for 127.0.0.1 at 2015-03-22 00:50:36 -0300 Processing by Postino::Manage::CampaignWizardController#show as HTML Parameters: {"campaign_id"=>"1", "id"=>"design"} Postino::Campaign Load (0.2ms) SELECT "postino_campaigns".* FROM "postino_campaigns" WHERE "postino_campaigns"."id" = ? LIMIT 1 [["id", 1]] Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_menu.haml (0.3ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/_template_editor.haml (1.5ms) Rendered /Users/michelsonmartinez/Documents/ruby/postino/app/views/postino/manage/campaign_wizard/design.haml within layouts/postino/application (13.3ms) Completed 500 Internal Server Error in 20ms ActionView::Template::Error (Illegal nesting: nesting within plain text is illegal.): 5: 6: javascript: 7: 8: var editboxHTML = 9: '' + 10: '' + 11: '